mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 03:48:37 +08:00
75 lines
2.1 KiB
Go
75 lines
2.1 KiB
Go
|
// Licensed to the LF AI & Data foundation under one
|
||
|
// or more contributor license agreements. See the NOTICE file
|
||
|
// distributed with this work for additional information
|
||
|
// regarding copyright ownership. The ASF licenses this file
|
||
|
// to you under the Apache License, Version 2.0 (the
|
||
|
// "License"); you may not use this file except in compliance
|
||
|
// with the License. You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
package log
|
||
|
|
||
|
import (
|
||
|
"sync"
|
||
|
"sync/atomic"
|
||
|
|
||
|
"go.uber.org/zap/zapcore"
|
||
|
)
|
||
|
|
||
|
// lazyWithCore wraps zapcore.Core with lazy initialization.
|
||
|
// Copied from https://github.com/uber-go/zap/issues/1426 to avoid data race.
|
||
|
type lazyWithCore struct {
|
||
|
corePtr atomic.Pointer[zapcore.Core]
|
||
|
once sync.Once
|
||
|
fields []zapcore.Field
|
||
|
}
|
||
|
|
||
|
var _ zapcore.Core = (*lazyWithCore)(nil)
|
||
|
|
||
|
func NewLazyWith(core zapcore.Core, fields []zapcore.Field) zapcore.Core {
|
||
|
d := lazyWithCore{fields: fields}
|
||
|
d.corePtr.Store(&core)
|
||
|
return &d
|
||
|
}
|
||
|
|
||
|
func (d *lazyWithCore) initOnce() zapcore.Core {
|
||
|
core := *d.corePtr.Load()
|
||
|
d.once.Do(func() {
|
||
|
core = core.With(d.fields)
|
||
|
d.corePtr.Store(&core)
|
||
|
})
|
||
|
return core
|
||
|
}
|
||
|
|
||
|
func (d *lazyWithCore) Enabled(level zapcore.Level) bool {
|
||
|
// Init not needed
|
||
|
return (*d.corePtr.Load()).Enabled(level)
|
||
|
}
|
||
|
|
||
|
func (d *lazyWithCore) Sync() error {
|
||
|
// Init needed
|
||
|
return d.initOnce().Sync()
|
||
|
}
|
||
|
|
||
|
// Write implements zapcore.Core.
|
||
|
func (d *lazyWithCore) Write(entry zapcore.Entry, fields []zapcore.Field) error {
|
||
|
return (*d.corePtr.Load()).Write(entry, fields)
|
||
|
}
|
||
|
|
||
|
func (d *lazyWithCore) With(fields []zapcore.Field) zapcore.Core {
|
||
|
d.initOnce()
|
||
|
return (*d.corePtr.Load()).With(fields)
|
||
|
}
|
||
|
|
||
|
func (d *lazyWithCore) Check(e zapcore.Entry, ce *zapcore.CheckedEntry) *zapcore.CheckedEntry {
|
||
|
d.initOnce()
|
||
|
return (*d.corePtr.Load()).Check(e, ce)
|
||
|
}
|