micro/debug/log/os.go

173 lines
2.7 KiB
Go
Raw Normal View History

2019-12-17 21:16:45 +03:00
package log
import (
"bufio"
"encoding/json"
2019-12-18 18:06:25 +03:00
"io"
2019-12-17 21:16:45 +03:00
"os"
2019-12-18 18:19:20 +03:00
"strings"
2019-12-18 18:06:25 +03:00
"sync"
2019-12-17 21:16:45 +03:00
"time"
2019-12-18 18:06:25 +03:00
"github.com/google/uuid"
2019-12-17 21:16:45 +03:00
)
// Should stream from OS
2019-12-18 18:06:25 +03:00
type osLog struct {
sync.RWMutex
subs map[string]*osStream
}
2019-12-17 21:16:45 +03:00
type osStream struct {
2019-12-18 18:06:25 +03:00
stream chan Record
stop chan bool
}
// watch io stream
func (o *osLog) run() {
// save outputs
stdout := *os.Stdout
stderr := *os.Stderr
// new os pipe
r, w := io.Pipe()
// create new iopipes
r1, w1, _ := os.Pipe()
r2, w2, _ := os.Pipe()
// create tea readers
tee1 := io.TeeReader(r1, &stdout)
tee2 := io.TeeReader(r2, &stderr)
// start copying
go io.Copy(w, tee1)
go io.Copy(w, tee2)
// set default go log output
//log.SetOutput(w2)
// replace os stdout and os stderr
*os.Stdout = *w1
*os.Stderr = *w2
// this should short circuit everything
defer func() {
// reset stdout and stderr
*os.Stdout = stdout
*os.Stderr = stderr
//log.SetOutput(stderr)
// close all the outputs
r.Close()
r1.Close()
r2.Close()
w.Close()
w1.Close()
w2.Close()
}()
// read from standard error
scanner := bufio.NewReader(r)
for {
// read the line
line, err := scanner.ReadString('\n')
if err != nil {
return
}
// check if the line exists
if len(line) == 0 {
continue
}
// parse the record
var r Record
if line[0] == '{' {
json.Unmarshal([]byte(line), &r)
} else {
r = Record{
Timestamp: time.Now(),
2019-12-18 19:02:11 +03:00
Message: strings.TrimSuffix(line, "\n"),
2019-12-18 18:06:25 +03:00
Metadata: make(map[string]string),
}
}
o.Lock()
// bail if there's no subscribers
if len(o.subs) == 0 {
o.Unlock()
return
}
// check subs and send to stream
for id, sub := range o.subs {
// send to stream
select {
case <-sub.stop:
delete(o.subs, id)
case sub.stream <- r:
// send to stream
default:
// do not block
}
}
o.Unlock()
}
2019-12-17 21:16:45 +03:00
}
// Read reads log entries from the logger
func (o *osLog) Read(...ReadOption) ([]Record, error) {
return []Record{}, nil
}
// Write writes records to log
func (o *osLog) Write(r Record) error {
b, _ := json.Marshal(r)
2019-12-18 19:02:11 +03:00
_, err := os.Stderr.Write(append(b, byte('\n')))
2019-12-17 21:16:45 +03:00
return err
}
// Stream log records
func (o *osLog) Stream() (Stream, error) {
2019-12-18 18:06:25 +03:00
o.Lock()
defer o.Unlock()
2019-12-17 21:16:45 +03:00
2019-12-18 18:06:25 +03:00
// start stream watcher
if len(o.subs) == 0 {
go o.run()
}
// create stream
st := &osStream{
stream: make(chan Record, 128),
stop: make(chan bool),
}
2019-12-17 21:16:45 +03:00
2019-12-18 18:06:25 +03:00
// save stream
o.subs[uuid.New().String()] = st
return st, nil
2019-12-17 21:16:45 +03:00
}
func (o *osStream) Chan() <-chan Record {
return o.stream
}
func (o *osStream) Stop() error {
select {
case <-o.stop:
return nil
default:
close(o.stop)
}
return nil
}
func NewLog(opts ...Option) Log {
2019-12-18 18:06:25 +03:00
return &osLog{
subs: make(map[string]*osStream),
}
2019-12-17 21:16:45 +03:00
}