summaryrefslogtreecommitdiff
path: root/log.go
blob: d6620771f4649c0f8a34a1dafe0fae59ea0d56a7 (plain) (blame)
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
package saggytrousers

import (
	"fmt"
	"os"
	"time"
)

type LogInfo struct {
	Fp		*os.File
	Prog	string
	Valid	bool	/* Did the log file open successfully. If not, simply don't log */
}

var logInfo LogInfo

func LogFree() {
	err := logInfo.Fp.Close()
	if err != nil {
		fmt.Printf("That's not great. We can't close the log file!\n")
	}
}

func LogInit(file, prog string) {
	logging := true /* are we logging? Set to false on error. */
	fp, err := os.OpenFile(file, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0755)
	if err != nil {
		fmt.Printf("The log file at [%v] cannot be opened.\n", file)
		choices := make([]string, 3)
		choices[0] = "Exit Application"
		choices[1] = "Continue without Logging"
		choices[2] = "View error message"
		for true {
			v := SelectIndexFromArray(choices, "What would you like to do? ", /* each on new line: */ true)
			switch v {
			case 0: /* Exit Application */
				os.Exit(-1)
			case 1: /* Continue without Logging */
				logging = false /* execution just continues from here */
				break
			case 2: /* View error message */
				fmt.Printf("The error message is:\n%v\n", err)
			}
		}
	}
	logInfo = LogInfo { 
		fp,
		prog,
		logging,
	}
	
}

func WriteLogFile(s string) {
	/* TODO: implement. This should just write to the log file in logInfo.Fp */
	_, err := logInfo.Fp.WriteString(fmt.Sprintf("[%v] %v -- %v", 
                  time.Now().Format("2006-01-02 15:04:05"),
                  logInfo.Prog,
				  s))
	if err != nil {
		fmt.Printf("WriteLogFile log failed with %v\n", err)
	}
}

func Log(stdout bool, format string, a ...any) {
	s := fmt.Sprintf(format, a...)

	if stdout {
		fmt.Printf(s)
	} 

	// Regardless, we write to the log file. 
	WriteLogFile(s)
}

func ErrLog(stderr bool, format string, a ...any) {
	s := fmt.Sprintf(format, a...)

	if stderr {
		fmt.Printf("[ERROR] %v", s)
	}

	WriteLogFile(s)
}