devela/phys/time/calendar/
month.rs

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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
// devela::phys::time::calendar::month
//
//!
//

use crate::{Display, FmtResult, Formatter, FromStr};
#[allow(clippy::enum_glob_use)]
use Month::*;

/// The months of the year.
#[repr(u8)]
#[allow(missing_docs)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Ord, PartialOrd, Hash)]
pub enum Month {
    January = 0,
    February,
    March,
    April,
    May,
    June,
    July,
    August,
    September,
    October,
    November,
    December,
}

impl Month {
    /// The number of months in a year.
    pub const COUNT: usize = 12;

    /// Returns the length in days of the current month, taking into account
    /// whether it's a `leap` year, for february.
    #[allow(clippy::len_without_is_empty)]
    pub const fn len(self, leap: bool) -> u8 {
        match self {
            January => 31,
            February => 28 + leap as u8,
            March => 31,
            April => 30,
            May => 31,
            June => 30,
            July => 31,
            August => 31,
            September => 30,
            October => 31,
            November => 30,
            December => 31,
        }
    }

    /// Returns the previous month.
    pub const fn previous(self) -> Month {
        self.previous_nth(1)
    }

    /// Returns the previous `nth` month.
    pub const fn previous_nth(self, nth: usize) -> Month {
        Self::from_index_unchecked(self.index().wrapping_sub(nth) % Self::COUNT)
    }

    /// Returns the next month.
    pub const fn next(self) -> Month {
        self.next_nth(1)
    }

    /// Returns the next `nth` month.
    pub const fn next_nth(self, nth: usize) -> Month {
        Self::from_index_unchecked(self.index().wrapping_add(nth) % Self::COUNT)
    }

    /* numbers */

    /// Returns the Month number from `January=1` to `December=12`.
    pub const fn number(self) -> u8 {
        self.index() as u8 + 1
    }

    /// Returns the Month index from `January=0` to `December=11`.
    pub const fn index(self) -> usize {
        self as _
    }

    /// Returns a `Month` from its counting number, from `January=1` to `December=12`.
    ///
    /// # Errors
    /// `if n < 1 || n > 12`
    pub const fn from_number(n: u8) -> Result<Month, &'static str> {
        match n {
            1 => Ok(January),
            2 => Ok(February),
            3 => Ok(March),
            4 => Ok(April),
            5 => Ok(May),
            6 => Ok(June),
            7 => Ok(July),
            8 => Ok(August),
            9 => Ok(September),
            10 => Ok(October),
            11 => Ok(November),
            12 => Ok(December),
            _ => Err("The month number must be between 1 and 12."),
        }
    }

    /// Returns a `Month` from its index, from `January=0` to `December=11`.
    ///
    /// # Errors
    /// `if index > 11`
    pub const fn from_index(index: usize) -> Result<Month, &'static str> {
        match index {
            0 => Ok(January),
            1 => Ok(February),
            2 => Ok(March),
            3 => Ok(April),
            4 => Ok(May),
            5 => Ok(June),
            6 => Ok(July),
            7 => Ok(August),
            8 => Ok(September),
            9 => Ok(October),
            10 => Ok(November),
            11 => Ok(December),
            _ => Err("The month index must be between 0 and 11."),
        }
    }

    /// Returns a `Month` from its index, from `January=0` to `December=11`.
    ///
    /// # Panics
    /// `if index > 11`
    pub const fn from_index_unchecked(index: usize) -> Self {
        match index {
            0 => January,
            1 => February,
            2 => March,
            3 => April,
            4 => May,
            5 => June,
            6 => July,
            7 => August,
            8 => September,
            9 => October,
            10 => November,
            11 => December,
            _ => panic!("The month index must be between 0 and 11."),
        }
    }
}

/// # abbreviations & representations
#[allow(missing_docs, non_upper_case_globals)]
impl Month {
    /// Returns the 3-letter abbreviated month name, in ASCII, UpperCamelCase.
    pub const fn abbr3(self) -> &'static str {
        match self {
            January => "Jan",
            February => "Feb",
            March => "Mar",
            April => "Apr",
            May => "May",
            June => "Jun",
            July => "Jul",
            August => "Aug",
            September => "Sep",
            October => "Oct",
            November => "Nov",
            December => "Dec",
        }
    }

    pub const Jan: Month = Month::January;
    pub const Feb: Month = Month::February;
    pub const Mar: Month = Month::March;
    pub const Apr: Month = Month::April;
    pub const May: Month = Month::May;
    pub const Jun: Month = Month::June;
    pub const Jul: Month = Month::July;
    pub const Aug: Month = Month::August;
    pub const Sep: Month = Month::September;
    pub const Oct: Month = Month::October;
    pub const Nov: Month = Month::November;
    pub const Dec: Month = Month::December;

    /// Returns the 2-letter abbreviated month name, in ASCII, UPPERCASE.
    pub const fn abbr2(self) -> &'static str {
        match self {
            January => "JA",
            February => "FE",
            March => "MR",
            April => "AP",
            May => "MY",
            June => "JN",
            July => "JL",
            August => "AU",
            September => "SE",
            October => "OC",
            November => "NV",
            December => "DE",
        }
    }

    pub const JA: Month = Month::January;
    pub const FE: Month = Month::February;
    pub const MR: Month = Month::March;
    pub const AP: Month = Month::April;
    pub const MY: Month = Month::May;
    pub const JN: Month = Month::June;
    pub const JL: Month = Month::July;
    pub const AU: Month = Month::August;
    pub const SE: Month = Month::September;
    pub const OC: Month = Month::October;
    pub const NV: Month = Month::November;
    pub const DE: Month = Month::December;

    /// Returns the 1-letter abbreviated month name, in ASCII, UPPERCASE.
    pub const fn abbr1(self) -> &'static str {
        match self {
            January => "J",
            February => "F",
            March => "R",
            April => "P",
            May => "Y",
            June => "N",
            July => "L",
            August => "U",
            September => "S",
            October => "O",
            November => "N",
            December => "D",
        }
    }

    pub const J: Month = Month::January;
    pub const F: Month = Month::February;
    pub const R: Month = Month::March;
    pub const P: Month = Month::April;
    pub const Y: Month = Month::May;
    pub const N: Month = Month::June;
    pub const L: Month = Month::July;
    pub const U: Month = Month::August;
    pub const S: Month = Month::September;
    pub const O: Month = Month::October;
    pub const V: Month = Month::November;
    pub const D: Month = Month::December;

    /// Returns an emoji associated to each month.
    ///
    /// These are: 🌺, 🐉, 🍀, 🐰, 🌼, 🐟, 🌞, 🍂, 🎃, 🦉, 🍁, 🎄.
    ///
    /// Hibiscus, Dragon, Four Leaf Clover, Rabbit, Blossom, Fish, Sun with Face, Fallen Leaf,
    /// Jack-O-Lantern, Owl, Maple Leaf and Christmas Tree.
    pub const fn emoji(self) -> char {
        match self {
            // Hibiscus.
            January => '🌺',
            // Dragon.
            February => '🐉',
            // Four Leaf Clover.
            March => '🍀',
            // Rabbit.
            April => '🐰',
            // Blossom.
            May => '🌼',
            // Fish.
            June => '🐟',
            // Sun with Face.
            July => '🌞',
            // Fallen LEaf.
            August => '🍂',
            // Jack-O-Lantern.
            September => '🎃',
            // Owl.
            October => '🦉',
            // Maple Leaf.
            November => '🍁',
            // Christmas Tree.
            December => '🎄',
        }
    }

    /// Returns the main zodiac symbol, associated to the start of the month.
    ///
    /// These are: ♑, ♒, ♓, ♈, ♉, ♊, ♋, ♌, ♍, ♎, ♏, ♐.
    ///
    /// Capricorn, Aquarius, Pisces, Aries, Taurus, Gemini, Cancer, Leo, Virgo,
    /// Libra, Scorpio, Sagittarius.
    ///
    /// # Examples
    /// ```
    /// # use devela::Month;
    /// assert_eq![Month::July.zodiac_start(), '♋'];
    /// ```
    pub const fn zodiac_start(self) -> char {
        match self {
            // Capricorn
            January => '♑',
            // Aquarius.
            February => '♒',
            // Pisces.
            March => '♓',
            // Aries.
            April => '♈',
            // Taurus.
            May => '♉',
            // Gemini.
            June => '♊',
            // Cancer.
            July => '♋',
            // Leo.
            August => '♌',
            // Virgo.
            September => '♍',
            // Libra.
            October => '♎',
            // Scorpio.
            November => '♏',
            // Sagittarius.
            December => '♐',
        }
    }

    /// Returns the main zodiac name, associated to the start of the month.
    ///
    /// These are: Capricorn, Aquarius, Pisces, Aries, Taurus, Gemini, Cancer,
    /// Leo, Virgo, Libra, Scorpio, Sagittarius.
    ///
    /// # Examples
    /// ```
    /// # use devela::Month;
    /// assert_eq![Month::July.zodiac_start_name(), "Cancer"];
    /// ```
    pub const fn zodiac_start_name(self) -> &'static str {
        match self {
            January => "Capricorn",
            February => "Aquarius",
            March => "Pisces",
            April => "Aries",
            May => "Taurus",
            June => "Gemini",
            July => "Cancer",
            August => "Leo",
            September => "Virgo",
            October => "Libra",
            November => "Scorpio",
            December => "Sagittarius",
        }
    }

    /// Returns the secondary zodiac symbol, associated to the end of the month.
    ///
    /// These are: ♒, ♓, ♈, ♉, ♊, ♋, ♌, ♍, ♎, ♏, ♐, ♑.
    ///
    /// # Examples
    /// ```
    /// # use devela::Month;
    /// assert_eq![Month::July.zodiac_end(), '♌'];
    /// ```
    pub const fn zodiac_end(self) -> char {
        self.next().zodiac_start()
    }

    /// Returns the secondary zodiac name, associated to the end of the month.
    ///
    /// These are: Aquarius, Pisces, Aries, Taurus, Gemini, Cancer, Leo, Virgo,
    /// Libra, Scorpio, Sagittarius, Capricorn.
    ///
    /// # Examples
    /// ```
    /// # use devela::Month;
    /// assert_eq![Month::July.zodiac_end_name(), "Leo"];
    /// ```
    pub const fn zodiac_end_name(self) -> &'static str {
        self.next().zodiac_start_name()
    }
}

impl Display for Month {
    fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult<()> {
        f.write_str(match self {
            January => "January",
            February => "February",
            March => "March",
            April => "April",
            May => "May",
            June => "June",
            July => "July",
            August => "August",
            September => "September",
            October => "October",
            November => "November",
            December => "December",
        })
    }
}

impl From<Month> for u8 {
    fn from(month: Month) -> Self {
        month as _
    }
}

/// Returns a `Month` from a string containing either the full month name,
/// or any of the month ASCII abbreviations.
impl FromStr for Month {
    type Err = &'static str;

    #[rustfmt::skip]
    fn from_str(s: &str) -> Result<Month, Self::Err> {
        if s.eq_ignore_ascii_case("January") { Ok(January)
        } else if s.eq_ignore_ascii_case("February") { Ok(February)
        } else if s.eq_ignore_ascii_case("March") { Ok(March)
        } else if s.eq_ignore_ascii_case("April") { Ok(April)
        } else if s.eq_ignore_ascii_case("May") { Ok(May)
        } else if s.eq_ignore_ascii_case("June") { Ok(June)
        } else if s.eq_ignore_ascii_case("July") { Ok(July)
        } else if s.eq_ignore_ascii_case("August") { Ok(August)
        } else if s.eq_ignore_ascii_case("September") { Ok(September)
        } else if s.eq_ignore_ascii_case("October") { Ok(October)
        } else if s.eq_ignore_ascii_case("November") { Ok(November)
        } else if s.eq_ignore_ascii_case("December") { Ok(December)
        //
        } else if s.eq_ignore_ascii_case("Jan") { Ok(January)
        } else if s.eq_ignore_ascii_case("Feb") { Ok(February)
        } else if s.eq_ignore_ascii_case("Mar") { Ok(March)
        } else if s.eq_ignore_ascii_case("Apr") { Ok(April)
        // } else if s.eq_ignore_ascii_case("May") { Ok(May) // repeated
        } else if s.eq_ignore_ascii_case("Jun") { Ok(June)
        } else if s.eq_ignore_ascii_case("Jul") { Ok(July)
        } else if s.eq_ignore_ascii_case("Aug") { Ok(August)
        } else if s.eq_ignore_ascii_case("Sep") { Ok(September)
        } else if s.eq_ignore_ascii_case("Oct") { Ok(October)
        } else if s.eq_ignore_ascii_case("Nov") { Ok(November)
        } else if s.eq_ignore_ascii_case("Dec") { Ok(December)
        // abbr2
        } else if s.eq_ignore_ascii_case("JA") { Ok(January)
        } else if s.eq_ignore_ascii_case("FE") { Ok(February)
        } else if s.eq_ignore_ascii_case("MR") { Ok(March)
        } else if s.eq_ignore_ascii_case("AP") { Ok(April)
        } else if s.eq_ignore_ascii_case("MY") { Ok(May)
        } else if s.eq_ignore_ascii_case("JN") { Ok(June)
        } else if s.eq_ignore_ascii_case("JL") { Ok(July)
        } else if s.eq_ignore_ascii_case("AU") { Ok(August)
        } else if s.eq_ignore_ascii_case("SE") { Ok(September)
        } else if s.eq_ignore_ascii_case("OC") { Ok(October)
        } else if s.eq_ignore_ascii_case("NV") { Ok(November)
        } else if s.eq_ignore_ascii_case("DE") { Ok(December)
        // abbr1
        } else if s.eq_ignore_ascii_case("J") { Ok(January)
        } else if s.eq_ignore_ascii_case("F") { Ok(February)
        } else if s.eq_ignore_ascii_case("R") { Ok(March)
        } else if s.eq_ignore_ascii_case("P") { Ok(April)
        } else if s.eq_ignore_ascii_case("Y") { Ok(May)
        } else if s.eq_ignore_ascii_case("N") { Ok(June)
        } else if s.eq_ignore_ascii_case("L") { Ok(July)
        } else if s.eq_ignore_ascii_case("U") { Ok(August)
        } else if s.eq_ignore_ascii_case("S") { Ok(September)
        } else if s.eq_ignore_ascii_case("O") { Ok(October)
        } else if s.eq_ignore_ascii_case("V") { Ok(November)
        } else if s.eq_ignore_ascii_case("D") { Ok(December)
        //
        } else {
            Err("Invalid month name.")
        }
    }
}