Class: Fugit::Cron::TimeCursor
- Inherits:
-
Object
- Object
- Fugit::Cron::TimeCursor
- Defined in:
- lib/fugit/cron.rb
Instance Method Summary collapse
- #dec(i) ⇒ Object
- #dec_day ⇒ Object
- #dec_hour ⇒ Object
- #dec_min ⇒ Object
- #dec_month ⇒ Object
- #dec_sec ⇒ Object
- #inc(i) ⇒ Object
- #inc_day ⇒ Object
- #inc_hour ⇒ Object
- #inc_min ⇒ Object
- #inc_month ⇒ Object
- #inc_sec ⇒ Object
-
#initialize(cron, t) ⇒ TimeCursor
constructor
A new instance of TimeCursor.
- #time ⇒ Object
- #to_i ⇒ Object
- #to_t ⇒ Object
Constructor Details
#initialize(cron, t) ⇒ TimeCursor
Returns a new instance of TimeCursor.
81 82 83 84 85 |
# File 'lib/fugit/cron.rb', line 81 def initialize(cron, t) @cron = cron @t = t.is_a?(TimeCursor) ? t.time : t @t.seconds = @t.seconds.to_i end |
Instance Method Details
#dec(i) ⇒ Object
96 |
# File 'lib/fugit/cron.rb', line 96 def dec(i); inc(-i); end |
#dec_day ⇒ Object
145 146 147 |
# File 'lib/fugit/cron.rb', line 145 def dec_day dec(@t.hour * 3600 + @t.min * 60 + @t.sec + 1) end |
#dec_hour ⇒ Object
148 149 150 |
# File 'lib/fugit/cron.rb', line 148 def dec_hour dec(@t.min * 60 + @t.sec + 1) end |
#dec_min ⇒ Object
151 152 153 |
# File 'lib/fugit/cron.rb', line 151 def dec_min dec(@t.sec + 1) end |
#dec_month ⇒ Object
141 142 143 |
# File 'lib/fugit/cron.rb', line 141 def dec_month dec((@t.day - 1) * DAY_S + @t.hour * 3600 + @t.min * 60 + @t.sec + 1) end |
#dec_sec ⇒ Object
155 156 157 158 159 160 |
# File 'lib/fugit/cron.rb', line 155 def dec_sec target = @cron.seconds.reverse.find { |s| s < @t.sec } || @cron.seconds.last inc(target - @t.sec - (@t.sec > target ? 0 : 60)) end |
#inc(i) ⇒ Object
95 |
# File 'lib/fugit/cron.rb', line 95 def inc(i); @t = @t + i; self; end |
#inc_day ⇒ Object
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/fugit/cron.rb', line 109 def inc_day inc((24 - @t.hour) * 3600 - @t.min * 60 - @t.sec) return if @t.hour == 0 if @t.hour < 12 begin @t = ::EtOrbi.make(@t.year, @t.month, @t.day, @t.zone) rescue ::TZInfo::PeriodNotFound inc((24 - @t.hour) * 3600) end else inc((24 - @t.hour) * 3600) end end |
#inc_hour ⇒ Object
126 127 128 |
# File 'lib/fugit/cron.rb', line 126 def inc_hour inc((60 - @t.min) * 60 - @t.sec) end |
#inc_min ⇒ Object
129 130 131 |
# File 'lib/fugit/cron.rb', line 129 def inc_min inc(60 - @t.sec) end |
#inc_month ⇒ Object
98 99 100 101 102 103 104 105 106 107 |
# File 'lib/fugit/cron.rb', line 98 def inc_month y = @t.year m = @t.month + 1 if m == 13; m = 1; y += 1; end @t = ::EtOrbi.make(y, m, @t.zone) self end |
#inc_sec ⇒ Object
133 134 135 136 137 138 139 |
# File 'lib/fugit/cron.rb', line 133 def inc_sec if sec = @cron.seconds.find { |s| s > @t.sec } inc(sec - @t.sec) else inc(60 - @t.sec + @cron.seconds.first) end end |
#time ⇒ Object
87 |
# File 'lib/fugit/cron.rb', line 87 def time; @t; end |
#to_i ⇒ Object
90 |
# File 'lib/fugit/cron.rb', line 90 def to_i; @t.to_i; end |
#to_t ⇒ Object
88 |
# File 'lib/fugit/cron.rb', line 88 def to_t; @t; end |