1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
require "cabin/mixins/logger"
require "cabin/mixins/pipe"
require "cabin/mixins/timestamp"
require "cabin/mixins/timer"
require "cabin/mixins/terminal"
require "cabin/namespace"
require "cabin/context"
require "cabin/outputs/stdlib-logger"
require "cabin/outputs/io"
require "cabin/subscriber"
require "cabin/metrics"
require "thread"
# A wonderful channel for logging.
#
# You can log normal messages through here, but you should be really
# shipping structured data. A message is just part of your data.
# "An error occurred" - in what? when? why? how?
#
# Logging channels support the usual 'info' 'warn' and other logger methods
# provided by Ruby's stdlib Logger class
#
# It additionally allows you to store arbitrary pieces of data in it like a
# hash, so your call stack can do be this:
#
# @logger = Cabin::Channel.new
# rubylog = Logger.new(STDOUT) # ruby's stlib logger
# @logger.subscribe(rubylog)
#
# def foo(val)
# context = @logger.context()
# context[:foo] = val
# context[:example] = 100
# bar()
#
# # Clear any context we just wanted bar() to know about
# context.clear()
#
# @logger.info("Done in foo")
# end
#
# def bar
# @logger.info("Fizzle")
# end
#
# The result:
#
# I, [2011-10-11T01:00:57.993200 #1209] INFO -- : {:timestamp=>"2011-10-11T01:00:57.992353-0700", :foo=>"Hello", :example=>100, :message=>"Fizzle", :level=>:info}
# I, [2011-10-11T01:00:57.993575 #1209] INFO -- : {:timestamp=>"2011-10-11T01:00:57.993517-0700", :message=>"Done in foo", :level=>:info}
#
class Cabin::Channel
@channel_lock = Mutex.new
@channels = Hash.new { |h,k| h[k] = Cabin::Channel.new }
class << self
# Get a channel for a given identifier. If this identifier has never been
# used, a new channel is created for it.
# The default identifier is the application executable name.
#
# This is useful for using the same Cabin::Channel across your
# entire application.
def get(identifier=$0)
return @channel_lock.synchronize { @channels[identifier] }
end # def Cabin::Channel.get
def set(identifier, channel)
return @channel_lock.synchronize { @channels[identifier] = channel }
end # def Cabin::Channel.set
def each(&block)
@channel_lock.synchronize do
@channels.each do |identifier, channel|
yield identifier, channel
end
end
end # def Cabin::Channel.each
# Get a list of actions included in this class.
def actions
@actions ||= []
end # def Cabin::Channel.actions
alias_method(:filters, :actions) # DEPRECATED
# Register a new action. The block is passed the event. It is expected to
# modify that event or otherwise do nothing.
def action(&block)
actions << block
end
alias_method(:filter, :action) # DEPRECATED
# Get a list of conditions included in this class.
def conditions
@conditions ||= []
end
# Register a new condition. The block must expect an event and a subscription.
# It is expected to either return true (allow the event) or false (reject it).
def condition(&block)
conditions << block
end
# Decide to publish the event based on conditions and subscription options
def allow_event?(event, subscription)
conditions.all? { |condition| condition.call(event, subscription) }
end
end # class << self
include Cabin::Mixins::Timestamp
include Cabin::Mixins::Logger
include Cabin::Mixins::Pipe
include Cabin::Mixins::Timer
include Cabin::Mixins::Terminal
# All channels come with a metrics provider.
attr_accessor :metrics
private
# Create a new logging channel.
# The default log level is 'info'
def initialize
@subscribers = {}
@data = {}
@level = :info
@metrics = Cabin::Metrics.new
@metrics.channel = self
@subscriber_lock = Mutex.new
end # def initialize
# Subscribe a new input
# New events will be sent to the subscriber using the '<<' method
# foo << event
#
# Returns a subscription id you can use later to unsubscribe
def subscribe(output, options = {})
# Wrap ruby stdlib Logger if given.
if Kernel.const_defined?(:Logger) && output.is_a?(::Logger)
output = Cabin::Outputs::StdlibLogger.new(output)
elsif output.is_a?(::IO)
output = Cabin::Outputs::IO.new(output)
end
@subscriber_lock.synchronize do
@subscribers[output.object_id] = Cabin::Subscriber.new(output, options)
end
return output.object_id
end # def subscribe
# Unsubscribe. Takes a 'subscription id' as returned by the subscribe method
def unsubscribe(id)
@subscriber_lock.synchronize do
@subscribers.delete(id)
end
end # def unsubscribe
# Set some contextual map value
def []=(key, value)
@data[key] = value
end # def []=
# Get a context value by name.
def [](key)
@data[key]
end # def []
# Remove a context value by name.
def remove(key)
@data.delete(key)
end # def remove
# Publish data to all outputs. The data is expected to be a hash or a string.
#
# A new hash is generated based on the data given. If data is a string, then
# it will be added to the new event hash with key :message.
#
# A special key :timestamp is set at the time of this method call. The value
# is a string ISO8601 timestamp with microsecond precision.
def publish(data, &block)
event = {}
self.class.actions.each do |action|
action.call(event)
end
if data.is_a?(String)
event[:message] = data
else
event.merge!(data)
end
event.merge!(@data) # Merge any logger context
@subscriber_lock.synchronize do
@subscribers.each do |_, subscriber|
append = block_given? ? block.call(subscriber, event) : true
if append && self.class.allow_event?(event, subscriber)
subscriber << event
end
end
end
end # def publish
def context
ctx = Cabin::Context.new(self)
return ctx
end # def context
def dataify(data)
if data.is_a?(String)
data = { :message => data }
end
return data
end # def dataify
public(:initialize, :context, :subscribe, :unsubscribe, :[]=, :[], :remove, :publish, :time, :context)
end # class Cabin::Channel
|