2019-11-27 19:02:16 +03:00
|
|
|
package log
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
golog "log"
|
|
|
|
|
|
|
|
"github.com/micro/go-micro/debug/buffer"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// DefaultSize of the logger buffer
|
|
|
|
DefaultSize = 1000
|
|
|
|
)
|
|
|
|
|
2019-11-27 20:31:35 +03:00
|
|
|
// defaultLog is default micro log
|
|
|
|
type defaultLog struct {
|
2019-11-27 19:02:16 +03:00
|
|
|
*buffer.Buffer
|
|
|
|
}
|
|
|
|
|
2019-11-27 20:31:35 +03:00
|
|
|
// NewLog returns default Logger with
|
|
|
|
func NewLog(opts ...Option) Log {
|
2019-11-27 19:02:16 +03:00
|
|
|
// get default options
|
|
|
|
options := DefaultOptions()
|
|
|
|
|
|
|
|
// apply requested options
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
2019-11-27 20:31:35 +03:00
|
|
|
return &defaultLog{
|
2019-11-27 19:02:16 +03:00
|
|
|
Buffer: buffer.New(options.Size),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-28 14:05:35 +03:00
|
|
|
// Write writes logs into logger
|
2019-11-27 20:31:35 +03:00
|
|
|
func (l *defaultLog) Write(v ...interface{}) {
|
|
|
|
l.Buffer.Put(fmt.Sprint(v...))
|
2019-11-27 19:02:16 +03:00
|
|
|
golog.Print(v...)
|
|
|
|
}
|
|
|
|
|
2019-11-28 14:05:35 +03:00
|
|
|
// Read reads logs and returns them
|
2019-11-27 20:31:35 +03:00
|
|
|
func (l *defaultLog) Read(opts ...ReadOption) []Record {
|
|
|
|
options := ReadOptions{}
|
|
|
|
// initialize the read options
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
2019-11-27 19:12:39 +03:00
|
|
|
}
|
2019-11-27 19:02:16 +03:00
|
|
|
|
2019-11-27 20:31:35 +03:00
|
|
|
var entries []*buffer.Entry
|
|
|
|
// if Since options ha sbeen specified we honor it
|
|
|
|
if !options.Since.IsZero() {
|
|
|
|
entries = l.Buffer.Since(options.Since)
|
|
|
|
} else {
|
|
|
|
// otherwie return last count entries
|
|
|
|
entries = l.Buffer.Get(options.Count)
|
|
|
|
}
|
|
|
|
|
2019-11-28 14:05:35 +03:00
|
|
|
// TODO: if both Since and Count are set should we return?
|
2019-11-27 20:31:35 +03:00
|
|
|
// last Count from the returned time scoped entries?
|
2019-11-28 14:05:35 +03:00
|
|
|
|
2019-11-27 20:31:35 +03:00
|
|
|
records := make([]Record, 0, len(entries))
|
|
|
|
for _, entry := range entries {
|
|
|
|
record := Record{
|
|
|
|
Timestamp: entry.Timestamp,
|
|
|
|
Value: entry.Value,
|
|
|
|
}
|
|
|
|
records = append(records, record)
|
|
|
|
}
|
|
|
|
return records
|
2019-11-27 19:02:16 +03:00
|
|
|
}
|