Class: LogStats::WorkLog
- Inherits:
-
TailFromSentinel::Base
- Object
- TailFromSentinel::Base
- LogStats::WorkLog
- Defined in:
- lib/logstats/worklog.rb
Constant Summary collapse
- DATE_SENTINEL_REGEX =
/(\d+)([A-Z]+)(\d{4})?$/i- WORKLOG_RECORD_REGEX =
/(\d{2})(\d{2}) (.*) (\d{2})(\d{2})$/i- OPEN_WORKLOG_RECORD_REGEX =
/(\d{2})(\d{2}) (.*)$/i- DATE_SENTINEL_PROC =
Proc.new do |line| if line =~ DATE_SENTINEL_REGEX then # It's a date marker - parse it to see whether it's close enough to when we want day,month,year=self.parse_sentinel($1, $2, $3) (month.downcase == self.now.strftime('%b').downcase) && (year.to_i == self.now.year) end end
Class Method Summary collapse
- .last_seen_year ⇒ Object
- .last_seen_year=(year) ⇒ Object
- .now ⇒ Object
- .parse_sentinel(d, m, y) ⇒ Object
Instance Method Summary collapse
- #compile_day_data(days) ⇒ Object
-
#initialize(filename) ⇒ WorkLog
constructor
A new instance of WorkLog.
- #parse_worklog_record(current_time, sh, sm, msg, eh = nil, em = nil) ⇒ Object
-
#stats ⇒ Object
TODO: Document this.
- #time_to_date(time) ⇒ Object
Constructor Details
#initialize(filename) ⇒ WorkLog
Returns a new instance of WorkLog.
38 39 40 41 42 |
# File 'lib/logstats/worklog.rb', line 38 def initialize(filename) @last_seen_year=nil @stas=nil super(File.open(filename, 'r'), &DATE_SENTINEL_PROC) end |
Class Method Details
.last_seen_year ⇒ Object
24 25 26 |
# File 'lib/logstats/worklog.rb', line 24 def self.last_seen_year @@last_seen_year end |
.last_seen_year=(year) ⇒ Object
28 29 30 |
# File 'lib/logstats/worklog.rb', line 28 def self.last_seen_year=(year) @@last_seen_year=year end |
.now ⇒ Object
20 21 22 |
# File 'lib/logstats/worklog.rb', line 20 def self.now @@now ||= Time.now end |
.parse_sentinel(d, m, y) ⇒ Object
32 33 34 35 36 |
# File 'lib/logstats/worklog.rb', line 32 def self.parse_sentinel(d,m,y) year=y || self.last_seen_year self.last_seen_year=year [ d, m, year ] end |
Instance Method Details
#compile_day_data(days) ⇒ Object
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 |
# File 'lib/logstats/worklog.rb', line 100 def compile_day_data(days) stats={ :current => days[:current], :today => { :total => 0, :projects => { } }, :week => { :total => 0, :average => 0, :projects => { } }, :month => { :total => 0, :average => 0, :days_logged => 0, :projects => { } } } now=WorkLog.now today=Date.today days.each do |time, data| next if time == :current # It's data for today - use it stats[:today]=data if time.day == now.day if time_to_date(time).cweek == today.cweek then stats[:week][:total] += data[:total] stats[:week][:average] = (stats[:week][:total] / time_to_date(time).wday.to_f) data[:projects].each do |project, duration| stats[:week][:projects][project] ||= 0 stats[:week][:projects][project] += duration end end # Everything is included in this month stats[:month][:total] += data[:total] stats[:month][:days_logged] += 1 stats[:month][:average] = (stats[:month][:total] / stats[:month][:days_logged]) data[:projects].each do |project, duration| stats[:month][:projects][project] ||= 0 stats[:month][:projects][project] += duration end end stats[:today][:total] += days[:current] unless days[:current].nil? #stats[:today][:projects]['WIP'] = days[:current] return stats end |
#parse_worklog_record(current_time, sh, sm, msg, eh = nil, em = nil) ⇒ Object
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/logstats/worklog.rb', line 81 def parse_worklog_record(current_time, sh,sm,msg,eh=nil,em=nil) start_time=current_time + (sh.to_i * 3600) + (sm.to_i * 60) if eh && em then end_time=current_time + (eh.to_i * 3600) + (em.to_i * 60) end_time += (24 * 3600) if end_time < start_time else end_time=Time.now end duration=end_time - start_time if msg.match(/^([A-Z0-9]{3})/) then project=$1 else project='MISC' end [ duration, project ] end |
#stats ⇒ Object
TODO: Document this
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 |
# File 'lib/logstats/worklog.rb', line 45 def stats return @stats unless @stats.nil? days={} now=WorkLog.now current_time=nil data.each do |line| line=line.strip case line when DATE_SENTINEL_REGEX # It's a date marker - set current_time current_time=Time.parse(WorkLog.parse_sentinel($1,$2,$3).reverse.join('-')) days[current_time]={ :total => 0, :projects => {} } when WORKLOG_RECORD_REGEX # It's a worklog record - parse it, and add it to the relevant buckets duration, project=parse_worklog_record(current_time, $1, $2, $3, $4, $5) days[current_time][:total] += duration days[current_time][:projects][project] ||= 0 days[current_time][:projects][project] += duration when OPEN_WORKLOG_RECORD_REGEX duration, project=parse_worklog_record(current_time, $1, $2, $3) days[:current]=duration when /^\s*$/ # Blank line - ignore else puts "Warning: Unknown format of \"#{line}\"" end end @stats=compile_day_data(days) end |
#time_to_date(time) ⇒ Object
150 151 152 |
# File 'lib/logstats/worklog.rb', line 150 def time_to_date(time) Date.new(time.year, time.month, time.day) end |