Class: Logging::Appenders::RollingFile::NumberedRoller
- Inherits:
-
Object
- Object
- Logging::Appenders::RollingFile::NumberedRoller
- Defined in:
- lib/logging/appenders/rolling_file.rb
Overview
:stopdoc:
Instance Attribute Summary collapse
-
#roll ⇒ Object
Returns the value of attribute roll.
Instance Method Summary collapse
-
#initialize(fn, opts) ⇒ NumberedRoller
constructor
A new instance of NumberedRoller.
- #roll_files ⇒ Object
Constructor Details
#initialize(fn, opts) ⇒ NumberedRoller
Returns a new instance of NumberedRoller.
239 240 241 242 243 244 245 246 247 248 249 |
# File 'lib/logging/appenders/rolling_file.rb', line 239 def initialize( fn, opts ) # grab the information we need to properly roll files ext = ::File.extname(fn) bn = ::File.join(::File.dirname(fn), ::File.basename(fn, ext)) @rgxp = %r/\.(\d+)#{Regexp.escape(ext)}\z/ @glob = "#{bn}.*#{ext}" @logname_fmt = "#{bn}.%d#{ext}" @fn_copy = fn + '._copy_' @keep = opts.getopt(:keep, :as => Integer) @roll = false end |
Instance Attribute Details
#roll ⇒ Object
Returns the value of attribute roll.
237 238 239 |
# File 'lib/logging/appenders/rolling_file.rb', line 237 def roll @roll end |
Instance Method Details
#roll_files ⇒ Object
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 |
# File 'lib/logging/appenders/rolling_file.rb', line 251 def roll_files return unless @roll and ::File.exist?(@fn_copy) files = Dir.glob(@glob).find_all {|fn| @rgxp =~ fn} unless files.empty? # sort the files in revese order based on their count number files = files.sort do |a,b| a = Integer(@rgxp.match(a)[1]) b = Integer(@rgxp.match(b)[1]) b <=> a end # for each file, roll its count number one higher files.each do |fn| cnt = Integer(@rgxp.match(fn)[1]) if @keep and cnt >= @keep ::File.delete fn next end ::File.rename fn, sprintf(@logname_fmt, cnt+1) end end # finally reanme the copied log file ::File.rename(@fn_copy, sprintf(@logname_fmt, 1)) ensure @roll = false end |