-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmonth_field.cpp
48 lines (44 loc) · 1.14 KB
/
month_field.cpp
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
#include <algorithm>
#include "month_field.h"
namespace geheb {
month_field::month_field() {
_allowBackwardRange = true;
_literals = {
{ "JAN", 1 },
{ "FEB", 2 },
{ "MAR", 3 },
{ "APR", 4 },
{ "MAY", 5 },
{ "JUN", 6 },
{ "JUL", 7 },
{ "AUG", 8 },
{ "SEP", 9 },
{ "OCT", 10 },
{ "NOV", 11 },
{ "DEC", 12 }
};
}
date_time month_field::increment(const std::string &value, const date_time &time) const {
if (value == "*") {
date_time nextTime(time.year(), time.month(), 1);
nextTime += days(nextTime.last_day_of_month());
return nextTime;
}
size_t pos = 0;
auto list = create_list(value);
for (size_t i = 0; i < list.size() - 1; i++) {
int currentVal = list[i];
int nextVal = list[i + 1];
if (time.month() >= currentVal && time.month() < nextVal) {
pos = i + 1;
break;
}
}
if (time.month() >= list[pos]) {
return date_time(time.year() + 1, 1, 1);
}
else {
return date_time(time.year(), list[pos], 1);
}
}
} // namespace geheb