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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
use std::ops::Add;
use super::chrono::{Datelike, NaiveDate, Duration};

use super::registry::Registry;
use super::holidays::*;

pub struct JPHoliday<'a> {
    registry: Registry<'a>
}

impl<'a> JPHoliday<'a> {
    pub fn new() -> Self {
        let mut reg = Registry::new();
        // BasicHoliday
        reg.register(NewYear {});
        reg.register(AdultDay {});
        reg.register(FoundationDay {});
        reg.register(EmperorsBirthday {});
        reg.register(VernalEquinoxDay {});
        reg.register(GreeneryDay {});
        reg.register(ShowaDay {});
        reg.register(ConstitutionMemorialDay {});
        reg.register(ChildrensDay {});
        reg.register(SeaDay {});
        reg.register(MountainDay {});
        reg.register(RespectForTheAgedDay {});
        reg.register(AutumnEquinoxDay {});
        reg.register(HealthAndSportsDay {});
        reg.register(SportsDay {});
        reg.register(CultureDay {});
        reg.register(LaborThanksgivingDay {});
        reg.register(ExtraHolidays {});

        // OtherHoliday
        let basic_holiday_registry = reg.clone();
        reg.register(TransferHoliday { registry: basic_holiday_registry.clone()});
        reg.register(NationalHoliday { registry: basic_holiday_registry.clone()});

        return JPHoliday {
            registry: reg
        };
    }

    /// # 指定日が祝日か判定
    /// ```rust
    /// use jpholiday::jpholiday::JPHoliday;
    /// use jpholiday::chrono::{NaiveDate};
    /// use std::borrow::Borrow;
    ///
    /// let jpholiday = JPHoliday::new();
    ///
    /// assert_eq!(
    ///     jpholiday.is_holiday(NaiveDate::from_ymd(2017, 1, 1).borrow()),
    ///     true
    /// );
    ///
    /// assert_eq!(
    ///     jpholiday.is_holiday(NaiveDate::from_ymd(2017, 1, 2).borrow()),
    ///     true
    /// );
    ///
    /// assert_eq!(
    ///     jpholiday.is_holiday(NaiveDate::from_ymd(2017, 1, 3).borrow()),
    ///     false
    /// );
    /// ```
    pub fn is_holiday(&self, date: &NaiveDate) -> bool {
        for holiday in self.registry.get_registry() {
            if holiday.is_holiday(&date) {
                return true;
            }
        }

        return false;
    }

    /// # 指定日の祝日名を取得
    /// ```
    /// use jpholiday::jpholiday::JPHoliday;
    /// use jpholiday::chrono::{NaiveDate};
    /// use std::borrow::Borrow;
    ///
    /// let jpholiday = JPHoliday::new();
    ///
    /// assert_eq!(
    ///     jpholiday.is_holiday_name(NaiveDate::from_ymd(2017, 1, 1).borrow()).unwrap(),
    ///     "元日".to_string()
    /// );
    ///
    /// assert_eq!(
    ///     jpholiday.is_holiday_name(NaiveDate::from_ymd(2017, 1, 2).borrow()).unwrap(),
    ///     "元日 振替休日".to_string()
    /// );
    ///
    /// assert_eq!(
    ///     jpholiday.is_holiday_name(NaiveDate::from_ymd(2017, 1, 3).borrow()),
    ///     None
    /// );
    /// ```
    pub fn is_holiday_name(&self, date: &NaiveDate) -> Option<String> {
        for holiday in self.registry.get_registry() {
            if holiday.is_holiday(&date) {
                return Some(holiday.is_holiday_name(&date).unwrap());
            }
        }

        return None;
    }

    /// # 指定範囲の祝日を取得
    /// ```rust
    /// use jpholiday::jpholiday::JPHoliday;
    /// use jpholiday::chrono::{NaiveDate};
    /// use std::borrow::Borrow;
    ///
    /// let jpholiday = JPHoliday::new();
    ///
    /// assert_eq!(
    ///     jpholiday.between(NaiveDate::from_ymd(2017, 1, 1).borrow(), NaiveDate::from_ymd(2017, 5, 3).borrow()),
    ///     vec![
    ///         (NaiveDate::from_ymd(2017, 1, 1), "元日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 1, 2), "元日 振替休日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 1, 9), "成人の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 2, 11), "建国記念の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 3, 20), "春分の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 4, 29), "昭和の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 5, 3), "憲法記念日".to_string())
    ///     ]
    /// );
    /// ```
    pub fn between(&self, start_date: &NaiveDate, end_date: &NaiveDate) -> Vec<(NaiveDate, String)> {
        let mut date: NaiveDate = start_date.clone();
        let mut result: Vec<(NaiveDate, String)> = Vec::new();

        loop {
            if self.is_holiday(&date) {
                result.push((date.clone(), self.is_holiday_name(&date).unwrap()));
            }
            if &date == end_date {
                break;
            }

            date = date.add(Duration::days(1));
        }

        return result;
    }

    /// # 指定年の祝日を取得
    /// ```rust
    /// use jpholiday::jpholiday::JPHoliday;
    /// use jpholiday::chrono::{NaiveDate};
    /// use std::borrow::Borrow;
    ///
    /// let jpholiday = JPHoliday::new();
    ///
    /// assert_eq!(
    ///     jpholiday.year_holidays(2017),
    ///     vec![
    ///         (NaiveDate::from_ymd(2017, 1, 1), "元日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 1, 2), "元日 振替休日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 1, 9), "成人の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 2, 11), "建国記念の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 3, 20), "春分の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 4, 29), "昭和の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 5, 3), "憲法記念日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 5, 4), "みどりの日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 5, 5), "こどもの日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 7, 17), "海の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 8, 11), "山の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 9, 18), "敬老の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 9, 23), "秋分の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 10, 9), "体育の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 11, 3), "文化の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 11, 23), "勤労感謝の日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 12, 23), "天皇誕生日".to_string())
    ///     ]
    /// );
    /// ```
    pub fn year_holidays(&self, year: i32) -> Vec<(NaiveDate, String)> {
        let mut date: NaiveDate = NaiveDate::from_ymd(year.clone(), 1, 1);
        let mut result: Vec<(NaiveDate, String)> = Vec::new();

        loop {
            if self.is_holiday(&date) {
                result.push((date.clone(), self.is_holiday_name(&date).unwrap()));
            }

            date = date.add(Duration::days(1));

            if &date.year() != &year {
                break;
            }

        }

        return result;
    }

    /// # 指定月の祝日を取得
    /// ```rust
    /// use jpholiday::jpholiday::JPHoliday;
    /// use jpholiday::chrono::{NaiveDate};
    /// use std::borrow::Borrow;
    ///
    /// let jpholiday = JPHoliday::new();
    ///
    /// assert_eq!(
    ///     jpholiday.month_holidays(2017, 5),
    ///     vec![
    ///         (NaiveDate::from_ymd(2017, 5, 3), "憲法記念日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 5, 4), "みどりの日".to_string()),
    ///         (NaiveDate::from_ymd(2017, 5, 5), "こどもの日".to_string())
    ///     ]
    /// );
    /// ```
    pub fn month_holidays(&self, year: i32, month: u32) -> Vec<(NaiveDate, String)> {
        let mut date: NaiveDate = NaiveDate::from_ymd(year.clone(), month.clone(), 1);
        let mut result: Vec<(NaiveDate, String)> = Vec::new();

        loop {
            if self.is_holiday(&date) {
                result.push((date.clone(), self.is_holiday_name(&date).unwrap()));
            }

            date = date.add(Duration::days(1));

            if &date.month() != &month {
                break;
            }
        }

        return result;
    }
}