File size: 4,874 Bytes
b6a38d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
if FirstLoad then
	g_logStorage = false
	g_logScreen = true
	LogBacklog = {}
	LogBacklogIndex = 0
	LogBacklogSize = 10
	LogEventsCount = 0
	LogErrorsCount = 0
	LogSecurityCount = 0
	LocalTSStart = GetPreciseTicks()
end

local string_format = string.format

-- returns UTC timestamp string formatted "%d %b %Y %H:%M:%S"
local ts_func = GetPreciseTicks
local ts_valid = ts_func() - 1000
local ts_last = os.date("!%d %b %Y %H:%M:%S")
function timestamp()
	local time = ts_func() - ts_valid
	if time > 900 or time < 0 then
		ts_valid = ts_func()
		ts_last = os.date("!%d %b %Y %H:%M:%S")
	end
	return ts_last
end

local localts_time = GetPreciseTicks
local localts_start = LocalTSStart or localts_time()
local localts_valid
local localts_last_timestamp = ""
function local_timestamp()
	local time = localts_time()
	if time ~= localts_valid then
		localts_valid = time
		time = time - localts_start
		localts_last_timestamp = string_format("%d %02d:%02d:%02d.%03d", time / 24 / 3600000, time / 3600000 % 24, time / 60000 % 60, time / 1000 % 60, time % 1000)
	end
	return localts_last_timestamp
end

local log_timestamp = local_timestamp

local function log(screen_format, backlog, event_type, event_source, event, ...)
	local time, screen_text
	if g_logScreen then
		time = time or log_timestamp()
		screen_text = screen_text or print_format(string_format(screen_format, time, event_source or ""), event, ...)
		print(screen_text)
	end

	if backlog then
		time = time or log_timestamp()
		screen_text = screen_text or print_format(string_format(screen_format, time, event_source or ""), event, ...)
		local i = 1 + LogBacklogIndex % LogBacklogSize
		LogBacklogIndex = i
		backlog[i] = screen_text
	end

	local logstorage = g_logStorage
	if logstorage then
		time = time or log_timestamp()
		event = event or string_format(event_text, ...)
		if event_type == "event" then
			logstorage:WriteTuple(timestamp(), time, event_source or "", event, ...)
		else
			logstorage:WriteTuple(timestamp(), time, event_type, event_source or "", event, ...)
		end
	end
end

function EventLog(event_text, ...)
	if event_text then
		LogEventsCount = LogEventsCount + 1
		return log("%s", nil, "event", "", event_text, ...)
	end
end

function EventLogSrc(event_source, event_text, ...)
	if event_text then
		LogEventsCount = LogEventsCount + 1
		return log("%s %s ->", nil, "event", event_source, event_text, ...)
	end
end

function ErrorLog(event_text, ...)
	if event_text then
		LogErrorsCount = LogErrorsCount + 1
		return log("[color=magenta]%s error:", LogBacklog, "error", "", event_text, ...)
	end
end

function ErrorLogSrc(event_source, event_text, ...)
	if event_text then
		LogErrorsCount = LogErrorsCount + 1
		return log("[color=magenta]%s error: %s ->", LogBacklog, "error", event_source, event_text, ...)
	end
end

function SecurityLog(event_text, ...)
	if event_text then
		LogSecurityCount = LogSecurityCount + 1
		return log("[color=cyan]%s security:", LogBacklog, "security", "", event_text, ...)
	end
end

-------------

DefineClass.EventLogger = {
	__parents = { },
	event_source = "",
}

function EventLogger:Log(event_text, ...)
	if event_text then
		LogEventsCount = LogEventsCount + 1
		local src = self.event_source or ""
		if src ~= "" then
			return log("%s %s ->", nil, "event", src, event_text, ...)
		else
			return log("%s", nil, "event", "", event_text, ...)
		end
	end
end

function EventLogger:ErrorLog(event_text, ...)
	if event_text then
		LogErrorsCount = LogErrorsCount + 1
		local src = self.event_source or ""
		if src ~= "" then
			return log("[color=magenta]%s error: %s ->", LogBacklog, "error", src, event_text, ...)
		else
			return log("[color=magenta]%s error:", LogBacklog, "error", "", event_text, ...)
		end
	end
end

function EventLogger:SecurityLog(event_text, ...)
	if event_text then
		LogSecurityCount = LogSecurityCount + 1
		local src = self.event_source or ""
		if src ~= "" then
			return log("[color=cyan]%s security: %s ->", LogBacklog, "security", src, event_text, ...)
		else
			return log("[color=cyan]%s security:", LogBacklog, "security", "", event_text, ...)
		end
	end
end

-------------

function LogPrint(count)
	local logsize = LogBacklogSize
	local backlog = LogBacklog
	count = Min(count or logsize, logsize)
	for i = LogBacklogIndex - count + 1, LogBacklogIndex do
		local event = backlog[i < 1 and i + logsize or i]
		if event then
			print(event)
		end
	end
end

-- gives the last 'count' entries of the backlog as a string
function LogToString(count)
	local logsize = LogBacklogSize
	local backlog = LogBacklog
	local server_backlog = false
	
	count = Min(count or logsize, logsize)
	for i = LogBacklogIndex - count + 1, LogBacklogIndex do
		local event = backlog[i < 1 and i + logsize or i]
		if event then
			server_backlog = string.format("%s%s\n", server_backlog or "\n", event)
		end
	end

	return server_backlog
end