-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput_dir.go
More file actions
91 lines (75 loc) · 1.46 KB
/
output_dir.go
File metadata and controls
91 lines (75 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package log
import (
"fmt"
"os"
"path/filepath"
)
type DirOutput struct {
Dir string
cancel chan bool
msg chan *Line
exclude map[Category]bool
files map[Category]*os.File
}
func (do *DirOutput) print(msg *Line) {
if do.exclude[msg.Category] {
return
}
var file *os.File
var ok bool
var err error
file, ok = do.files[msg.Category]
if !ok {
file, err = os.OpenFile(filepath.Join(do.Dir, fmt.Sprintf("%s.log.txt", msg.Category)), os.O_CREATE|os.O_APPEND, 0700)
if err != nil {
return
}
do.files[msg.Category] = file
}
fmt.Fprintf(file, "%s] %s\n", printTime(msg.Time), msg.Text)
}
func (do *DirOutput) closeAll() {
for _, file := range do.files {
file.Close()
}
do.files = nil
}
func (do *DirOutput) handle() {
for {
select {
case <-do.cancel:
do.closeAll()
return
case msg := <-do.msg:
do.print(msg)
}
}
}
func (do *DirOutput) Begin(l *Logger) error {
if err := os.MkdirAll(do.Dir, 0700); err != nil {
return err
}
do.exclude = make(map[Category]bool)
do.files = make(map[Category]*os.File)
do.cancel = make(chan bool)
do.msg = make(chan *Line)
go do.handle()
return nil
}
func (do *DirOutput) End() error {
do.cancel <- true
close(do.cancel)
close(do.msg)
return nil
}
func (do *DirOutput) Exclude(cat Category) error {
do.exclude[cat] = true
return nil
}
func (do *DirOutput) Include(cat Category) error {
delete(do.exclude, cat)
return nil
}
func (do *DirOutput) AddLine(ln *Line) error {
return nil
}