Sha256: fd286f1ad9d3ba3311f7199ce4c99977ee6510283b6210fdcfe19a8777b7d522

Contents?: true

Size: 1.64 KB

Versions: 13

Compression:

Stored size: 1.64 KB

Contents

#
# PerfectQueue
#
# Copyright (C) 2012-2013 Sadayuki Furuhashi
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#        http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.
#

module PerfectQueue

  class DaemonsLogger < Logger
    def initialize(dev, shift_age=0, shift_size=1048576)
      @stdout_hook = false
      @stderr_hook = false
      if dev.is_a?(String)
        @path = dev
        @io = File.open(@path, File::WRONLY|File::APPEND|File::CREAT)
      else
        @io = dev
      end
      super(@io, shift_size, shift_size)
    end

    def hook_stdout!
      return nil if @io == STDOUT
      STDOUT.reopen(@io)
      @stdout_hook = true
      self
    end

    def hook_stderr!
      STDERR.reopen(@io)
      @stderr_hook = true
      self
    end

    def reopen!
      if @path
        @io.reopen(@path)
        if @stdout_hook
          STDOUT.reopen(@io)
        end
        if @stderr_hook
          STDERR.reopen(@io)
        end
      end
      nil
    end

    def reopen
      begin
        reopen!
        return true
      rescue
        # TODO log?
        return false
      end
    end

    def close
      if @path
        @io.close unless @io.closed?
      end
      nil
    end
  end

end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
perfectqueue-0.8.54 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.10.1 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.8.53 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.8.52 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.10.0 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.8.51 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.8.50 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.9.2 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.9.1 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.9.0 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.8.49 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.8.48 lib/perfectqueue/daemons_logger.rb
perfectqueue-0.8.47 lib/perfectqueue/daemons_logger.rb