File: by_day_incrementer.rb

package info (click to toggle)
mhc 1.2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,424 kB
  • sloc: ruby: 12,718; lisp: 7,570; makefile: 70; sh: 68
file content (86 lines) | stat: -rw-r--r-- 3,344 bytes parent folder | download | duplicates (4)
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
module RiCal
  class PropertyValue
    class RecurrenceRule < PropertyValue
      #- ©2009 Rick DeNatale, All rights reserved. Refer to the file README.txt for the license
      #
      class OccurrenceIncrementer # :nodoc:
        class ByDayIncrementer < ListIncrementer #:nodoc:

          def initialize(rrule, list, by_monthday_list, by_yearday_list, parent)
            super(rrule, list, parent)
            @monthday_filters = by_monthday_list
            @yearday_filters = by_yearday_list
            @by_day_scope = rrule.by_day_scope

            case rrule.by_day_scope
            when :yearly
              @cycle_advance_proc = lambda {|date_time| first_day_of_year(advance_year(date_time))}
              @current_proc = lambda {|date_time| same_year?(current, date_time)}
              @first_day_proc = lambda {|date_time| first_day_of_year(date_time)}
            when :monthly
              @cycle_advance_proc = lambda {|date_time| first_day_of_month(advance_month(date_time))}
              @current_proc = lambda {|date_time| same_month?(current, date_time)}
              @first_day_proc = lambda {|date_time| first_day_of_month(date_time)}
            when :weekly
              @cycle_advance_proc = lambda {|date_time| first_day_of_week(rrule.wkst_day, advance_week(date_time))}
              @current_proc = lambda {|date_time| same_week?(rrule.wkst_day, current, date_time)}
              @first_day_proc = lambda {|date_time| first_day_of_week(rrule.wkst_day, date_time)}
            else
              raise "Invalid recurrence rule, byday needs to be scoped by month, week or year"
            end
          end

          def self.for_rrule(rrule)
            list = rrule.by_rule_list(:byday)
            if list
              sub_cycle_incrementer = OccurrenceIncrementer::DailyIncrementer.for_rrule(rrule)
              new(rrule, list, rrule.by_rule_list(:bymonthday), rrule.by_rule_list(:byyearday), sub_cycle_incrementer)
            else
              OccurrenceIncrementer::ByYeardayIncrementer.for_rrule(rrule)
            end
          end
          
          def unneeded?(candidate)
            false
          end

          def daily_incrementer?
            true
          end

          def start_of_cycle(date_time)
            @first_day_proc.call(date_time)
          end

          def occurrences_for(date_time)
            first_day = start_of_cycle(date_time)
            result = list.map {|recurring_day| recurring_day.matches_for(first_day)}.flatten.uniq.sort
            if @monthday_filters
              result = result.select {|occurrence| @monthday_filters.any? {|recurring_day| recurring_day.include?(occurrence)}}
            end
            if @yearday_filters
              result = result.select {|occurrence| @yearday_filters.any? {|recurring_day| recurring_day.include?(occurrence)}}
            end
            result
          end

          def candidate_acceptable?(candidate)
            list.any? {|recurring_day| recurring_day.include?(candidate)}
          end

          def varying_time_attribute
            :day
          end

          def advance_cycle(date_time)
            @cycle_advance_proc.call(date_time)
          end

          def end_of_occurrence(date_time)
            date_time.end_of_day
          end
        end
      end
    end
  end
end