This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lumber.rb
321 lines (241 loc) · 6.93 KB
/
lumber.rb
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
class Lumber
#basic rules
# debug - stuff only of interest to debugging, on if @debug
# info - noisy stuff, on if not quiet
# error - always on
def initialize ( cfg )
@cfg = cfg
##
# Defaults
@debug = false
@info = false
@quiet = false
@verbose = false
@verbose = true if (cfg["verbose"])
@info = true if (cfg["info"])
@quiet = true if (cfg["quiet"])
@debug = true if (cfg["debug"])
@error_fd = File.open(cfg["logdir"] + "/error.log", "a")
@debug_fd = File.open(cfg["logdir"] + "/debug.log", "a")
@info_fd = File.open(cfg["logdir"] + "/info.log", "a")
msgerror("Start.")
msginfo("Logging Started.")
end
def msginfo(s)
return if (@quiet)
return if (!@verbose)
format_for_output(@info_fd, "INFO", s)
format_for_output(STDOUT, "INFO", s)
end
def loginfo(s)
msginfo(s)
end
def msgdebug(s)
return if ( !@debug || @quiet)
format_for_output(@info_fd, "DEBUG", s)
format_for_output(STDOUT, "DEBUG", s)
format_for_output(@debug_fd, "DEBUG", s)
end
def msgstatus( s)
return if ( !@verbose || @quiet)
format_for_output(STDOUT, "STATUS", s)
end
def logstatus(s)
msgstatus(s)
end
def msgerror(s)
format_for_output(@info_fd, "ERROR", s)
format_for_output(@error_fd, "ERROR", s)
format_for_output(STDERR, "ERROR", s)
end
def logerr(s)
msgerror(s)
end
def puts (s)
msgstatus(s)
end
private
def format_for_output (out,label,s)
out.write(sprintf("(%s:%s) %s\n", get_time.strftime("%Y/%m/%d %H:%M:%S"), label, s))
end
def get_time ( )
return (Time.now.utc )
end
end
##
# Stub class, only logs to stdout..
class LumberNoFile
#basic rules
# debug - stuff only of interest to debugging, on if @debug
# info - noisy stuff, on if not quiet
# error - always on
def initialize ( cfg )
@cfg = cfg
##
# Defaults
@debug = false
@info = false
@quiet = false
@verbose = false
@verbose = true if (cfg["verbose"])
@info = true if (cfg["info"])
@quiet = true if (cfg["quiet"])
@debug = true if (cfg["debug"])
@error_fd = STDOUT
@debug_fd = STDOUT
@info_fd = STDOUT
msgerror("Start.")
msginfo("Logging Started.")
end
def msginfo(s)
return if (!@verbose)
format_for_output(@info_fd, "INFO", s)
format_for_output(STDOUT, "INFO", s) if (!@quiet)
end
def loginfo(s)
msginfo(s)
end
def msgdebug(s)
return if ( !@debug )
format_for_output(@info_fd, "DEBUG", s)
format_for_output(STDOUT, "DEBUG", s) if (!@quiet)
end
def msgstatus( s)
return if ( !@verbose || @quiet)
format_for_output(STDOUT, "STATUS", s)
end
def logstatus(s)
msgstatus(s)
end
def msgerror(s)
format_for_output(@info_fd, "ERROR", s)
format_for_output(@error_fd, "ERROR", s)
format_for_output(STDERR, "ERROR", s)
end
def logerr(s)
msgerror(s)
end
def puts (s)
msgstatus(s)
end
def log_xfer ( request, response,size,tm)
#just return, no loggin needed..
return
xfer = { "access" => get_time,
"url"=>request.env["REQUEST_URI"],
"host" => request.env["REMOTE_ADDR"],
"sz" => size,
"tm" => tm }
yml = YAML.dump(xfer)
STDOUT.write(yml)
end
def log_access(request)
#nothing..
end
private
def format_for_output (out,label,s)
out.write(sprintf("(%s:%s) %s\n", get_time.strftime("%Y/%m/%d %H:%M:%S"), label, s))
end
def get_time ( )
return (Time.now.utc )
end
end
##
# Stub class, only logs to stdout..
class LumberAppendNoFile < LumberNoFile
#basic rules
# debug - stuff only of interest to debugging, on if @debug
# info - noisy stuff, on if not quiet
# error - always on
def initialize ( cfg, error_lst, debug_lst, info_lst)
@cfg = cfg
##
# Defaults
@debug = false
@info = false
@quiet = false
@verbose = false
@verbose = true if (cfg["verbose"])
@info = true if (cfg["info"])
@quiet = true if (cfg["quiet"])
@debug = true if (cfg["debug"])
@error_fd = error_lst
@debug_fd = debug_lst
@info_fd = info_lst
msgerror("Start.")
msginfo("Logging Started.")
end
def msginfo(s)
return if (@quiet)
return if (!@verbose)
format_for_output(@info_fd, "INFO", s)
end
def loginfo(s)
msginfo(s)
end
def msgdebug(s)
return if ( !@debug || @quiet)
format_for_output(@info_fd, "DEBUG", s)
end
def msgstatus( s)
return if ( !@verbose || @quiet)
end
def msgerror(s)
format_for_output(@info_fd, "ERROR", s)
format_for_output(@error_fd, "ERROR", s)
end
private
def format_for_output (out,label,s)
out << sprintf("(%s:%s) %s\n", get_time.strftime("%Y/%m/%d %H:%M:%S"), label, s)
end
end
class HttpLumber < Lumber
def initialize ( cfg )
super(cfg)
@hits_fd = File.open(cfg["logdir"] + "/hits.log", "a")
@perf_fd = File.open(cfg["logdir"] + "/xfer.log", "a")
end
def log_request ( s)
STDERR.write("Bad - not to be used directly...")
exit(-1)
end
def log_access(request)
STDERR.write("Bad - not to be used directly...")
exit(-1)
end
def log_xfer ( request)
STDERR.write("Bad - not to be used directly...")
exit(-1)
end
end
##
# Mongrel related stuff goes here...
class MongrelLumber < HttpLumber
def initialize ( cfg )
super(cfg)
end
def log_access(request)
format_for_output(@hits_fd,"",request.env["REMOTE_ADDR"] + ":" + request.env["REQUEST_URI"])
end
##
# For now, the same as log_access...
def log_request ( r)
log_access(r)
end
end
##
# Tile generator specific stuff goes here...
class TileLumber < MongrelLumber
def initialize ( cfg )
super(cfg)
end
def log_xfer ( request, response,size,tm)
xfer = { "access" => get_time,
"url"=>request.env["REQUEST_URI"],
"host" => request.env["REMOTE_ADDR"],
"sz" => size,
"tm" => tm }
yml = YAML.dump(xfer)
@perf_fd.write(yml)
end
end