Sha256: 3ce06a88e05940b75bb41b06643ddf9ab7d24a9de67b0753587c3fce2696986d

Contents?: true

Size: 1 KB

Versions: 2

Compression:

Stored size: 1 KB

Contents

#          Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
# All files in this distribution are subject to the terms of the Ruby license.

require 'set'

module Ramaze

  # Bundles different informer instances and sends incoming messages to each.
  # This is the default with Informer as only member.

  class LogHub
    include Informing

    attr_accessor :loggers
    attr_accessor :ignored_tags

    # Takes a list of instances or classes (which will be initialized) and that
    # are added to @loggers. All messages are then sent to each member.

    def initialize(*loggers)
      @loggers = loggers
      @ignored_tags = Set.new
      @loggers.map! do |logger|
        next(nil) if logger == self
        logger.is_a?(Class) ? logger.new : logger
      end
      @loggers.uniq!
      @loggers.compact!
    end

    # integration to Informing

    def inform(tag, *args)
      return if @ignored_tags.include?(tag)
      @loggers.each do |logger|
        logger.inform(tag, *args)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ramaze-0.3.0 lib/ramaze/inform/hub.rb
ramaze-0.3.5 lib/ramaze/inform/hub.rb