jp-holidays-lib 1.0.0

Japanese holiday library for working with public holiday data in Rust.
Documentation
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
use chrono::{Datelike, NaiveDate};

/// `jp_holidays_lib::client::Client::init()` にて初期化を行います。
///
/// ### 関連関数
///
/// - `init()`: クライアントを初期化します。
///
/// ### メソッド
///
/// - `get_holiday()`: `chrono::NaiveDate` を渡して祝日を取得します。
/// - `get_holiday_ymd()`: 年月日を渡して祝日を取得します。
/// - `is_holiday()`:  `chrono::NaiveDate` を渡して祝日かどうかを判定します。
/// - `is_holiday_ymd()`:  年月日を渡して祝日かどうかを判定します。
/// - `is_day_off()`: `chrono::NaiveDate` を渡して休日かどうかを判定します。
/// - `is_day_off_ymd.()`: 年月日を渡して休日かどうかを判定します。
/// - `list_holidays()`: 公開されている祝日をすべて取得します (`BTreeMap<NaiveDate, String>`)
pub struct Client {
    data: std::collections::BTreeMap<NaiveDate, String>,
}

impl Client {
    /// クライアントを初期化します。
    ///
    /// ## 使用例
    ///
    /// ```
    /// use chrono::NaiveDate;
    /// use jp_holidays_lib::client::Client;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let client = Client::init().await?;
    ///
    ///     // 祝日を取得
    ///     let date = NaiveDate::from_ymd_opt(1955, 11, 23).ok_or("存在しない日付です".to_string())?;
    ///
    ///     let maybe_holiday = client.get_holiday(date);
    ///
    ///     match maybe_holiday {
    ///         Some(holiday) => println!("1955年 11月 23日 は{}", holiday),
    ///         None => println!("1955年 11月 23日 は祝日ではありません"),
    ///     };
    ///
    ///     // 祝日かどうか確認
    ///     let date = NaiveDate::from_ymd_opt(1956, 3, 21).ok_or("存在しない日付です".to_string())?;
    ///
    ///     let is_holiday = client.is_holiday(date);
    ///
    ///     println!(
    ///         "1956 3月 21日 は{}",
    ///         if is_holiday {
    ///             "祝日です"
    ///         } else {
    ///             "祝日ではありません"
    ///         }
    ///     );
    ///
    ///     Ok(())
    /// }
    /// ```
    ///
    /// ## キャッシュの利用
    ///
    /// 非同期ランタイムに `tokio` を使用している場合、以下のようにキャッシュを活用できます。
    ///
    /// ```
    /// use chrono::NaiveDate;
    /// use jp_holidays_lib::{client::Client, error::Error};
    ///
    /// // Client::init() は非同期に内閣府から祝日情報を取得するため、
    /// // tokio::sync::OnceCell を使って初回のみ初期化し、その後はキャッシュを使用します。
    /// static CACHE: tokio::sync::OnceCell<Client> = tokio::sync::OnceCell::const_new();
    ///
    /// // キャッシュされた Client インスタンスを取得します
    /// async fn get_client() -> Result<&'static Client, Error> {
    ///     CACHE.get_or_try_init(Client::init).await
    /// }
    ///
    /// // 実行用の関数(main から呼び出し)
    /// // スコープを抜けても Client はキャッシュされ続けます
    /// async fn execute() -> Result<(), Box<dyn std::error::Error>> {
    ///     let client = get_client().await?;
    ///
    ///     // 祝日を取得
    ///     let date = NaiveDate::from_ymd_opt(1955, 11, 23).ok_or("存在しない日付です".to_string())?;
    ///
    ///     let maybe_holiday = client.get_holiday(date);
    ///
    ///     match maybe_holiday {
    ///         Some(holiday) => println!("1955年 11月 23日 は{}", holiday),
    ///         None => println!("1955年 11月 23日 は祝日ではありません"),
    ///     };
    ///
    ///     // 祝日かどうか確認
    ///     let date = NaiveDate::from_ymd_opt(1956, 3, 21).ok_or("存在しない日付です".to_string())?;
    ///
    ///     let is_holiday = client.is_holiday(date);
    ///
    ///     println!(
    ///         "1956 3月 21日 は{}",
    ///         if is_holiday {
    ///             "祝日です"
    ///         } else {
    ///             "祝日ではありません"
    ///         }
    ///     );
    ///
    ///     Ok(())
    /// }
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     for i in 0..5 {
    ///         let start = std::time::Instant::now();
    ///         execute().await?;
    ///         let duration = start.elapsed();
    ///         println!("{}回目の実行時間: {:?}\n", i + 1, duration);
    ///     }
    ///
    ///     Ok(())
    /// }
    /// ```
    pub async fn init() -> Result<Self, crate::error::Error> {
        let holiday_repository = std::sync::Arc::new(crate::repository::HolidayRepositoryImpl);
        let holiday_service =
            std::sync::Arc::new(crate::service::HolidayService { holiday_repository });
        let shiftjis_bytes = holiday_service.fetch_shiftjis_csv_bytes().await?;
        let csv = holiday_service.parse_csv(shiftjis_bytes).await?;
        let data = holiday_service.deserialize_csv(&csv)?;
        Ok(Self { data })
    }

    #[cfg(test)]
    #[doc = include_str!("../../../README.md")]
    async fn init_stub() -> Result<Self, crate::error::Error> {
        let holiday_repository = std::sync::Arc::new(crate::repository::HolidayRepositoryStub);
        let holiday_service =
            std::sync::Arc::new(crate::service::HolidayService { holiday_repository });
        let shiftjis_bytes = holiday_service.fetch_shiftjis_csv_bytes().await?;
        let csv = holiday_service.parse_csv(shiftjis_bytes).await?;
        let data = holiday_service.deserialize_csv(&csv)?;
        Ok(Self { data })
    }

    /// 現在内閣府から公開されている範囲の祝日一覧を取得します。
    ///
    /// ## 使用例
    ///
    /// ```
    /// use chrono::NaiveDate;
    /// use jp_holidays_lib::client::Client;
    /// use std::ops::Bound::{Excluded, Included};
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let client = Client::init().await?;
    ///
    ///     // 2018年 の祝日のみを取得します。
    ///     let start = NaiveDate::from_ymd_opt(2018, 1, 1).ok_or("存在しない日付です".to_string())?;
    ///     let end = NaiveDate::from_ymd_opt(2019, 1, 1).ok_or("存在しない日付です".to_string())?;
    ///
    ///     // 公開されている祝日をすべて取得します。その後範囲を絞ります。
    ///     let holidays_2018 = client
    ///         .list_holidays()
    ///         .range((Included(start), Excluded(end)));
    ///
    ///     for (date, name) in holidays_2018 {
    ///         println!("{} | {}", date, name);
    ///     }
    ///
    ///     Ok(())
    /// }
    /// ```
    pub fn list_holidays(&self) -> &std::collections::BTreeMap<NaiveDate, String> {
        &self.data
    }

    /// `chrono::NaiveDate` を渡して祝日を取得します。
    ///
    /// ## 使用例
    ///
    /// ```
    /// use chrono::NaiveDate;
    /// use jp_holidays_lib::client::Client;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let client = Client::init().await?;
    ///
    ///     // 祝日を取得
    ///     let date = NaiveDate::from_ymd_opt(1955, 11, 23).ok_or("存在しない日付です".to_string())?;
    ///
    ///     let maybe_holiday = client.get_holiday(date);
    ///
    ///     match maybe_holiday {
    ///         Some(holiday) => println!("1955年 11月 23日 は{}", holiday),
    ///         None => println!("1955年 11月 23日 は祝日ではありません"),
    ///     };
    ///
    ///     Ok(())
    /// }
    /// ```
    pub fn get_holiday(&self, date: NaiveDate) -> Option<&str> {
        self.data.get(&date).map(|s| s.as_str())
    }

    /// 年月日を渡して祝日を取得します。
    ///
    /// ## 使用例
    /// ```
    /// use jp_holidays_lib::client::Client;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let client = Client::init().await?;
    ///
    ///     // 祝日かどうか確認
    ///     let is_holiday = client.is_holiday_ymd(1956, 3, 21)?;
    ///     println!(
    ///         "1956 3月 21日 は{}",
    ///         if is_holiday {
    ///             "祝日です"
    ///         } else {
    ///             "祝日ではありません"
    ///         }
    ///     );
    ///
    ///     Ok(())
    /// }
    ///
    /// ```
    pub fn get_holiday_ymd(
        &self,
        year: i32,
        month: u32,
        day: u32,
    ) -> Result<Option<&str>, crate::error::Error> {
        let date =
            NaiveDate::from_ymd_opt(year, month, day).ok_or(crate::error::Error::InvalidDate(
                format!("不正な日付です: {}年 {}月 {}日", year, month, day),
            ))?;
        Ok(self.get_holiday(date))
    }

    /// `chrono::NaiveDate` を渡して祝日かどうか確認します。
    ///
    /// ## 使用例
    ///
    /// ```
    /// use chrono::NaiveDate;
    /// use jp_holidays_lib::client::Client;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let client = Client::init().await?;
    ///
    ///     // 祝日かどうか確認
    ///     let date = NaiveDate::from_ymd_opt(1956, 3, 21).ok_or("存在しない日付です".to_string())?;
    ///
    ///     let is_holiday = client.is_holiday(date);
    ///
    ///     println!(
    ///         "1956 3月 21日 は{}",
    ///         if is_holiday {
    ///             "祝日です"
    ///         } else {
    ///             "祝日ではありません"
    ///         }
    ///     );
    ///
    ///     Ok(())
    /// }
    ///
    /// ```
    pub fn is_holiday(&self, date: NaiveDate) -> bool {
        self.data.contains_key(&date)
    }

    /// 年月日を渡して祝日かどうか確認します。
    ///
    /// ## 使用例
    ///
    /// ```
    /// use jp_holidays_lib::client::Client;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let client = Client::init().await?;
    ///
    ///     // 祝日かどうか確認
    ///     let is_holiday = client.is_holiday_ymd(1956, 3, 21)?;
    ///     println!(
    ///         "1956 3月 21日 は{}",
    ///         if is_holiday {
    ///             "祝日です"
    ///         } else {
    ///             "祝日ではありません"
    ///         }
    ///     );
    ///
    ///     Ok(())
    /// }
    ///
    /// ```
    pub fn is_holiday_ymd(
        &self,
        year: i32,
        month: u32,
        day: u32,
    ) -> Result<bool, crate::error::Error> {
        let date =
            NaiveDate::from_ymd_opt(year, month, day).ok_or(crate::error::Error::InvalidDate(
                format!("不正な日付です: {}年 {}月 {}日", year, month, day),
            ))?;
        Ok(self.is_holiday(date))
    }

    /// `chrono::NaiveDate` を渡して**休日**(祝日+土日)かどうか確認します。
    ///
    /// ## 使用例
    ///
    /// ```
    /// use chrono::NaiveDate;
    /// use jp_holidays_lib::client::Client;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let client = Client::init().await?;
    ///
    ///     // 休日かどうか確認
    ///     let date = NaiveDate::from_ymd_opt(1956, 3, 21).ok_or("存在しない日付です".to_string())?;
    ///
    ///     let is_day_off = client.is_day_off(date);
    ///
    ///     println!(
    ///         "1956 3月 21日 は{}",
    ///         if is_day_off {
    ///             "休日です"
    ///         } else {
    ///             "休日ではありません"
    ///         }
    ///     );
    ///
    ///     Ok(())
    /// }
    /// ```
    pub fn is_day_off(&self, date: NaiveDate) -> bool {
        matches!(date.weekday(), chrono::Weekday::Sat | chrono::Weekday::Sun)
            || self.is_holiday(date)
    }

    /// 年月日を渡して**休日**(祝日+土日)かどうか確認します。
    ///
    /// ## 使用例
    ///
    /// ```
    /// use jp_holidays_lib::client::Client;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let client = Client::init().await?;
    ///
    ///     // 休日かどうか確認
    ///     let is_day_off = client.is_holiday_ymd(1956, 3, 21)?;
    ///     println!(
    ///         "1956 3月 22日 は{}",
    ///         if is_day_off {
    ///             "休日です"
    ///         } else {
    ///             "休日ではありません"
    ///         }
    ///     );
    ///
    ///     Ok(())
    /// }
    /// ```
    pub fn is_day_off_ymd(
        &self,
        year: i32,
        month: u32,
        day: u32,
    ) -> Result<bool, crate::error::Error> {
        let date =
            NaiveDate::from_ymd_opt(year, month, day).ok_or(crate::error::Error::InvalidDate(
                format!("不正な日付です: {}年 {}月 {}日", year, month, day),
            ))?;
        Ok(self.is_day_off(date))
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[tokio::test]
    async fn test_get_holiday_known_date() {
        let client = Client::init_stub().await.unwrap();
        let holiday = client.get_holiday_ymd(1955, 1, 1).unwrap();
        assert_eq!(holiday, Some("元日"));
    }

    #[tokio::test]
    async fn test_get_holiday_unknown_date() {
        let client = Client::init_stub().await.unwrap();
        let holiday = client.get_holiday_ymd(1955, 1, 2).unwrap();
        assert_eq!(holiday, None);
    }

    #[tokio::test]
    async fn test_is_holiday_true() {
        let client = Client::init_stub().await.unwrap();
        let is_holiday = client.is_holiday_ymd(1955, 5, 5).unwrap();
        assert!(is_holiday);
    }

    #[tokio::test]
    async fn test_is_holiday_false() {
        let client = Client::init_stub().await.unwrap();
        let is_holiday = client.is_holiday_ymd(1955, 5, 4).unwrap();
        assert!(!is_holiday);
    }

    #[tokio::test]
    async fn test_invalid_date() {
        let client = Client::init_stub().await.unwrap();
        let result = client.get_holiday_ymd(1955, 2, 30);
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_is_day_off_holiday() {
        let client = Client::init_stub().await.unwrap();
        let is_day_off = client.is_day_off_ymd(1955, 1, 1).unwrap();
        assert!(is_day_off);
    }

    #[tokio::test]
    async fn test_is_day_off_weekend() {
        let client = Client::init_stub().await.unwrap();
        let is_day_off = client.is_day_off_ymd(1955, 1, 8).unwrap();
        assert!(is_day_off);
    }

    #[tokio::test]
    async fn test_is_day_off_weekday_non_holiday() {
        let client = Client::init_stub().await.unwrap();
        let is_day_off = client.is_day_off_ymd(1955, 1, 5).unwrap();
        assert!(!is_day_off);
    }
}