Class: Yell::Event

Inherits:
Object
  • Object
show all
Defined in:
lib/yell/event.rb

Overview

Yell::Event.new( :info, ‘Hello World’, { :scope => ‘Application’ } ) #=> Hello World scope: Application

Constant Summary collapse

CallerRegexp =

regex to fetch caller attributes

/^(.+?):(\d+)(?::in `(.+)')?/
CallerIndex =

jruby and rubinius seem to have a different caller

defined?(RUBY_ENGINE) && ["rbx", "jruby"].include?(RUBY_ENGINE) ? 1 : 2
@@hostname =

Prefetch those values (no need to do that on every new instance)

Socket.gethostname rescue nil
@@progname =
$0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(level, *messages, &block) ⇒ Event

Returns a new instance of Event.



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/yell/event.rb', line 38

def initialize( level, *messages, &block )
  @pid      = Process.pid
  @time     = Time.now
  @level    = level

  @messages = messages
  @messages << block.call if block

  @thread_id  = Thread.current.object_id

  @caller = caller[CallerIndex].to_s
  @file   = nil
  @line   = nil
  @method = nil
end

Instance Attribute Details

#levelObject (readonly)

Accessor to the log level



26
27
28
# File 'lib/yell/event.rb', line 26

def level
  @level
end

#messagesObject (readonly)

Accessor to the log messages



29
30
31
# File 'lib/yell/event.rb', line 29

def messages
  @messages
end

#pidObject (readonly)

Accessor to the pid



23
24
25
# File 'lib/yell/event.rb', line 23

def pid
  @pid
end

#thread_idObject (readonly)

Accessor to the current tread_id



35
36
37
# File 'lib/yell/event.rb', line 35

def thread_id
  @thread_id
end

#timeObject (readonly)

Accessor to the time the log event occured



32
33
34
# File 'lib/yell/event.rb', line 32

def time
  @time
end

Instance Method Details

#fileObject

Accessor to filename the log event occured



65
66
67
68
# File 'lib/yell/event.rb', line 65

def file
  _caller! if @file.nil?
  @file
end

#hostnameObject

Accessor to the hostname



55
56
57
# File 'lib/yell/event.rb', line 55

def hostname
  @@hostname
end

#lineObject

Accessor to the line the log event occured



71
72
73
74
# File 'lib/yell/event.rb', line 71

def line
  _caller! if @line.nil?
  @line
end

#methodObject

Accessor to the method the log event occured



77
78
79
80
# File 'lib/yell/event.rb', line 77

def method
  _caller! if @method.nil?
  @method
end

#prognameObject

Accessor to the progname



60
61
62
# File 'lib/yell/event.rb', line 60

def progname
  @@progname
end