mirror of
https://github.com/diamondburned/cchat-gtk.git
synced 2024-11-01 03:54:16 +00:00
79 lines
1.2 KiB
Go
79 lines
1.2 KiB
Go
package log
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
var globalBuffer struct {
|
|
sync.Mutex
|
|
entries []Entry
|
|
handlers []func(Entry)
|
|
}
|
|
|
|
func init() {
|
|
AddEntryHandler(func(entry Entry) {
|
|
fmt.Fprintln(os.Stderr, entry)
|
|
})
|
|
}
|
|
|
|
type Entry struct {
|
|
Time time.Time
|
|
Msg string
|
|
}
|
|
|
|
func (entry Entry) String() string {
|
|
return entry.Time.Format(time.Stamp) + ": " + entry.Msg
|
|
}
|
|
|
|
// AddEntryHandler adds a handler, which will run asynchronously.
|
|
func AddEntryHandler(fn func(Entry)) {
|
|
globalBuffer.handlers = append(globalBuffer.handlers, fn)
|
|
}
|
|
|
|
func Error(err error) {
|
|
// Ignore nil errors.
|
|
if err == nil {
|
|
return
|
|
}
|
|
|
|
// Ignore context cancel errors.
|
|
if errors.Is(err, context.Canceled) {
|
|
return
|
|
}
|
|
|
|
Write("Error: " + err.Error())
|
|
}
|
|
|
|
func Warn(err error) {
|
|
Write("Warn: " + err.Error())
|
|
}
|
|
|
|
func Write(msg string) {
|
|
WriteEntry(Entry{
|
|
Time: time.Now(),
|
|
Msg: msg,
|
|
})
|
|
}
|
|
|
|
func WriteEntry(entry Entry) {
|
|
go func() {
|
|
globalBuffer.Lock()
|
|
globalBuffer.entries = append(globalBuffer.entries, entry)
|
|
globalBuffer.Unlock()
|
|
|
|
for _, fn := range globalBuffer.handlers {
|
|
fn(entry)
|
|
}
|
|
}()
|
|
}
|
|
|
|
func Println(v ...interface{}) {
|
|
log.Println(v...)
|
|
}
|