-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.go
98 lines (85 loc) · 1.87 KB
/
log.go
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
92
93
94
95
96
97
98
package engine
import (
"fmt"
"github.com/mumax/3/httpfs"
"github.com/mumax/3/util"
"io"
"os"
)
var (
hist string // console history for GUI
logfile io.WriteCloser // saves history of input commands + output
)
// Special error that is not fatal when paniced on and called from GUI
// E.g.: try to set bad grid size: panic on UserErr, recover, print error, carry on.
type UserErr string
func (e UserErr) Error() string { return string(e) }
func CheckRecoverable(err error) {
if err != nil {
panic(UserErr(err.Error()))
}
}
func LogIn(msg ...interface{}) {
str := sprint(msg...)
log2GUI(str)
log2File(str)
fmt.Println(str)
}
func LogOut(msg ...interface{}) {
str := "//" + sprint(msg...)
log2GUI(str)
log2File(str)
fmt.Println(str)
}
func LogErr(msg ...interface{}) {
str := "//" + sprint(msg...)
log2GUI(str)
log2File(str)
fprintln(os.Stderr, str)
}
func log2File(msg string) {
if logfile != nil {
fprintln(logfile, msg)
}
}
func initLog() {
if logfile != nil {
panic("log already inited")
}
// open log file and flush what was logged before the file existed
var err error
logfile, err = httpfs.Create(OD() + "log.txt")
if err != nil {
panic(err)
}
util.FatalErr(err)
logfile.Write(([]byte)(hist))
logfile.Write([]byte{'\n'})
}
func log2GUI(msg string) {
if len(msg) > 1000 {
msg = msg[:1000-len("...")] + "..."
}
if hist != "" { // prepend newline
hist += "\n"
}
hist += msg
// TODO: push to web ?
}
// returns log file of input commands, opening it first if needed
//func openlog() *httpfs.File {
// if logfile == nil {
// var err error
// logfile, err = fs.Create(OD + "/input.log")
// if err != nil {
// log.Println(err)
// }
// }
// return logfile
//}
// like fmt.Sprint but with spaces between args
func sprint(msg ...interface{}) string {
str := fmt.Sprintln(msg...)
str = str[:len(str)-1] // strip newline
return str
}