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
//! # RRules
//!
//! A blazing fast and memory efficient library to manage recurrence rules inspired by the standards from [RFC-5547](https://icalendar.org/iCalendar-RFC-5545/3-3-10-recurrence-rule.html).
//! It provides the ability to define recurrence rules for events, and then iterate over them to get the dates that match the recurrence rules.
//!
//! ## How to use it
//!
//! The easiest way to use this library is to start by loading a Recurrence instance from a string following the [standards](#standards):
//!
//! ### Loading from string
//!
//! #### Required attributes:
//!
//! - FREQ
//!   - Defines the type of frequency (E.g. DAILY, WEEKLY, MONTHLY, etc)
//! - INTERVAL
//!     - Defines the interval of the frequency (E.g. every 2 days, every 3 months, etc)
//! - DTSTART
//!     - Defines the start date of the recurrence
//!
//! Examples:
//!
//! ```rust
//! // Daily recurrence example:
//!
//! use std::str::FromStr;
//! use chrono::{DateTime, Utc};
//! use rrules::Recurrence;
//!
//! let recurrence = Recurrence::from_str("FREQ=DAILY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z").unwrap();
//!
//! // You can then use the `Recurrence` as an iterator by looping over it or collecting the results into a `Vec`
//!
//! for event in recurrence.clone().take(100) { // cloning to avoid moving the iterator
//!     // ...
//! }
//! // or
//! let events: Vec<DateTime<Utc>> = recurrence.take(100).collect();
//!
//! ```
//!
//! > The `Recurrence` struct is an iterator that will yield all the dates that match the recurrence rules defined.
//!
//!
//! ### How to use it with structs definition
//!
//! To define a recurrence rule, start by creating the desired `frequency` rule definition:
//!
//! ```rust
//! use chrono::{Duration, Utc};
//! use rrules::Frequency;
//! use rrules::Recurrence;
//!
//! let daily = Frequency::Daily {
//!     interval: 1,
//!     by_time: vec![],
//! };
//!
//! // Then, create a `Recurrence` with the frequency defined:
//!
//! let recurrence = Recurrence::new(
//!     daily,
//!     Utc::now(), // start date
//!     Some(Utc::now() + Duration::days(1)), // end date
//!     Some(Duration::hours(1)), // duration (optional
//! );
//! ```
//!
//! The `end` attribute of a `Recurrence` is optional, and if not specified, it will yield events until the `MAX_DATE`.
//! > The `MAX_DATE` is defined as `9999-12-31T23:59:59Z`
//!
//! The `duration` attribute of a `Recurrence` is optional, and if not specified, it will use the default as 0 seconds `Duration::seconds(0)`.
//!
//! <span id="standards"></span>
//! ## Attribute standards
//!
//! | Attribute  | Description                                                                                                    | Example                                                             |
//! |------------|----------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------|
//! | FREQ       | Defines the type of frequency (E.g. DAILY, WEEKLY, MONTHLY, etc)                                               | FREQ=DAILY                                                          |
//! | INTERVAL   | Defines the interval of the frequency (E.g. every 2 days, every 3 months, etc)                                 | INTERVAL=2                                                          |
//! | DTSTART    | Defines the start date of the recurrence                                                                       | DTSTART=2023-01-01T12:00:00Z                                        |
//! | DTEND      | Defines the end date of the recurrence                                                                         | DTEND=2023-01-01T12:00:00Z                                          |
//! | DURATION   | Defines the duration of the recurrence                                                                         | DURATION=PT1H                                                       |
//! | BYDAY      | Defines the days of the week that the recurrence will happen                                                   | BYDAY=MO,TU -> When FREQ=WEEKLY; BYDAY=1MO,3WE -> When FREQ=MONTHLY |
//! | BYMONTHDAY | Defines the days of the month that the recurrence will happen                                                  | BYMONTHDAY=1,2,3,4, etc                                             |
//! | BYMONTH    | Defines the months of the year that the recurrence will happen                                                 | BYMONTH=1,2,3,4,5,6,7,8,9,10,11,12                                  |
//!
//!
//! ## Supported recurrence rule types + examples
//! Current supporting recurrence rules:
//!
//! - [Secondly](#secondly)
//! - [minutely](#minutely)
//! - [hourly](#hourly)
//! - [Daily](#daily)
//! - [Weekly](#weekly)
//! - [Monthly](#monthly)
//!     - [By month day](#monthly-by-month-day)
//!     - [By nth weekday](#monthly-by-day)
//! - [Yearly](#yearly)
//!     - [By day](#yearly-by-day)
//!     - [By month day](#yearly-by-month-day)
//!
//!
//! <span id="secondly"></span>
//! ### Secondly Frequencies
//! Represents the rules for a recurrence that happens every x seconds.
//!
//! ```rust
//! use std::str::FromStr;
//! use rrules::Recurrence;
//!
//! let every_second_recurrence = Recurrence::from_str(
//!     "FREQ=SECONDLY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z"
//! ).unwrap();
//! ```
//!
//! <span id="minutely"></span>
//! ### Minutely Frequencies
//! Represents the rules for a recurrence that happens every x minutes.
//!
//! ```rust
//! use std::str::FromStr;
//! use rrules::Recurrence;
//!
//! let every_5_minutes = Recurrence::from_str(
//!     "FREQ=MINUTELY;INTERVAL=5;DTSTART=2023-01-01T12:00:00Z"
//! ).unwrap();
//! ```
//!
//! <span id="hourly"></span>
//! ### Hourly Frequencies
//! Represents the rules for a recurrence that happens every x hours.
//!
//! ```rust
//! use std::str::FromStr;
//! use rrules::Recurrence;
//!
//! let every_6_hours = Recurrence::from_str(
//!     "FREQ=HOURLY;INTERVAL=6;DTSTART=2023-01-01T12:00:00Z"
//! ).unwrap();
//! ```
//!
//! <span id="daily"></span>
//! ### Daily Frequencies
//! Represents the rules for a recurrence that happens x times every x days.
//!
//! ```rust
//! use std::str::FromStr;
//! use rrules::Recurrence;
//!
//! let every_3_days = Recurrence::from_str(
//!     "FREQ=DAILY;INTERVAL=3;DTSTART=2023-01-01T12:00:00Z"
//! ).unwrap();
//!
//! let every_day_at_8am = Recurrence::from_str(
//!     "FREQ=DAILY;INTERVAL=1;DTSTART=2023-01-01T08:00:00Z"
//! ).unwrap();
//!
//! let every_other_day_at_12pm_and_16pm = Recurrence::from_str(
//!     "FREQ=DAILY;INTERVAL=2;DTSTART=2023-01-01T00:00:00Z;BYTIME=12:00,16:00"
//! ).unwrap();
//! ```
//!
//! <span id="weekly"></span>
//! ### Weekly Frequencies
//! Represents the rules for a recurrence that happens x times every x weeks.
//!
//! ```rust
//! use std::str::FromStr;
//! use rrules::Recurrence;
//!
//! let every_week = Recurrence::from_str(
//!     "FREQ=WEEKLY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z"
//! ).unwrap();
//!
//! let every_week_mon_and_tue = Recurrence::from_str(
//!     "FREQ=WEEKLY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z;BYDAY=MO,TU"
//! ).unwrap();
//! ```
//! <span id="monthly"></span>
//! ### Monthly Frequencies
//! Represents the rules for a recurrence that happens x times every x months.
//!
//! ```rust
//! use std::str::FromStr;
//! use rrules::Recurrence;
//! let monthly = Recurrence::from_str(
//!     "FREQ=MONTHLY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z"
//! ).unwrap();
//! ```
//!
//! <span id="monthly-by-month-day"></span>
//! #### Monthly by month day
//!
//! When specifying `BYMONTHDAY`, it will only yield the dates that match the days of the month specified.
//!
//! ```
//! use std::str::FromStr;
//! use rrules::Recurrence;
//! let every_15th = Recurrence::from_str(
//!     "FREQ=MONTHLY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z;BYMONTHDAY=15"
//! ).unwrap();
//!
//! let every_15th_and_25th = Recurrence::from_str(
//!     "FREQ=MONTHLY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z;BYMONTHDAY=15,25"
//! ).unwrap();
//! ```
//!
//! <span id="monthly-by-day"></span>
//! #### Monthly by nth day
//!
//! When specifying `BYDAY`, it will only yield the dates that match the nth days of the week specified.
//! I.g. if you want to have a recurrence every first Monday of the month, you can do:
//!
//! ```rust
//! use std::str::FromStr;
//! use rrules::Recurrence;
//! let every_first_monday = Recurrence::from_str(
//!     "FREQ=MONTHLY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z;BYDAY=1MO"
//! ).unwrap();
//!
//! let every_first_monday_and_wednesday = Recurrence::from_str(
//!     "FREQ=MONTHLY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z;BYDAY=1MO,1WE"
//! ).unwrap();
//! ```
//!
//! <span id="yearly"></span>
//! ### Yearly Frequencies
//! Represents the rules for a recurrence that happens x times every x years.
//!
//! ```rust
//! use std::str::FromStr;
//! use rrules::Recurrence;
//! let yearly = Recurrence::from_str(
//!     "FREQ=YEARLY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z"
//! ).unwrap();
//! ```
//!
//! <span id="yearly-by-month-day"></span>
//! #### Yearly by month day
//!
//! When specifying `BYMONTH` and `BYMONTHDAY`, it will only yield the dates that match the days of the month specified.
//! E.g. if you want to have a recurrence every 15th January of the year, you can do:
//!
//! ```rust
//! use std::str::FromStr;
//! use rrules::Recurrence;
//! let every_15th_january = Recurrence::from_str(
//!     "FREQ=YEARLY;INTERVAL=1;DTSTART=2023-01-01T12:00:00Z;BYMONTH=1;BYMONTHDAY=15"
//! ).unwrap();
//! ```

extern crate core;

pub mod frequencies;
pub mod recurrences;
mod utils;
pub use frequencies::*;
pub use recurrences::*;
pub use frequencies::{Frequency, MonthlyDate, NthWeekday, Time};
pub use recurrences::{Recurrence, RecurrenceInvalid};