TwP-logging 0.9.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. data/History.txt +169 -0
  2. data/README.rdoc +102 -0
  3. data/Rakefile +42 -0
  4. data/data/bad_logging_1.rb +13 -0
  5. data/data/bad_logging_2.rb +21 -0
  6. data/data/logging.rb +42 -0
  7. data/data/logging.yaml +63 -0
  8. data/data/simple_logging.rb +13 -0
  9. data/lib/logging.rb +408 -0
  10. data/lib/logging/appender.rb +303 -0
  11. data/lib/logging/appenders/buffering.rb +167 -0
  12. data/lib/logging/appenders/console.rb +62 -0
  13. data/lib/logging/appenders/email.rb +75 -0
  14. data/lib/logging/appenders/file.rb +54 -0
  15. data/lib/logging/appenders/growl.rb +197 -0
  16. data/lib/logging/appenders/io.rb +69 -0
  17. data/lib/logging/appenders/rolling_file.rb +291 -0
  18. data/lib/logging/appenders/syslog.rb +201 -0
  19. data/lib/logging/config/configurator.rb +190 -0
  20. data/lib/logging/config/yaml_configurator.rb +195 -0
  21. data/lib/logging/layout.rb +119 -0
  22. data/lib/logging/layouts/basic.rb +34 -0
  23. data/lib/logging/layouts/pattern.rb +296 -0
  24. data/lib/logging/log_event.rb +51 -0
  25. data/lib/logging/logger.rb +490 -0
  26. data/lib/logging/repository.rb +172 -0
  27. data/lib/logging/root_logger.rb +61 -0
  28. data/lib/logging/stats.rb +278 -0
  29. data/lib/logging/utils.rb +130 -0
  30. data/logging.gemspec +41 -0
  31. data/test/appenders/test_buffered_io.rb +183 -0
  32. data/test/appenders/test_console.rb +66 -0
  33. data/test/appenders/test_email.rb +171 -0
  34. data/test/appenders/test_file.rb +93 -0
  35. data/test/appenders/test_growl.rb +128 -0
  36. data/test/appenders/test_io.rb +142 -0
  37. data/test/appenders/test_rolling_file.rb +207 -0
  38. data/test/appenders/test_syslog.rb +194 -0
  39. data/test/benchmark.rb +87 -0
  40. data/test/config/test_configurator.rb +70 -0
  41. data/test/config/test_yaml_configurator.rb +40 -0
  42. data/test/layouts/test_basic.rb +43 -0
  43. data/test/layouts/test_pattern.rb +177 -0
  44. data/test/setup.rb +74 -0
  45. data/test/test_appender.rb +166 -0
  46. data/test/test_layout.rb +110 -0
  47. data/test/test_log_event.rb +80 -0
  48. data/test/test_logger.rb +734 -0
  49. data/test/test_logging.rb +267 -0
  50. data/test/test_repository.rb +126 -0
  51. data/test/test_root_logger.rb +81 -0
  52. data/test/test_stats.rb +274 -0
  53. data/test/test_utils.rb +116 -0
  54. metadata +156 -0
@@ -0,0 +1,167 @@
1
+
2
+ module Logging::Appenders
3
+
4
+ # The Buffering module is used to implement buffering of the log messages
5
+ # in a given appender. The size of the buffer can be specified, and the
6
+ # buffer can be configured to auto-flush at a given threshold. The
7
+ # threshold can be a single message or a very large number of messages.
8
+ #
9
+ # Log messages of a certain level can cause the buffer to be flushed
10
+ # immediately. If an error occurs, all previous messages and the error
11
+ # message will be written immediately to the logging destination if the
12
+ # buffer is configured to do so.
13
+ #
14
+ module Buffering
15
+
16
+ # Default buffer size
17
+ #
18
+ DEFAULT_BUFFER_SIZE = 500;
19
+
20
+ # The buffer holding the log messages
21
+ #
22
+ attr_reader :buffer
23
+
24
+ # The auto-flushing setting. When the buffer reaches this size, all
25
+ # messages will be be flushed automatically.
26
+ #
27
+ attr_reader :auto_flushing
28
+
29
+ # This message must be implemented by the including class. The method
30
+ # should write the contents of the buffer to the logging destination,
31
+ # and it should clear the buffer when done.
32
+ #
33
+ def flush
34
+ raise NotImplementedError
35
+ end
36
+
37
+ # Configure the levels that will trigger and immediate flush of the
38
+ # logging buffer. When a log event of the given level is seen, the
39
+ # buffer will be flushed immediately. Only the levels explicitly given
40
+ # in this assignment will flush the buffer; if an "error" message is
41
+ # configured to immediately flush the buffer, a "fatal" message will not
42
+ # even though it is a higher level. Both must be explicitly passed to
43
+ # this assignment.
44
+ #
45
+ # You can pass in a single leveal name or number, and array of level
46
+ # names or numbers, or a string containg a comma separated list of level
47
+ # names or numbers.
48
+ #
49
+ # immediate_at = :error
50
+ # immediate_at = [:error, :fatal]
51
+ # immediate_at = "warn, error"
52
+ #
53
+ def immediate_at=( level )
54
+ @immediate ||= []
55
+ @immediate.clear
56
+
57
+ # get the immediate levels -- no buffering occurs at these levels, and
58
+ # a log message is written to the logging destination immediately
59
+ immediate_at =
60
+ case level
61
+ when String; level.split(',').map {|x| x.strip}
62
+ when Array; level
63
+ else Array(level) end
64
+
65
+ immediate_at.each do |lvl|
66
+ num = ::Logging.level_num(lvl)
67
+ next if num.nil?
68
+ @immediate[num] = true
69
+ end
70
+ end
71
+
72
+ # Configure the auto-flushing period. Auto-flushing is used to flush the
73
+ # contents of the logging buffer to the logging destination
74
+ # automatically when the buffer reaches a certain threshold.
75
+ #
76
+ # By default, the auto-flushing will be configured to flush after each
77
+ # log message.
78
+ #
79
+ # The allowed settings are as follows:
80
+ #
81
+ # N : flush after every N messages (N is an integer)
82
+ # true : flush after each log message
83
+ # false OR
84
+ # nil OR
85
+ # 0 : only flush when the buffer is full (500 messages)
86
+ #
87
+ # If the default buffer size of 500 is too small, you can manuall
88
+ # configure to be as large as you want. This will consume more memory.
89
+ #
90
+ # auto_flushing = 42_000
91
+ #
92
+ def auto_flushing=( period )
93
+ @auto_flushing =
94
+ case period
95
+ when true; 1
96
+ when false, nil, 0; DEFAULT_BUFFER_SIZE
97
+ when Integer; period
98
+ when String; Integer(period)
99
+ else
100
+ raise ArgumentError,
101
+ "unrecognized auto_flushing period: #{period.inspect}"
102
+ end
103
+
104
+ if @auto_flushing < 0
105
+ raise ArgumentError,
106
+ "auto_flushing period cannot be negative: #{period.inspect}"
107
+ end
108
+ end
109
+
110
+
111
+ protected
112
+
113
+ # Configure the buffering using the arguments found in the give options
114
+ # hash. This method must be called in order to use the message buffer.
115
+ # The supported options are "immediate_at" and "auto_flushing". Please
116
+ # refer to the documentation for those methods to see the allowed
117
+ # options.
118
+ #
119
+ def configure_buffering( opts )
120
+ @buffer = []
121
+
122
+ self.immediate_at = opts.getopt(:immediate_at, '')
123
+ self.auto_flushing = opts.getopt(:auto_flushing, true)
124
+ end
125
+
126
+ # Append the given event to the message buffer. The event can be either
127
+ # a string or a LogEvent object.
128
+ #
129
+ def add_to_buffer( event )
130
+ str = event.instance_of?(::Logging::LogEvent) ?
131
+ layout.format(event) : event.to_s
132
+ return if str.empty?
133
+
134
+ buffer << str
135
+ flush if buffer.length >= auto_flushing || immediate?(event)
136
+
137
+ self
138
+ end
139
+
140
+ # Returns true if the _event_ level matches one of the configured
141
+ # immediate logging levels. Otherwise returns false.
142
+ #
143
+ def immediate?( event )
144
+ return false unless event.respond_to? :level
145
+ @immediate[event.level]
146
+ end
147
+
148
+
149
+ private
150
+
151
+ # call-seq:
152
+ # write( event )
153
+ #
154
+ # Writes the given _event_ to the logging destination. The _event_ can
155
+ # be either a LogEvent or a String. If a LogEvent, then it will be
156
+ # formatted using the layout given to the appender when it was created.
157
+ #
158
+ def write( event )
159
+ add_to_buffer event
160
+ self
161
+ end
162
+
163
+
164
+ end # module Buffering
165
+ end # module Logging::Appenders
166
+
167
+ # EOF
@@ -0,0 +1,62 @@
1
+
2
+ require Logging.libpath(*%w[logging appenders io])
3
+
4
+ module Logging::Appenders
5
+
6
+ # This class provides an Appender that can write to STDOUT.
7
+ #
8
+ class Stdout < ::Logging::Appenders::IO
9
+
10
+ # call-seq:
11
+ # Stdout.new( name = 'stdout' )
12
+ # Stdout.new( :layout => layout )
13
+ # Stdout.new( name = 'stdout', :level => 'info' )
14
+ #
15
+ # Creates a new Stdout Appender. The name 'stdout' will be used unless
16
+ # another is given. Optionally, a layout can be given for the appender
17
+ # to use (otherwise a basic appender will be created) and a log level
18
+ # can be specified.
19
+ #
20
+ # Options:
21
+ #
22
+ # :layout => the layout to use when formatting log events
23
+ # :level => the level at which to log
24
+ #
25
+ def initialize( *args )
26
+ opts = Hash === args.last ? args.pop : {}
27
+ name = args.empty? ? 'stdout' : args.shift
28
+
29
+ super(name, STDOUT, opts)
30
+ end
31
+ end # class Stdout
32
+
33
+ # This class provides an Appender that can write to STDERR.
34
+ #
35
+ class Stderr < ::Logging::Appenders::IO
36
+
37
+ # call-seq:
38
+ # Stderr.new( name = 'stderr' )
39
+ # Stderr.new( :layout => layout )
40
+ # Stderr.new( name = 'stderr', :level => 'warn' )
41
+ #
42
+ # Creates a new Stderr Appender. The name 'stderr' will be used unless
43
+ # another is given. Optionally, a layout can be given for the appender
44
+ # to use (otherwise a basic appender will be created) and a log level
45
+ # can be specified.
46
+ #
47
+ # Options:
48
+ #
49
+ # :layout => the layout to use when formatting log events
50
+ # :level => the level at which to log
51
+ #
52
+ def initialize( *args )
53
+ opts = Hash === args.last ? args.pop : {}
54
+ name = args.empty? ? 'stderr' : args.shift
55
+
56
+ super(name, STDERR, opts)
57
+ end
58
+ end # class Stderr
59
+
60
+ end # module Logging::Appenders
61
+
62
+ # EOF
@@ -0,0 +1,75 @@
1
+
2
+ require 'net/smtp'
3
+ require 'time' # get rfc822 time format
4
+
5
+ # a replacement EmailOutputter. This is essentially the default EmailOutptter from Log4r but with the following
6
+ # changes:
7
+ # 1) if there is data to send in an email, then do not send anything
8
+ # 2) connect to the smtp server at the last minute, do not connect at startup and then send later on.
9
+ # 3) Fix the To: field so that it looks alright.
10
+ module Logging::Appenders
11
+
12
+ class Email < ::Logging::Appender
13
+ include Buffering
14
+
15
+ attr_reader :server, :port, :domain, :acct, :authtype, :subject
16
+
17
+ # TODO: make the from/to fields modifiable
18
+ # possibly the subject, too
19
+
20
+ def initialize( name, opts = {} )
21
+ super(name, opts)
22
+
23
+ af = opts.getopt(:buffsize) ||
24
+ opts.getopt(:buffer_size) ||
25
+ 100
26
+ configure_buffering({:auto_flushing => af}.merge(opts))
27
+
28
+ # get the SMTP parameters
29
+ @from = opts.getopt(:from)
30
+ raise ArgumentError, 'Must specify from address' if @from.nil?
31
+
32
+ @to = opts.getopt(:to, '').split(',')
33
+ raise ArgumentError, 'Must specify recipients' if @to.empty?
34
+
35
+ @server = opts.getopt :server, 'localhost'
36
+ @port = opts.getopt :port, 25, :as => Integer
37
+ @domain = opts.getopt(:domain, ENV['HOSTNAME']) || 'localhost.localdomain'
38
+ @acct = opts.getopt :acct
39
+ @passwd = opts.getopt :passwd
40
+ @authtype = opts.getopt :authtype, :cram_md5, :as => Symbol
41
+ @subject = opts.getopt :subject, "Message of #{$0}"
42
+ @params = [@server, @port, @domain, @acct, @passwd, @authtype]
43
+ end
44
+
45
+ # call-seq:
46
+ # flush
47
+ #
48
+ # Create and send an email containing the current message buffer.
49
+ #
50
+ def flush
51
+ return self if buffer.empty?
52
+
53
+ ### build a mail header for RFC 822
54
+ rfc822msg = "From: #{@from}\n"
55
+ rfc822msg << "To: #{@to.join(",")}\n"
56
+ rfc822msg << "Subject: #{@subject}\n"
57
+ rfc822msg << "Date: #{Time.new.rfc822}\n"
58
+ rfc822msg << "Message-Id: <#{"%.8f" % Time.now.to_f}@#{@domain}>\n\n"
59
+ rfc822msg << buffer.join
60
+
61
+ ### send email
62
+ Net::SMTP.start(*@params) {|smtp| smtp.sendmail(rfc822msg, @from, @to)}
63
+ self
64
+ rescue StandardError, TimeoutError => err
65
+ self.level = :off
66
+ ::Logging.log_internal {'e-mail notifications have been disabled'}
67
+ ::Logging.log_internal(-2) {err}
68
+ ensure
69
+ buffer.clear
70
+ end
71
+
72
+ end # class Email
73
+ end # module Logging::Appenders
74
+
75
+ # EOF
@@ -0,0 +1,54 @@
1
+
2
+ module Logging::Appenders
3
+
4
+ # This class provides an Appender that can write to a File.
5
+ #
6
+ class File < ::Logging::Appenders::IO
7
+
8
+ # call-seq:
9
+ # File.assert_valid_logfile( filename ) => true
10
+ #
11
+ # Asserts that the given _filename_ can be used as a log file by ensuring
12
+ # that if the file exists it is a regular file and it is writable. If
13
+ # the file does not exist, then the directory is checked to see if it is
14
+ # writable.
15
+ #
16
+ # An +ArgumentError+ is raised if any of these assertions fail.
17
+ #
18
+ def self.assert_valid_logfile( fn )
19
+ if ::File.exist?(fn)
20
+ if not ::File.file?(fn)
21
+ raise ArgumentError, "#{fn} is not a regular file"
22
+ elsif not ::File.writable?(fn)
23
+ raise ArgumentError, "#{fn} is not writeable"
24
+ end
25
+ elsif not ::File.writable?(::File.dirname(fn))
26
+ raise ArgumentError, "#{::File.dirname(fn)} is not writable"
27
+ end
28
+ true
29
+ end
30
+
31
+ # call-seq:
32
+ # File.new( name, :filename => 'file' )
33
+ # File.new( name, :filename => 'file', :truncate => true )
34
+ # File.new( name, :filename => 'file', :layout => layout )
35
+ #
36
+ # Creates a new File Appender that will use the given filename as the
37
+ # logging destination. If the file does not already exist it will be
38
+ # created. If the :truncate option is set to +true+ then the file will
39
+ # be truncated before writing begins; otherwise, log messages will be
40
+ # appened to the file.
41
+ #
42
+ def initialize( name, opts = {} )
43
+ @fn = opts.getopt(:filename, name)
44
+ raise ArgumentError, 'no filename was given' if @fn.nil?
45
+ self.class.assert_valid_logfile(@fn)
46
+ mode = opts.getopt(:truncate) ? 'w' : 'a'
47
+
48
+ super(name, ::File.new(@fn, mode), opts)
49
+ end
50
+
51
+ end # class FileAppender
52
+ end # module Logging::Appenders
53
+
54
+ # EOF
@@ -0,0 +1,197 @@
1
+
2
+ module Logging::Appenders
3
+
4
+ # This class provides an Appender that can send notifications to the Growl
5
+ # notification system on Mac OS X.
6
+ #
7
+ # +growlnotify+ must be installed somewhere in the path in order for the
8
+ # appender to function properly.
9
+ #
10
+ class Growl < ::Logging::Appender
11
+
12
+ # :stopdoc:
13
+ ColoredRegexp = %r/\e\[([34][0-7]|[0-9])m/
14
+ # :startdoc:
15
+
16
+ # call-seq:
17
+ # Growl.new( name, opts = {} )
18
+ #
19
+ # Create an appender that will log messages to the Growl framework on a
20
+ # Mac OS X machine.
21
+ #
22
+ def initialize( name, opts = {} )
23
+ super
24
+
25
+ @growl = "growlnotify -w -n \"#{@name}\" -t \"%s\" -m \"%s\" -p %d &"
26
+
27
+ @coalesce = opts.getopt(:coalesce, false)
28
+ @title_sep = opts.getopt(:separator)
29
+
30
+ # provides a mapping from the default Logging levels
31
+ # to the Growl notification levels
32
+ @map = [-2, -1, 0, 1, 2]
33
+
34
+ map = opts.getopt(:map)
35
+ self.map = map unless map.nil?
36
+ setup_coalescing if @coalesce
37
+
38
+ # make sure the growlnotify command can be called
39
+ unless system('growlnotify -v >> /dev/null 2>&1')
40
+ self.level = :off
41
+ ::Logging.log_internal {'growl notifications have been disabled'}
42
+ end
43
+ end
44
+
45
+ # call-seq:
46
+ # map = { logging_levels => growl_levels }
47
+ #
48
+ # Configure the mapping from the Logging levels to the Growl
49
+ # notification levels. This is needed in order to log events at the
50
+ # proper Growl level.
51
+ #
52
+ # Without any configuration, the following maping will be used:
53
+ #
54
+ # :debug => -2
55
+ # :info => -1
56
+ # :warn => 0
57
+ # :error => 1
58
+ # :fatal => 2
59
+ #
60
+ def map=( levels )
61
+ map = []
62
+ levels.keys.each do |lvl|
63
+ num = ::Logging.level_num(lvl)
64
+ map[num] = growl_level_num(levels[lvl])
65
+ end
66
+ @map = map
67
+ end
68
+
69
+
70
+ private
71
+
72
+ # call-seq:
73
+ # write( event )
74
+ #
75
+ # Write the given _event_ to the growl notification facility. The log
76
+ # event will be processed through the Layout assciated with this
77
+ # appender. The message will be logged at the level specified by the
78
+ # event.
79
+ #
80
+ def write( event )
81
+ title = ''
82
+ priority = 0
83
+ message = if event.instance_of?(::Logging::LogEvent)
84
+ priority = @map[event.level]
85
+ @layout.format(event)
86
+ else
87
+ event.to_s
88
+ end
89
+ return if message.empty?
90
+
91
+ message = message.gsub(ColoredRegexp, '')
92
+ if @title_sep
93
+ title, message = message.split(@title_sep)
94
+ title, message = '', title if message.nil?
95
+ end
96
+
97
+ growl(title.strip, message.strip, priority)
98
+ self
99
+ end
100
+
101
+ # call-seq:
102
+ # growl_level_num( level ) => integer
103
+ #
104
+ # Takes the given _level_ as a string or integer and returns the
105
+ # corresponding Growl notification level number.
106
+ #
107
+ def growl_level_num( level )
108
+ level = Integer(level)
109
+ if level < -2 or level > 2
110
+ raise ArgumentError, "level '#{level}' is not in range -2..2"
111
+ end
112
+ level
113
+ end
114
+
115
+ # call-seq:
116
+ # growl( title, message, priority )
117
+ #
118
+ # Send the _message_ to the growl notifier using the given _title_ and
119
+ # _priority_.
120
+ #
121
+ def growl( title, message, priority )
122
+ message.tr!("`", "'")
123
+ if @coalesce then coalesce(title, message, priority)
124
+ else call_growl(title, message, priority) end
125
+ end
126
+
127
+ # call-seq:
128
+ # coalesce( title, message, priority )
129
+ #
130
+ # Attempt to coalesce the given _message_ with any that might be pending
131
+ # in the queue to send to the growl notifier. Messages are coalesced
132
+ # with any in the queue that have the same _title_ and _priority_.
133
+ #
134
+ # There can be only one message in the queue, so if the _title_ and/or
135
+ # _priority_ don't match, the message in the queue is sent immediately
136
+ # to the growl notifier, and the current _message_ is queued.
137
+ #
138
+ def coalesce( *msg )
139
+ @c_mutex.synchronize do
140
+ if @c_queue.empty?
141
+ @c_queue << msg
142
+ @c_thread.run
143
+
144
+ else
145
+ qmsg = @c_queue.last
146
+ if qmsg.first != msg.first or qmsg.last != msg.last
147
+ @c_queue << msg
148
+ else
149
+ qmsg[1] << "\n" << msg[1]
150
+ end
151
+ end
152
+ end
153
+
154
+ Thread.pass
155
+ end
156
+
157
+ # call-seq:
158
+ # setup_coalescing
159
+ #
160
+ # Setup the appender to handle coalescing of messages before sending
161
+ # them to the growl notifier. This requires the creation of a thread and
162
+ # mutex for passing messages from the appender thread to the growl
163
+ # notifier thread.
164
+ #
165
+ def setup_coalescing
166
+ @c_mutex = Mutex.new
167
+ @c_queue = []
168
+
169
+ @c_thread = Thread.new do
170
+ Thread.stop
171
+ loop do
172
+ sleep 0.5
173
+ @c_mutex.synchronize {
174
+ call_growl(*@c_queue.shift) until @c_queue.empty?
175
+ }
176
+ Thread.stop if @c_queue.empty?
177
+ end # loop
178
+ end # Thread.new
179
+ end
180
+
181
+ # call-seq:
182
+ # call_growl( title, message, priority )
183
+ #
184
+ # Call the growlnotify application with the given parameters. If the
185
+ # system call fails, the growl appender will be disabled.
186
+ #
187
+ def call_growl( *args )
188
+ unless system(@growl % args)
189
+ self.level = :off
190
+ ::Logging.log_internal {'growl notifications have been disabled'}
191
+ end
192
+ end
193
+
194
+ end # class Growl
195
+ end # module Logging::Appenders
196
+
197
+ # EOF