-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdate.cpp
More file actions
90 lines (73 loc) · 2.52 KB
/
date.cpp
File metadata and controls
90 lines (73 loc) · 2.52 KB
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
#include "date.h"
#include <sstream>
Date::Date (const int& year, const int& month, const int& day) {
year_ = year;
if (month > 12 || month < 1) {
throw logic_error("Month value is invalid: " + to_string(month));
}
month_ = month;
if (day > 31 || day < 1) {
throw logic_error("Day value is invalid: " + to_string(day));
}
day_ = day;
}
int Date::GetYear () const {
return year_;
}
int Date::GetMonth() const {
return month_;
}
int Date::GetDay() const {
return day_;
}
bool operator<(const Date& lhs, const Date& rhs) {
return vector<int>{lhs.GetYear(), lhs.GetMonth(), lhs.GetDay()} <
vector<int>{rhs.GetYear(), rhs.GetMonth(), rhs.GetDay()};
}
bool operator!=(const Date& lhs, const Date& rhs) {
return vector<int>{lhs.GetYear(), lhs.GetMonth(), lhs.GetDay()} !=
vector<int>{rhs.GetYear(), rhs.GetMonth(), rhs.GetDay()};
}
bool operator==(const Date& lhs, const Date& rhs) {
return vector<int>{lhs.GetYear(), lhs.GetMonth(), lhs.GetDay()} ==
vector<int>{rhs.GetYear(), rhs.GetMonth(), rhs.GetDay()};
}
bool operator<=(const Date& lhs, const Date& rhs) {
return vector<int>{lhs.GetYear(), lhs.GetMonth(), lhs.GetDay()} <=
vector<int>{rhs.GetYear(), rhs.GetMonth(), rhs.GetDay()};
}
bool operator>=(const Date& lhs, const Date& rhs) {
return vector<int>{lhs.GetYear(), lhs.GetMonth(), lhs.GetDay()} >=
vector<int>{rhs.GetYear(), rhs.GetMonth(), rhs.GetDay()};
}
bool operator>(const Date& lhs, const Date& rhs) {
return vector<int>{lhs.GetYear(), lhs.GetMonth(), lhs.GetDay()} >
vector<int>{rhs.GetYear(), rhs.GetMonth(), rhs.GetDay()};
}
Date ParseDate(istream& is) {
string date;
is >> date;
istringstream date_stream(date);
bool ok = true;
int year;
ok = ok && (date_stream >> year);
ok = ok && (date_stream.peek() == '-');
date_stream.ignore(1);
int month;
ok = ok && (date_stream >> month);
ok = ok && (date_stream.peek() == '-');
date_stream.ignore(1);
int day;
ok = ok && (date_stream >> day);
ok = ok && date_stream.eof();
if (!ok) {
throw logic_error("Wrong date format: " + date);
}
return Date(year, month, day);
}
ostream& operator<<(ostream& stream, const Date& date) {
stream << setw(4) << setfill('0') << date.GetYear() <<
"-" << setw(2) << setfill('0') << date.GetMonth() <<
"-" << setw(2) << setfill('0') << date.GetDay();
return stream;
}