2019-06-26 00:14:38 +00:00
|
|
|
module log
|
|
|
|
|
2020-04-26 11:49:31 +00:00
|
|
|
import os
|
|
|
|
import time
|
|
|
|
import term
|
2019-06-26 00:14:38 +00:00
|
|
|
|
2020-04-06 15:22:53 +00:00
|
|
|
pub enum Level {
|
2019-12-01 09:50:13 +00:00
|
|
|
fatal = 1
|
2019-11-25 04:50:59 +00:00
|
|
|
error
|
2019-12-01 09:50:13 +00:00
|
|
|
warn
|
2019-11-25 04:50:59 +00:00
|
|
|
info
|
|
|
|
debug
|
|
|
|
}
|
|
|
|
|
2020-04-06 15:22:53 +00:00
|
|
|
fn tag(l Level) string {
|
2019-11-25 04:50:59 +00:00
|
|
|
return match l {
|
2020-02-29 13:31:59 +00:00
|
|
|
.fatal { term.red('FATAL') }
|
|
|
|
.error { term.red('ERROR') }
|
2020-07-23 05:02:53 +00:00
|
|
|
.warn { term.yellow('WARN ') }
|
|
|
|
.info { term.white('INFO ') }
|
2020-02-29 13:31:59 +00:00
|
|
|
.debug { term.blue('DEBUG') }
|
2019-11-25 04:50:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-07 05:44:43 +00:00
|
|
|
interface Logger {
|
2019-11-25 04:50:59 +00:00
|
|
|
fatal(s string)
|
|
|
|
error(s string)
|
|
|
|
warn(s string)
|
|
|
|
info(s string)
|
|
|
|
debug(s string)
|
2019-08-07 05:44:43 +00:00
|
|
|
}
|
|
|
|
|
2019-10-28 15:53:02 +00:00
|
|
|
pub struct Log {
|
2019-12-01 09:50:13 +00:00
|
|
|
mut:
|
2020-04-06 15:22:53 +00:00
|
|
|
level Level
|
2020-02-29 13:31:59 +00:00
|
|
|
output_label string
|
|
|
|
ofile os.File
|
|
|
|
output_to_file bool
|
2019-12-13 17:09:11 +00:00
|
|
|
pub mut:
|
2019-12-01 09:50:13 +00:00
|
|
|
output_file_name string
|
2019-06-26 00:14:38 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
pub fn (mut l Log) set_level(level Level) {
|
2020-04-06 15:22:53 +00:00
|
|
|
l.level = level
|
2019-11-25 04:50:59 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
pub fn (mut l Log) set_output_level(level Level) {
|
2019-11-25 04:50:59 +00:00
|
|
|
l.level = level
|
2019-06-26 00:14:38 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
pub fn (mut l Log) set_full_logpath(full_log_path string) {
|
2020-07-23 05:02:53 +00:00
|
|
|
rlog_file := os.real_path(full_log_path)
|
|
|
|
l.set_output_label(os.file_name(rlog_file))
|
|
|
|
l.set_output_path(os.base_dir(rlog_file))
|
2019-12-06 12:24:53 +00:00
|
|
|
}
|
2019-12-01 09:50:13 +00:00
|
|
|
|
2020-07-23 05:02:53 +00:00
|
|
|
pub fn (mut l Log) set_output_label(label string) {
|
2019-11-25 04:50:59 +00:00
|
|
|
l.output_label = label
|
2019-07-24 15:50:29 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
pub fn (mut l Log) set_output_path(output_file_path string) {
|
2020-08-02 23:35:08 +00:00
|
|
|
if l.ofile.is_opened {
|
2020-07-23 05:02:53 +00:00
|
|
|
l.ofile.close()
|
|
|
|
}
|
2019-12-01 09:50:13 +00:00
|
|
|
l.output_to_file = true
|
2020-07-23 05:02:53 +00:00
|
|
|
l.output_file_name = os.join_path(os.real_path(output_file_path), l.output_label)
|
|
|
|
ofile := os.open_append(l.output_file_name) or {
|
|
|
|
panic('error while opening log file $l.output_file_name for appending')
|
2019-12-01 09:50:13 +00:00
|
|
|
}
|
2019-12-06 12:24:53 +00:00
|
|
|
l.ofile = ofile
|
2019-11-25 04:50:59 +00:00
|
|
|
}
|
|
|
|
|
2020-07-23 05:02:53 +00:00
|
|
|
// Writes the log file content to disk
|
|
|
|
pub fn (mut l Log) flush() {
|
|
|
|
l.ofile.flush()
|
|
|
|
}
|
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
pub fn (mut l Log) close() {
|
2020-07-23 05:02:53 +00:00
|
|
|
l.ofile.close()
|
2019-12-01 09:50:13 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
fn (mut l Log) log_file(s string, level Level) {
|
2019-11-25 04:50:59 +00:00
|
|
|
timestamp := time.now().format_ss()
|
|
|
|
e := tag(level)
|
2019-12-01 09:50:13 +00:00
|
|
|
l.ofile.writeln('$timestamp [$e] $s')
|
2019-11-25 04:50:59 +00:00
|
|
|
}
|
|
|
|
|
2020-04-06 15:22:53 +00:00
|
|
|
fn (l &Log) log_cli(s string, level Level) {
|
2019-11-25 04:50:59 +00:00
|
|
|
f := tag(level)
|
|
|
|
t := time.now()
|
2020-07-23 05:02:53 +00:00
|
|
|
println('[$f $t.format_ss()] $s')
|
2019-07-24 15:50:29 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
fn (mut l Log) send_output(s &string, level Level) {
|
2019-12-01 09:50:13 +00:00
|
|
|
if l.output_to_file {
|
|
|
|
l.log_file(s, level)
|
|
|
|
} else {
|
|
|
|
l.log_cli(s, level)
|
2019-11-25 04:50:59 +00:00
|
|
|
}
|
2019-06-26 00:14:38 +00:00
|
|
|
}
|
|
|
|
|
2020-07-23 05:02:53 +00:00
|
|
|
pub fn (mut l Log) fatal(s string) {
|
|
|
|
if l.level < .fatal {
|
|
|
|
return
|
|
|
|
}
|
2019-12-01 09:50:13 +00:00
|
|
|
l.send_output(s, .fatal)
|
|
|
|
l.ofile.close()
|
|
|
|
panic('$l.output_label: $s')
|
|
|
|
}
|
2019-11-25 04:50:59 +00:00
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
pub fn (mut l Log) error(s string) {
|
2020-07-23 05:02:53 +00:00
|
|
|
if l.level < .error {
|
|
|
|
return
|
|
|
|
}
|
2019-12-01 09:50:13 +00:00
|
|
|
l.send_output(s, .error)
|
2019-06-26 00:14:38 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
pub fn (mut l Log) warn(s string) {
|
2020-07-23 05:02:53 +00:00
|
|
|
if l.level < .warn {
|
|
|
|
return
|
|
|
|
}
|
2019-12-01 09:50:13 +00:00
|
|
|
l.send_output(s, .warn)
|
2019-06-26 00:14:38 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
pub fn (mut l Log) info(s string) {
|
2020-07-23 05:02:53 +00:00
|
|
|
if l.level < .info {
|
|
|
|
return
|
|
|
|
}
|
2019-12-01 09:50:13 +00:00
|
|
|
l.send_output(s, .info)
|
2019-06-26 00:14:38 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 11:51:18 +00:00
|
|
|
pub fn (mut l Log) debug(s string) {
|
2020-07-23 05:02:53 +00:00
|
|
|
if l.level < .debug {
|
|
|
|
return
|
|
|
|
}
|
2019-12-01 09:50:13 +00:00
|
|
|
l.send_output(s, .debug)
|
2019-07-16 15:59:07 +00:00
|
|
|
}
|