log4ruby 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/log4ruby/appender.rb +41 -41
- data/lib/log4ruby/appenders/nil_appender.rb +15 -15
- data/lib/log4ruby/appenders/stream_appender.rb +31 -31
- data/lib/log4ruby/exceptions.rb +9 -9
- data/lib/log4ruby/formatter.rb +20 -20
- data/lib/log4ruby/formatters/pattern_formatter.rb +81 -51
- data/lib/log4ruby/level.rb +93 -93
- data/lib/log4ruby/log.rb +35 -35
- data/lib/log4ruby/logger.rb +131 -126
- data/lib/log4ruby/rolling_file.rb +26 -0
- data/lib/log4ruby/version.rb +8 -8
- data/lib/log4ruby.rb +36 -35
- data/lib/tests.rb +38 -38
- metadata +55 -20
- data/lib/options_arg.rb +0 -66
data/lib/log4ruby/appender.rb
CHANGED
@@ -1,42 +1,42 @@
|
|
1
|
-
#
|
2
|
-
# 21 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
module Log4Ruby
|
6
|
-
|
7
|
-
# Base class for appenders.
|
8
|
-
class Appender
|
9
|
-
|
10
|
-
# Set the formatter this appender uses.
|
11
|
-
attr_writer :formatter
|
12
|
-
|
13
|
-
# New appender. This class should be treated as an abstract base class and should not be initialised directly.
|
14
|
-
#
|
15
|
-
# @param [Log4Ruby::Level] level the threshold level for the appender.
|
16
|
-
# @param [Log4Ruby::Formatter] formatter the formatter the appender uses.
|
17
|
-
def initialize(level, formatter)
|
18
|
-
@level = level
|
19
|
-
@formatter = formatter
|
20
|
-
end
|
21
|
-
|
22
|
-
# Process the log item.
|
23
|
-
#
|
24
|
-
# @param [Log4Ruby::Log] log
|
25
|
-
def process_log(log)
|
26
|
-
return if log[:level] < @level
|
27
|
-
|
28
|
-
# Format the log item and emit it.
|
29
|
-
emit(@formatter.format(log))
|
30
|
-
end
|
31
|
-
|
32
|
-
private
|
33
|
-
|
34
|
-
# Emits a log message to this appenders target.
|
35
|
-
#
|
36
|
-
# @param [String] message the message to emit.
|
37
|
-
def emit(message)
|
38
|
-
end
|
39
|
-
|
40
|
-
end
|
41
|
-
|
1
|
+
#
|
2
|
+
# 21 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
module Log4Ruby
|
6
|
+
|
7
|
+
# Base class for appenders.
|
8
|
+
class Appender
|
9
|
+
|
10
|
+
# Set the formatter this appender uses.
|
11
|
+
attr_writer :formatter
|
12
|
+
|
13
|
+
# New appender. This class should be treated as an abstract base class and should not be initialised directly.
|
14
|
+
#
|
15
|
+
# @param [Log4Ruby::Level] level the threshold level for the appender.
|
16
|
+
# @param [Log4Ruby::Formatter] formatter the formatter the appender uses.
|
17
|
+
def initialize(level, formatter)
|
18
|
+
@level = level
|
19
|
+
@formatter = formatter
|
20
|
+
end
|
21
|
+
|
22
|
+
# Process the log item.
|
23
|
+
#
|
24
|
+
# @param [Log4Ruby::Log] log
|
25
|
+
def process_log(log)
|
26
|
+
return if log[:level] < @level
|
27
|
+
|
28
|
+
# Format the log item and emit it.
|
29
|
+
emit(@formatter.format(log))
|
30
|
+
end
|
31
|
+
|
32
|
+
private
|
33
|
+
|
34
|
+
# Emits a log message to this appenders target.
|
35
|
+
#
|
36
|
+
# @param [String] message the message to emit.
|
37
|
+
def emit(message)
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
41
|
+
|
42
42
|
end
|
@@ -1,16 +1,16 @@
|
|
1
|
-
#
|
2
|
-
# 21 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
module Log4Ruby
|
6
|
-
|
7
|
-
# An appender that does nothing. All logs to it are ignored and just consumed.
|
8
|
-
class NilAppender
|
9
|
-
|
10
|
-
# Don't do anything with the log. Just return.
|
11
|
-
def process_log(log)
|
12
|
-
end
|
13
|
-
|
14
|
-
end
|
15
|
-
|
1
|
+
#
|
2
|
+
# 21 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
module Log4Ruby
|
6
|
+
|
7
|
+
# An appender that does nothing. All logs to it are ignored and just consumed.
|
8
|
+
class NilAppender
|
9
|
+
|
10
|
+
# Don't do anything with the log. Just return.
|
11
|
+
def process_log(log)
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
15
|
+
|
16
16
|
end
|
@@ -1,31 +1,31 @@
|
|
1
|
-
#
|
2
|
-
# 21 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
require "log4ruby/appender"
|
6
|
-
|
7
|
-
module Log4Ruby
|
8
|
-
|
9
|
-
# Simple appender that can emit to a stream (file, console, socket, etc i.e. anything that responds to the write method)
|
10
|
-
class StreamAppender < Log4Ruby::Appender
|
11
|
-
|
12
|
-
# New stream appender.
|
13
|
-
#
|
14
|
-
# @param [IO] stream a IO stream that can respond to the write method.
|
15
|
-
def initialize(level, formatter, stream)
|
16
|
-
super(level, formatter)
|
17
|
-
@stream = stream
|
18
|
-
end
|
19
|
-
|
20
|
-
private
|
21
|
-
|
22
|
-
# Writes the message to the underlying stream.
|
23
|
-
#
|
24
|
-
# @param [String] message the message to write.
|
25
|
-
def emit(message)
|
26
|
-
@stream.write(message)
|
27
|
-
end
|
28
|
-
|
29
|
-
end
|
30
|
-
|
31
|
-
end
|
1
|
+
#
|
2
|
+
# 21 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
require "log4ruby/appender"
|
6
|
+
|
7
|
+
module Log4Ruby
|
8
|
+
|
9
|
+
# Simple appender that can emit to a stream (file, console, socket, etc i.e. anything that responds to the write method)
|
10
|
+
class StreamAppender < Log4Ruby::Appender
|
11
|
+
|
12
|
+
# New stream appender.
|
13
|
+
#
|
14
|
+
# @param [IO] stream a IO stream that can respond to the write method.
|
15
|
+
def initialize(level, formatter, stream)
|
16
|
+
super(level, formatter)
|
17
|
+
@stream = stream
|
18
|
+
end
|
19
|
+
|
20
|
+
private
|
21
|
+
|
22
|
+
# Writes the message to the underlying stream.
|
23
|
+
#
|
24
|
+
# @param [String] message the message to write.
|
25
|
+
def emit(message)
|
26
|
+
@stream.write(message)
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
data/lib/log4ruby/exceptions.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
#
|
2
|
-
# 22 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
module Log4Ruby
|
6
|
-
|
7
|
-
class LoggerNotFoundError < Exception
|
8
|
-
end
|
9
|
-
|
1
|
+
#
|
2
|
+
# 22 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
module Log4Ruby
|
6
|
+
|
7
|
+
class LoggerNotFoundError < Exception
|
8
|
+
end
|
9
|
+
|
10
10
|
end
|
data/lib/log4ruby/formatter.rb
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
#
|
2
|
-
# 21 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
module Log4Ruby
|
6
|
-
|
7
|
-
# Base class for all formatters.
|
8
|
-
class Formatter
|
9
|
-
|
10
|
-
# Format a log item.
|
11
|
-
#
|
12
|
-
# @param [Log4Ruby::Log] log
|
13
|
-
#
|
14
|
-
# @return [String] the fully formatted log message.
|
15
|
-
def format(log)
|
16
|
-
end
|
17
|
-
|
18
|
-
end
|
19
|
-
|
20
|
-
end
|
1
|
+
#
|
2
|
+
# 21 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
module Log4Ruby
|
6
|
+
|
7
|
+
# Base class for all formatters.
|
8
|
+
class Formatter
|
9
|
+
|
10
|
+
# Format a log item.
|
11
|
+
#
|
12
|
+
# @param [Log4Ruby::Log] log
|
13
|
+
#
|
14
|
+
# @return [String] the fully formatted log message.
|
15
|
+
def format(log)
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
@@ -1,51 +1,81 @@
|
|
1
|
-
#
|
2
|
-
# 21 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
require "log4ruby/formatter"
|
6
|
-
require "log4ruby/log"
|
7
|
-
|
8
|
-
module Log4Ruby
|
9
|
-
|
10
|
-
class PatternFormatter
|
11
|
-
|
12
|
-
# New pattern
|
13
|
-
#
|
14
|
-
# @param [String] format_string the pattern string to use when formatting log messages.
|
15
|
-
# @param [Array] subst_array the log parameters to substitute into the format string.
|
16
|
-
# @param [Hash]
|
17
|
-
# that will be invoked with the parameter's value. The values returned will be used when substituting into the
|
18
|
-
# format string.
|
19
|
-
#
|
20
|
-
# e.g.
|
21
|
-
# format_string = [%s] %7s - %s : %s
|
22
|
-
# subst_array = [:timestamp, :level, :full_logger_name, :message]
|
23
|
-
# custom_formatters = {:timestamp => Proc.new { |value| value.strftime("%Y-%m-%d %H:%M:%S.%L") }}
|
24
|
-
#
|
25
|
-
# The above example will print the timestamp in the format specified.
|
26
|
-
# The level will be right aligned padded on the left to use 7 spaces followed by the full logger name and the
|
27
|
-
# message.
|
28
|
-
def initialize(format_string, subst_array,
|
29
|
-
@format_string =
|
30
|
-
@subst_array =
|
31
|
-
@
|
32
|
-
end
|
33
|
-
|
34
|
-
#
|
35
|
-
#
|
36
|
-
# @param [
|
37
|
-
#
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
1
|
+
#
|
2
|
+
# 21 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
require "log4ruby/formatter"
|
6
|
+
require "log4ruby/log"
|
7
|
+
|
8
|
+
module Log4Ruby
|
9
|
+
|
10
|
+
class PatternFormatter
|
11
|
+
|
12
|
+
# New pattern formatter.
|
13
|
+
#
|
14
|
+
# @param [String] format_string the pattern string to use when formatting log messages.
|
15
|
+
# @param [Array] subst_array the log parameters to substitute into the format string.
|
16
|
+
# @param [Hash] parameter_formatters custom formatters for log parameters. Maps parameter names to callable objects
|
17
|
+
# that will be invoked with the parameter's value. The values returned will be used when substituting into the
|
18
|
+
# format string.
|
19
|
+
#
|
20
|
+
# e.g.
|
21
|
+
# format_string = [%s] %7s - %s : %s
|
22
|
+
# subst_array = [:timestamp, :level, :full_logger_name, :message]
|
23
|
+
# custom_formatters = {:timestamp => Proc.new { |value| value.strftime("%Y-%m-%d %H:%M:%S.%L") }}
|
24
|
+
#
|
25
|
+
# The above example will print the timestamp in the format specified.
|
26
|
+
# The level will be right aligned padded on the left to use 7 spaces followed by the full logger name and the
|
27
|
+
# message.
|
28
|
+
def initialize(format_string, subst_array, parameter_formatters = {})
|
29
|
+
@format_string = format_string
|
30
|
+
@subst_array = subst_array
|
31
|
+
@parameter_formatters = parameter_formatters
|
32
|
+
end
|
33
|
+
|
34
|
+
# Adds a parameter formatter to this formatter.
|
35
|
+
#
|
36
|
+
# @param [Symbol] parameter the parameter to format.
|
37
|
+
# @param [Proc] callable the callable to invoke.
|
38
|
+
def add_parameter_formatter(parameter, callable)
|
39
|
+
@parameter_formatters[parameter] = callable
|
40
|
+
end
|
41
|
+
|
42
|
+
# Format the log item using the pattern string.
|
43
|
+
#
|
44
|
+
# @param [Log4Ruby::Log] log the log to format.
|
45
|
+
#
|
46
|
+
# @return [String] the fully formatted log message.
|
47
|
+
def format(log)
|
48
|
+
# Get the values of the parameters (apply custom formatters too).
|
49
|
+
parameters = @subst_array.map do |parameter|
|
50
|
+
value = log[parameter]
|
51
|
+
@parameter_formatters.has_key?(parameter) ? @parameter_formatters[parameter].call(value) : value.to_s
|
52
|
+
end
|
53
|
+
# Substitute into the format string.
|
54
|
+
@format_string % parameters
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
58
|
+
|
59
|
+
# Some common parameter formatters to use with the pattern formatter.
|
60
|
+
class ParameterFormatters
|
61
|
+
|
62
|
+
# Returns a logger formatter that will format logger objects.
|
63
|
+
#
|
64
|
+
# @param [Integer] index an integer that represents how far up the tree the logger's name should be resolved. So
|
65
|
+
# 1 would be only the name of the logger, 2 would be the name of the logger's parent and the name of the logger,
|
66
|
+
# and so on...
|
67
|
+
def self.logger_formatter(index)
|
68
|
+
start = 0 - index
|
69
|
+
Proc.new { |logger| logger.full_name.split(".")[start..-1].join(".") }
|
70
|
+
end
|
71
|
+
|
72
|
+
# Returns a timestamp formatter that will format time objects using the specified format string.
|
73
|
+
#
|
74
|
+
# @param [String] format_string the format string.
|
75
|
+
def self.timestamp_formatter(format_string)
|
76
|
+
Proc.new { |timestamp| timestamp.strftime(format_string) }
|
77
|
+
end
|
78
|
+
|
79
|
+
end
|
80
|
+
|
81
|
+
end
|
data/lib/log4ruby/level.rb
CHANGED
@@ -1,94 +1,94 @@
|
|
1
|
-
#
|
2
|
-
# 21 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
require "log4ruby/logger"
|
6
|
-
|
7
|
-
module Log4Ruby
|
8
|
-
|
9
|
-
class Level
|
10
|
-
|
11
|
-
# Creates a new level with the specified name and weight. Only level's created using this method are
|
12
|
-
# automatically made available on the Logger class. Any other level's will have to be handled manually.
|
13
|
-
# The method with which it is made available is the same as the level, but with all lowercase characters.
|
14
|
-
#
|
15
|
-
# @param [String] name the name of the new level. Will overwrite an existing level with the same name, if it exists.
|
16
|
-
# The name is converted to all uppercase characters.
|
17
|
-
# @param [Float] weight the weight of the level. Higher the weight, higher the priority.
|
18
|
-
def self.register(name, weight)
|
19
|
-
name = name.upcase
|
20
|
-
method_name = name.downcase
|
21
|
-
query_method_name = "#{method_name}?"
|
22
|
-
level = Level.new(name, weight)
|
23
|
-
const_set(name, level)
|
24
|
-
# Create the logging method.
|
25
|
-
Logger.send(:define_method, method_name) do |message, parameters = {}|
|
26
|
-
return if level < self.effective_level
|
27
|
-
# Construct the log and dispatch it.
|
28
|
-
parameters[:message] = message
|
29
|
-
parameters[:level] = level
|
30
|
-
parameters[:logger] = self
|
31
|
-
self.process_log(Log.new(parameters))
|
32
|
-
end
|
33
|
-
# Create the query method - for checking the effective level of a logger / appender.
|
34
|
-
Logger.send(:define_method, query_method_name) { self.effective_level <= level }
|
35
|
-
Appender.send(:define_method, query_method_name) { self.level <= level }
|
36
|
-
end
|
37
|
-
|
38
|
-
# Parses the specified string in an attempt to convert it to a Level object.
|
39
|
-
#
|
40
|
-
# @param [String] name the name of the level.
|
41
|
-
#
|
42
|
-
# @return [Log4Ruby::Level] the level object.
|
43
|
-
def self.parse(name)
|
44
|
-
name = name.upcase
|
45
|
-
const_get(name)
|
46
|
-
end
|
47
|
-
|
48
|
-
# The weight of this level. Higher the value, more severe the log.
|
49
|
-
attr_reader :weight
|
50
|
-
# The name of the level.
|
51
|
-
attr_reader :name
|
52
|
-
|
53
|
-
# Creates a new level.
|
54
|
-
#
|
55
|
-
# @param [String] name the name of the level.
|
56
|
-
# @param [Float] weight the weight for this level. Higher the weight, higher the severity.
|
57
|
-
def initialize(name, weight)
|
58
|
-
@name = name
|
59
|
-
@weight = weight
|
60
|
-
end
|
61
|
-
|
62
|
-
# Check if this level is less than the specified other log level.
|
63
|
-
# Comparison is done using the weight attribute
|
64
|
-
def <(other)
|
65
|
-
self.weight < other.weight
|
66
|
-
end
|
67
|
-
|
68
|
-
# Check if this level is less than or equal to the specified other log level.
|
69
|
-
# Comparison is done using the weight attribute
|
70
|
-
def <=(other)
|
71
|
-
self.weight <= other.weight
|
72
|
-
end
|
73
|
-
|
74
|
-
# Override to return the name of the level.
|
75
|
-
#
|
76
|
-
# @return [String] the level's name.
|
77
|
-
def to_s
|
78
|
-
@name
|
79
|
-
end
|
80
|
-
|
81
|
-
register("ALL", Float::MIN)
|
82
|
-
register("TRACE", 100.0)
|
83
|
-
register("FINE", 200.0)
|
84
|
-
register("DEBUG", 300.0)
|
85
|
-
register("CONF", 400.0)
|
86
|
-
register("INFO", 500.0)
|
87
|
-
register("WARN", 600.0)
|
88
|
-
register("ERROR", 700.0)
|
89
|
-
register("FATAL", 800.0)
|
90
|
-
register("OFF", Float::MAX)
|
91
|
-
|
92
|
-
end
|
93
|
-
|
1
|
+
#
|
2
|
+
# 21 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
require "log4ruby/logger"
|
6
|
+
|
7
|
+
module Log4Ruby
|
8
|
+
|
9
|
+
class Level
|
10
|
+
|
11
|
+
# Creates a new level with the specified name and weight. Only level's created using this method are
|
12
|
+
# automatically made available on the Logger class. Any other level's will have to be handled manually.
|
13
|
+
# The method with which it is made available is the same as the level, but with all lowercase characters.
|
14
|
+
#
|
15
|
+
# @param [String] name the name of the new level. Will overwrite an existing level with the same name, if it exists.
|
16
|
+
# The name is converted to all uppercase characters.
|
17
|
+
# @param [Float] weight the weight of the level. Higher the weight, higher the priority.
|
18
|
+
def self.register(name, weight)
|
19
|
+
name = name.upcase
|
20
|
+
method_name = name.downcase
|
21
|
+
query_method_name = "#{method_name}?"
|
22
|
+
level = Level.new(name, weight)
|
23
|
+
const_set(name, level)
|
24
|
+
# Create the logging method.
|
25
|
+
Logger.send(:define_method, method_name) do |message, parameters = {}|
|
26
|
+
return if level < self.effective_level
|
27
|
+
# Construct the log and dispatch it.
|
28
|
+
parameters[:message] = message
|
29
|
+
parameters[:level] = level
|
30
|
+
parameters[:logger] = self
|
31
|
+
self.process_log(Log.new(parameters))
|
32
|
+
end
|
33
|
+
# Create the query method - for checking the effective level of a logger / appender.
|
34
|
+
Logger.send(:define_method, query_method_name) { self.effective_level <= level }
|
35
|
+
Appender.send(:define_method, query_method_name) { self.level <= level }
|
36
|
+
end
|
37
|
+
|
38
|
+
# Parses the specified string in an attempt to convert it to a Level object.
|
39
|
+
#
|
40
|
+
# @param [String] name the name of the level.
|
41
|
+
#
|
42
|
+
# @return [Log4Ruby::Level] the level object.
|
43
|
+
def self.parse(name)
|
44
|
+
name = name.upcase
|
45
|
+
const_get(name)
|
46
|
+
end
|
47
|
+
|
48
|
+
# The weight of this level. Higher the value, more severe the log.
|
49
|
+
attr_reader :weight
|
50
|
+
# The name of the level.
|
51
|
+
attr_reader :name
|
52
|
+
|
53
|
+
# Creates a new level.
|
54
|
+
#
|
55
|
+
# @param [String] name the name of the level.
|
56
|
+
# @param [Float] weight the weight for this level. Higher the weight, higher the severity.
|
57
|
+
def initialize(name, weight)
|
58
|
+
@name = name
|
59
|
+
@weight = weight
|
60
|
+
end
|
61
|
+
|
62
|
+
# Check if this level is less than the specified other log level.
|
63
|
+
# Comparison is done using the weight attribute
|
64
|
+
def <(other)
|
65
|
+
self.weight < other.weight
|
66
|
+
end
|
67
|
+
|
68
|
+
# Check if this level is less than or equal to the specified other log level.
|
69
|
+
# Comparison is done using the weight attribute
|
70
|
+
def <=(other)
|
71
|
+
self.weight <= other.weight
|
72
|
+
end
|
73
|
+
|
74
|
+
# Override to return the name of the level.
|
75
|
+
#
|
76
|
+
# @return [String] the level's name.
|
77
|
+
def to_s
|
78
|
+
@name
|
79
|
+
end
|
80
|
+
|
81
|
+
register("ALL", Float::MIN)
|
82
|
+
register("TRACE", 100.0)
|
83
|
+
register("FINE", 200.0)
|
84
|
+
register("DEBUG", 300.0)
|
85
|
+
register("CONF", 400.0)
|
86
|
+
register("INFO", 500.0)
|
87
|
+
register("WARN", 600.0)
|
88
|
+
register("ERROR", 700.0)
|
89
|
+
register("FATAL", 800.0)
|
90
|
+
register("OFF", Float::MAX)
|
91
|
+
|
92
|
+
end
|
93
|
+
|
94
94
|
end
|
data/lib/log4ruby/log.rb
CHANGED
@@ -1,36 +1,36 @@
|
|
1
|
-
#
|
2
|
-
# 21 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
module Log4Ruby
|
6
|
-
|
7
|
-
# Represents a log item.
|
8
|
-
class Log
|
9
|
-
|
10
|
-
attr_reader :parameters
|
11
|
-
|
12
|
-
# A hash containing all the information in this log.
|
13
|
-
# A message, level and logger are the only mandatory parameters.
|
14
|
-
def initialize(parameters = {})
|
15
|
-
@message = get_option(parameters, :message, true)
|
16
|
-
@level = get_option(parameters, :level, true)
|
17
|
-
@logger = get_option(parameters, :logger, true)
|
18
|
-
@timestamp = set_option(parameters, :timestamp, Time.now, true)
|
19
|
-
|
20
|
-
@parameters = parameters
|
21
|
-
@parameters[:logger_name] = @logger.name
|
22
|
-
@parameters[:full_logger_name] = @logger.full_name
|
23
|
-
end
|
24
|
-
|
25
|
-
# Get the specified parameter.
|
26
|
-
#
|
27
|
-
# @param [Symbol] parameter the parameter to get.
|
28
|
-
#
|
29
|
-
# @return [Object] the parameter's value, or nil if the parameter did not exist.
|
30
|
-
def [](parameter)
|
31
|
-
@parameters[parameter]
|
32
|
-
end
|
33
|
-
|
34
|
-
end
|
35
|
-
|
1
|
+
#
|
2
|
+
# 21 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
module Log4Ruby
|
6
|
+
|
7
|
+
# Represents a log item.
|
8
|
+
class Log
|
9
|
+
|
10
|
+
attr_reader :parameters
|
11
|
+
|
12
|
+
# A hash containing all the information in this log.
|
13
|
+
# A message, level and logger are the only mandatory parameters.
|
14
|
+
def initialize(parameters = {})
|
15
|
+
@message = get_option(parameters, :message, true)
|
16
|
+
@level = get_option(parameters, :level, true)
|
17
|
+
@logger = get_option(parameters, :logger, true)
|
18
|
+
@timestamp = set_option(parameters, :timestamp, Time.now, true)
|
19
|
+
|
20
|
+
@parameters = parameters
|
21
|
+
@parameters[:logger_name] = @logger.name
|
22
|
+
@parameters[:full_logger_name] = @logger.full_name
|
23
|
+
end
|
24
|
+
|
25
|
+
# Get the specified parameter.
|
26
|
+
#
|
27
|
+
# @param [Symbol] parameter the parameter to get.
|
28
|
+
#
|
29
|
+
# @return [Object] the parameter's value, or nil if the parameter did not exist.
|
30
|
+
def [](parameter)
|
31
|
+
@parameters[parameter]
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
36
|
end
|
data/lib/log4ruby/logger.rb
CHANGED
@@ -1,127 +1,132 @@
|
|
1
|
-
#
|
2
|
-
# 22 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
require "singleton"
|
6
|
-
|
7
|
-
module Log4Ruby
|
8
|
-
|
9
|
-
# Represents a logger.
|
10
|
-
# Loggers are arranged into a tree, where each logger, after having dispatched the log to its appenders,
|
11
|
-
# forwards the log to its parents too.
|
12
|
-
class Logger
|
13
|
-
|
14
|
-
# The effective level of this logger. This will be the parent's effective level if a level has not been
|
15
|
-
# explicitly set for this logger.
|
16
|
-
attr_reader :effective_level
|
17
|
-
# The full name of this logger.
|
18
|
-
attr_reader :full_name
|
19
|
-
# The name of this logger.
|
20
|
-
attr_reader :name
|
21
|
-
# True to use parent appenders (the default) false to use only this logger's appenders.
|
22
|
-
attr_writer :use_parent_appenders
|
23
|
-
|
24
|
-
# Creates a new logger. Users should not use this method, and should use the Log4Ruby.get_logger method.
|
25
|
-
#
|
26
|
-
# @param [String] name the name for this logger.
|
27
|
-
# @param [Log4Ruby::Logger] parent the parent to this logger. If set to nil, becomes the child of the root logger.
|
28
|
-
# @param [Log4Ruby::Level] level the level of this logger. If set to nil, uses the parent's effective level
|
29
|
-
# (defaults to DEBUG for the root logger).
|
30
|
-
# @param [Array] appenders a list of appenders this logger will use.
|
31
|
-
def initialize(name, parent = nil, level = nil, appenders = [])
|
32
|
-
@name = name
|
33
|
-
@parent = parent.nil? ? RootLogger.instance : parent
|
34
|
-
@level = level
|
35
|
-
@appenders = appenders
|
36
|
-
@children = {}
|
37
|
-
|
38
|
-
@use_parent_appenders = true
|
39
|
-
@full_name = @parent.kind_of?(RootLogger) ? @name : @parent.full_name + "." + @name
|
40
|
-
@effective_level = level.nil? ? @parent.effective_level : level
|
41
|
-
end
|
42
|
-
|
43
|
-
# Adds an appender to this logger.
|
44
|
-
#
|
45
|
-
# @param [Log4Ruby::Appender] appender the appender to add.
|
46
|
-
def add_appender(appender)
|
47
|
-
@appenders << appender
|
48
|
-
end
|
49
|
-
|
50
|
-
# Gets a child logger with the specified name. If the create flag is true, it will create a new logger
|
51
|
-
# with this name.
|
52
|
-
#
|
53
|
-
# @param [String] name the name of the logger.
|
54
|
-
# @param [TrueClass, FalseClass] create if true, create a logger if it does not exist.
|
55
|
-
def get_logger(name, create = false)
|
56
|
-
if @children.has_key?(name)
|
57
|
-
@children[name]
|
58
|
-
elsif create
|
59
|
-
@children[name] = Logger.new(name, self)
|
60
|
-
else
|
61
|
-
raise Log4Ruby::LoggerNotFoundError.new("Logger '#{name}' does not exist under '#@full_name'!")
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
# Update this logger's level. This will update the effective level for all child loggers too (except for the ones
|
66
|
-
# that have had their level explicitly set.
|
67
|
-
#
|
68
|
-
# @param [Log4Ruby::Level] new_level the new level.
|
69
|
-
def set_level(new_level)
|
70
|
-
@level = new_level
|
71
|
-
@effective_level = new_level
|
72
|
-
@children.each_value { |logger| logger.update_effective_level(new_level) }
|
73
|
-
end
|
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
|
-
|
1
|
+
#
|
2
|
+
# 22 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
require "singleton"
|
6
|
+
|
7
|
+
module Log4Ruby
|
8
|
+
|
9
|
+
# Represents a logger.
|
10
|
+
# Loggers are arranged into a tree, where each logger, after having dispatched the log to its appenders,
|
11
|
+
# forwards the log to its parents too.
|
12
|
+
class Logger
|
13
|
+
|
14
|
+
# The effective level of this logger. This will be the parent's effective level if a level has not been
|
15
|
+
# explicitly set for this logger.
|
16
|
+
attr_reader :effective_level
|
17
|
+
# The full name of this logger.
|
18
|
+
attr_reader :full_name
|
19
|
+
# The name of this logger.
|
20
|
+
attr_reader :name
|
21
|
+
# True to use parent appenders (the default) false to use only this logger's appenders.
|
22
|
+
attr_writer :use_parent_appenders
|
23
|
+
|
24
|
+
# Creates a new logger. Users should not use this method, and should use the Log4Ruby.get_logger method.
|
25
|
+
#
|
26
|
+
# @param [String] name the name for this logger.
|
27
|
+
# @param [Log4Ruby::Logger] parent the parent to this logger. If set to nil, becomes the child of the root logger.
|
28
|
+
# @param [Log4Ruby::Level] level the level of this logger. If set to nil, uses the parent's effective level
|
29
|
+
# (defaults to DEBUG for the root logger).
|
30
|
+
# @param [Array] appenders a list of appenders this logger will use.
|
31
|
+
def initialize(name, parent = nil, level = nil, appenders = [])
|
32
|
+
@name = name
|
33
|
+
@parent = parent.nil? ? RootLogger.instance : parent
|
34
|
+
@level = level
|
35
|
+
@appenders = appenders
|
36
|
+
@children = {}
|
37
|
+
|
38
|
+
@use_parent_appenders = true
|
39
|
+
@full_name = @parent.kind_of?(RootLogger) ? @name : @parent.full_name + "." + @name
|
40
|
+
@effective_level = level.nil? ? @parent.effective_level : level
|
41
|
+
end
|
42
|
+
|
43
|
+
# Adds an appender to this logger.
|
44
|
+
#
|
45
|
+
# @param [Log4Ruby::Appender] appender the appender to add.
|
46
|
+
def add_appender(appender)
|
47
|
+
@appenders << appender
|
48
|
+
end
|
49
|
+
|
50
|
+
# Gets a child logger with the specified name. If the create flag is true, it will create a new logger
|
51
|
+
# with this name.
|
52
|
+
#
|
53
|
+
# @param [String] name the name of the logger.
|
54
|
+
# @param [TrueClass, FalseClass] create if true, create a logger if it does not exist.
|
55
|
+
def get_logger(name, create = false)
|
56
|
+
if @children.has_key?(name)
|
57
|
+
@children[name]
|
58
|
+
elsif create
|
59
|
+
@children[name] = Logger.new(name, self)
|
60
|
+
else
|
61
|
+
raise Log4Ruby::LoggerNotFoundError.new("Logger '#{name}' does not exist under '#@full_name'!")
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
# Update this logger's level. This will update the effective level for all child loggers too (except for the ones
|
66
|
+
# that have had their level explicitly set.
|
67
|
+
#
|
68
|
+
# @param [Log4Ruby::Level] new_level the new level.
|
69
|
+
def set_level(new_level)
|
70
|
+
@level = new_level
|
71
|
+
@effective_level = new_level
|
72
|
+
@children.each_value { |logger| logger.update_effective_level(new_level) }
|
73
|
+
end
|
74
|
+
|
75
|
+
# Returns the full name of the logger.
|
76
|
+
#
|
77
|
+
# @return [String] the full name of the logger.
|
78
|
+
def to_s
|
79
|
+
@full_name
|
80
|
+
end
|
81
|
+
|
82
|
+
protected
|
83
|
+
|
84
|
+
# Updates the effective level for this logger. This method is called internally when a logger's level is updated
|
85
|
+
# and should not be invoked directly.
|
86
|
+
#
|
87
|
+
# @param [Log4Ruby::Level] new_level the new effective level.
|
88
|
+
def update_effective_level(new_level)
|
89
|
+
if @level.nil?
|
90
|
+
@effective_level = new_level
|
91
|
+
@children.each_value { |logger| logger.update_effective_level(new_level) }
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
# Process the log message.
|
96
|
+
#
|
97
|
+
# @param [Log4Ruby::Log] log the log item to process. Does nothing if the log does not meet this logger's
|
98
|
+
# threshold level.
|
99
|
+
def process_log(log)
|
100
|
+
return if log[:level] < @effective_level
|
101
|
+
# Forward to each appender. Once done, send to the parent.
|
102
|
+
@appenders.each { |appender| appender.process_log(log) }
|
103
|
+
@parent.process_log(log) if @use_parent_appenders
|
104
|
+
end
|
105
|
+
|
106
|
+
end
|
107
|
+
|
108
|
+
# Represents the root logger. This logger is similar to any other logger, except since it does not have a parent
|
109
|
+
# logger, it does not forward logs.
|
110
|
+
class RootLogger < Logger
|
111
|
+
|
112
|
+
include Singleton
|
113
|
+
|
114
|
+
# New root logger. The root logger is the parent of all loggers in the system.
|
115
|
+
def initialize
|
116
|
+
@full_name = @name = "Root"
|
117
|
+
@parent = nil
|
118
|
+
@effective_level = @level = Log4Ruby::Level::DEBUG
|
119
|
+
@appenders = []
|
120
|
+
@children = {}
|
121
|
+
@use_parent_appenders = false
|
122
|
+
end
|
123
|
+
|
124
|
+
# Override to do nothing. Since the root doesn't have a parent.
|
125
|
+
#
|
126
|
+
# @param [Log4Ruby::Level] new_level ignored, since the root doesn't have a parent.
|
127
|
+
def use_parent_appenders=(new_level)
|
128
|
+
end
|
129
|
+
|
130
|
+
end
|
131
|
+
|
127
132
|
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
#
|
2
|
+
# 23 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
module Log4Ruby
|
6
|
+
|
7
|
+
class RollingFile
|
8
|
+
|
9
|
+
# New rolling file with the specified prefix.
|
10
|
+
#
|
11
|
+
# @param [String] prefix the prefix for all the files that will be created.
|
12
|
+
def initialize(prefix)
|
13
|
+
@prefix = prefix
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
|
18
|
+
class TimedRollingFile < RollingFile
|
19
|
+
|
20
|
+
# New timed rolling file that will roll over to a new file when the specified time expires.
|
21
|
+
def initialize(prefix, time_to_roll)
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
data/lib/log4ruby/version.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
2
|
-
# 21 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
module Log4Ruby
|
6
|
-
|
7
|
-
VERSION = "0.0.
|
8
|
-
|
1
|
+
#
|
2
|
+
# 21 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
module Log4Ruby
|
6
|
+
|
7
|
+
VERSION = "0.0.2"
|
8
|
+
|
9
9
|
end
|
data/lib/log4ruby.rb
CHANGED
@@ -1,36 +1,37 @@
|
|
1
|
-
#
|
2
|
-
# 21 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
require "
|
6
|
-
|
7
|
-
|
8
|
-
require "log4ruby/
|
9
|
-
require "log4ruby/
|
10
|
-
require "log4ruby/
|
11
|
-
require "log4ruby/
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
#
|
21
|
-
#
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
1
|
+
#
|
2
|
+
# 21 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
require "rubygems"
|
6
|
+
require "options_arg"
|
7
|
+
|
8
|
+
require "log4ruby/appender"
|
9
|
+
require "log4ruby/exceptions"
|
10
|
+
require "log4ruby/formatter"
|
11
|
+
require "log4ruby/log"
|
12
|
+
require "log4ruby/logger"
|
13
|
+
|
14
|
+
require "log4ruby/level"
|
15
|
+
|
16
|
+
module Log4Ruby
|
17
|
+
|
18
|
+
@@loggers = {}
|
19
|
+
|
20
|
+
# Get a logger with the specified name. The name can be a '.' separated string or a "::" separated string.
|
21
|
+
# Loggers are created only if required.
|
22
|
+
#
|
23
|
+
# @param [String] name the name of the logger to get.
|
24
|
+
#
|
25
|
+
# @return [Log4Ruby::Logger] the logger.
|
26
|
+
def self.get_logger(name)
|
27
|
+
# Return a logger if it had been created earlier.
|
28
|
+
return @@loggers[name] if @@loggers.has_key?(name)
|
29
|
+
# Otherwise, create it.
|
30
|
+
parts = name.index("::") ? name.split("::") : name.split(".")
|
31
|
+
logger = RootLogger.instance
|
32
|
+
parts.each { |part| logger = logger.get_logger(part, true) }
|
33
|
+
# The logger.
|
34
|
+
@@loggers[name] = logger
|
35
|
+
end
|
36
|
+
|
36
37
|
end
|
data/lib/tests.rb
CHANGED
@@ -1,38 +1,38 @@
|
|
1
|
-
#
|
2
|
-
# 22 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
$LOAD_PATH << "."
|
6
|
-
|
7
|
-
require "log4ruby"
|
8
|
-
require "log4ruby/appenders/stream_appender"
|
9
|
-
require "log4ruby/formatters/pattern_formatter"
|
10
|
-
|
11
|
-
# The pattern formatter, with a custom parameter formatter for the timestamp.
|
12
|
-
|
13
|
-
formatter
|
14
|
-
|
15
|
-
# Stream appender for printing to stdout.
|
16
|
-
console_appender = Log4Ruby::StreamAppender.new(Log4Ruby::Level::ALL, formatter, $stdout)
|
17
|
-
|
18
|
-
# Register a custom level FINER, that is between TRACE and FINE
|
19
|
-
Log4Ruby::Level.register("FINER", 150.0)
|
20
|
-
|
21
|
-
# The logger.
|
22
|
-
logger = Log4Ruby.get_logger("Log4Ruby::TestLogger")
|
23
|
-
logger.set_level(Log4Ruby::Level::FINER)
|
24
|
-
logger.add_appender(console_appender)
|
25
|
-
|
26
|
-
puts "Logger will print TRACE? : #{logger.trace?}"
|
27
|
-
puts "Logger will print FINER? : #{logger.finer?}"
|
28
|
-
puts "Logger will print FINE? : #{logger.fine?}"
|
29
|
-
|
30
|
-
logger.trace("Test!")
|
31
|
-
logger.finer("Test!")
|
32
|
-
logger.fine("Test!")
|
33
|
-
logger.debug("Test!")
|
34
|
-
logger.conf("Test!")
|
35
|
-
logger.info("Test!")
|
36
|
-
logger.warn("Test!")
|
37
|
-
logger.error("Test!")
|
38
|
-
logger.fatal("Test!")
|
1
|
+
#
|
2
|
+
# 22 Jul 2012
|
3
|
+
#
|
4
|
+
|
5
|
+
$LOAD_PATH << "."
|
6
|
+
|
7
|
+
require "log4ruby"
|
8
|
+
require "log4ruby/appenders/stream_appender"
|
9
|
+
require "log4ruby/formatters/pattern_formatter"
|
10
|
+
|
11
|
+
# The pattern formatter, with a custom parameter formatter for the timestamp.
|
12
|
+
formatter = Log4Ruby::PatternFormatter.new("[%s] %7s - %s : %s\n", [:timestamp, :level, :logger, :message])
|
13
|
+
formatter.add_parameter_formatter(:logger, Log4Ruby::ParameterFormatters.logger_formatter(1))
|
14
|
+
formatter.add_parameter_formatter(:timestamp, Log4Ruby::ParameterFormatters.timestamp_formatter("%Y-%m-%d %H:%M:%S.%L"))
|
15
|
+
# Stream appender for printing to stdout.
|
16
|
+
console_appender = Log4Ruby::StreamAppender.new(Log4Ruby::Level::ALL, formatter, $stdout)
|
17
|
+
|
18
|
+
# Register a custom level FINER, that is between TRACE and FINE
|
19
|
+
Log4Ruby::Level.register("FINER", 150.0)
|
20
|
+
|
21
|
+
# The logger.
|
22
|
+
logger = Log4Ruby.get_logger("Log4Ruby::TestLogger")
|
23
|
+
logger.set_level(Log4Ruby::Level::FINER)
|
24
|
+
logger.add_appender(console_appender)
|
25
|
+
|
26
|
+
puts "Logger will print TRACE? : #{logger.trace?}"
|
27
|
+
puts "Logger will print FINER? : #{logger.finer?}"
|
28
|
+
puts "Logger will print FINE? : #{logger.fine?}"
|
29
|
+
|
30
|
+
logger.trace("Test!")
|
31
|
+
logger.finer("Test!")
|
32
|
+
logger.fine("Test!")
|
33
|
+
logger.debug("Test!")
|
34
|
+
logger.conf("Test!")
|
35
|
+
logger.info("Test!")
|
36
|
+
logger.warn("Test!")
|
37
|
+
logger.error("Test!")
|
38
|
+
logger.fatal("Test!")
|
metadata
CHANGED
@@ -1,23 +1,48 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: log4ruby
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- Suraj Vijayakumar
|
9
14
|
autorequire:
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
|
-
|
13
|
-
|
17
|
+
|
18
|
+
date: 2012-07-24 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: options-arg
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 29
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
- 0
|
32
|
+
- 1
|
33
|
+
version: 0.0.1
|
34
|
+
type: :runtime
|
35
|
+
version_requirements: *id001
|
14
36
|
description: A logging system for Ruby applications inspired by Java's logging API.
|
15
|
-
email:
|
37
|
+
email:
|
16
38
|
- vijayakumar.suraj@gmail.com
|
17
39
|
executables: []
|
40
|
+
|
18
41
|
extensions: []
|
42
|
+
|
19
43
|
extra_rdoc_files: []
|
20
|
-
|
44
|
+
|
45
|
+
files:
|
21
46
|
- lib/log4ruby/appender.rb
|
22
47
|
- lib/log4ruby/appenders/nil_appender.rb
|
23
48
|
- lib/log4ruby/appenders/stream_appender.rb
|
@@ -27,32 +52,42 @@ files:
|
|
27
52
|
- lib/log4ruby/level.rb
|
28
53
|
- lib/log4ruby/log.rb
|
29
54
|
- lib/log4ruby/logger.rb
|
55
|
+
- lib/log4ruby/rolling_file.rb
|
30
56
|
- lib/log4ruby/version.rb
|
31
57
|
- lib/log4ruby.rb
|
32
|
-
- lib/options_arg.rb
|
33
58
|
- lib/tests.rb
|
34
59
|
homepage:
|
35
60
|
licenses: []
|
61
|
+
|
36
62
|
post_install_message:
|
37
63
|
rdoc_options: []
|
38
|
-
|
64
|
+
|
65
|
+
require_paths:
|
39
66
|
- lib
|
40
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
41
68
|
none: false
|
42
|
-
requirements:
|
43
|
-
- -
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
|
46
|
-
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
hash: 3
|
73
|
+
segments:
|
74
|
+
- 0
|
75
|
+
version: "0"
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
47
77
|
none: false
|
48
|
-
requirements:
|
49
|
-
- -
|
50
|
-
- !ruby/object:Gem::Version
|
51
|
-
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
hash: 3
|
82
|
+
segments:
|
83
|
+
- 0
|
84
|
+
version: "0"
|
52
85
|
requirements: []
|
86
|
+
|
53
87
|
rubyforge_project:
|
54
88
|
rubygems_version: 1.8.24
|
55
89
|
signing_key:
|
56
90
|
specification_version: 3
|
57
91
|
summary: A simple and customizable logging system inspired by Java logging API.
|
58
92
|
test_files: []
|
93
|
+
|
data/lib/options_arg.rb
DELETED
@@ -1,66 +0,0 @@
|
|
1
|
-
#
|
2
|
-
# 16 Jul 2012
|
3
|
-
#
|
4
|
-
|
5
|
-
# Provides a few methods to work with hashes.
|
6
|
-
module Kernel
|
7
|
-
|
8
|
-
# Raised if a required option has not been set.
|
9
|
-
class OptionNotSetError < Exception
|
10
|
-
end
|
11
|
-
|
12
|
-
private
|
13
|
-
|
14
|
-
# Get a value from the specified hash.
|
15
|
-
#
|
16
|
-
# @param [Hash] options the hash.
|
17
|
-
# @param [Symbol] key the key whose value is required.
|
18
|
-
# @param [TrueClass, FalseClass] required flag to indicate if it is an error if the key does not exist.
|
19
|
-
# @param [Object] default the default value if the key does not exist. Only used if 'required' is false.
|
20
|
-
#
|
21
|
-
# @return [Object] the value from the hash, or the default value.
|
22
|
-
def get_option(options, key, required = false, default = nil)
|
23
|
-
if options.has_key?(key)
|
24
|
-
options[key]
|
25
|
-
elsif required
|
26
|
-
raise OptionNotSetError.new("Option '#{key}' has not been set!")
|
27
|
-
else
|
28
|
-
default
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
# Pops (delete) a value from the specified hash.
|
33
|
-
#
|
34
|
-
# @param [Hash] options the hash.
|
35
|
-
# @param [Symbol] key the key whose value is required.
|
36
|
-
# @param [TrueClass, FalseClass] required flag to indicate if it is an error if the key does not exist.
|
37
|
-
# @param [Object] default the default value if the key does not exist. Only used if 'required' is false.
|
38
|
-
#
|
39
|
-
# @return [Object] the value from the hash, or the default value.
|
40
|
-
def pop_option(options, key, required = false, default = nil)
|
41
|
-
if options.has_key?(key)
|
42
|
-
options.delete(key)
|
43
|
-
elsif required
|
44
|
-
raise OptionNotSetError.new("Option '#{key}' has not been set!")
|
45
|
-
else
|
46
|
-
default
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
# Sets a value in the specified hash.
|
51
|
-
#
|
52
|
-
# @param [Hash] options the hash.
|
53
|
-
# @param [Symbol] key the key whose value is to be set.
|
54
|
-
# @param [Object] value the value to set.
|
55
|
-
# @param [TrueClass, FalseClass] overwrite flag to indicate if existing values should be overwritten.
|
56
|
-
#
|
57
|
-
# @return [Object] the value in the hash at the end of the operation.
|
58
|
-
def set_option(options, key, value, overwrite)
|
59
|
-
if not options.has_key?(key) or overwrite
|
60
|
-
options[key] = value
|
61
|
-
end
|
62
|
-
# Return whatever is in the hash now.
|
63
|
-
options[key]
|
64
|
-
end
|
65
|
-
|
66
|
-
end
|