123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- package logger
- import (
- "bytes"
- "io"
- "sync"
- "time"
- "github.com/Sirupsen/logrus"
- )
- const (
- bufSize = 16 * 1024
- readSize = 2 * 1024
- )
- // Copier can copy logs from specified sources to Logger and attach Timestamp.
- // Writes are concurrent, so you need implement some sync in your logger.
- type Copier struct {
- // srcs is map of name -> reader pairs, for example "stdout", "stderr"
- srcs map[string]io.Reader
- dst Logger
- copyJobs sync.WaitGroup
- closeOnce sync.Once
- closed chan struct{}
- }
- // NewCopier creates a new Copier
- func NewCopier(srcs map[string]io.Reader, dst Logger) *Copier {
- return &Copier{
- srcs: srcs,
- dst: dst,
- closed: make(chan struct{}),
- }
- }
- // Run starts logs copying
- func (c *Copier) Run() {
- for src, w := range c.srcs {
- c.copyJobs.Add(1)
- go c.copySrc(src, w)
- }
- }
- func (c *Copier) copySrc(name string, src io.Reader) {
- defer c.copyJobs.Done()
- buf := make([]byte, bufSize)
- n := 0
- eof := false
- msg := &Message{Source: name}
- for {
- select {
- case <-c.closed:
- return
- default:
- // Work out how much more data we are okay with reading this time.
- upto := n + readSize
- if upto > cap(buf) {
- upto = cap(buf)
- }
- // Try to read that data.
- if upto > n {
- read, err := src.Read(buf[n:upto])
- if err != nil {
- if err != io.EOF {
- logrus.Errorf("Error scanning log stream: %s", err)
- return
- }
- eof = true
- }
- n += read
- }
- // If we have no data to log, and there's no more coming, we're done.
- if n == 0 && eof {
- return
- }
- // Break up the data that we've buffered up into lines, and log each in turn.
- p := 0
- for q := bytes.Index(buf[p:n], []byte{'\n'}); q >= 0; q = bytes.Index(buf[p:n], []byte{'\n'}) {
- msg.Line = buf[p : p+q]
- msg.Timestamp = time.Now().UTC()
- msg.Partial = false
- select {
- case <-c.closed:
- return
- default:
- if logErr := c.dst.Log(msg); logErr != nil {
- logrus.Errorf("Failed to log msg %q for logger %s: %s", msg.Line, c.dst.Name(), logErr)
- }
- }
- p += q + 1
- }
- // If there's no more coming, or the buffer is full but
- // has no newlines, log whatever we haven't logged yet,
- // noting that it's a partial log line.
- if eof || (p == 0 && n == len(buf)) {
- if p < n {
- msg.Line = buf[p:n]
- msg.Timestamp = time.Now().UTC()
- msg.Partial = true
- if logErr := c.dst.Log(msg); logErr != nil {
- logrus.Errorf("Failed to log msg %q for logger %s: %s", msg.Line, c.dst.Name(), logErr)
- }
- p = 0
- n = 0
- }
- if eof {
- return
- }
- }
- // Move any unlogged data to the front of the buffer in preparation for another read.
- if p > 0 {
- copy(buf[0:], buf[p:n])
- n -= p
- }
- }
- }
- }
- // Wait waits until all copying is done
- func (c *Copier) Wait() {
- c.copyJobs.Wait()
- }
- // Close closes the copier
- func (c *Copier) Close() {
- c.closeOnce.Do(func() {
- close(c.closed)
- })
- }
|