-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDate.cpp
138 lines (101 loc) · 3.06 KB
/
Date.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
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
#include "Date.h"
using namespace std;
Date::Date(int d, int m, int y){
this->day = d;
this->month = m;
this->year = y;
}
/* Setters */
void Date::setDay(int d){ day = d;}
void Date::setMonth(int m){ month = m;}
void Date::setYear(int y){ year = y;}
/* Accessors */
int Date::getDay() const{return day;}
int Date::getMonth() const{return month;}
int Date::getYear() const{return year;}
/* If date1 > date2 return a number > 0
If date1 == date2 return a number == 0
If date 1 < date 2 return a number < 0 */
int Date::compareDates(Date date2){
/* Compare Years */
if (this->getYear() < date2.getYear()){
return -1;
}else if(this->getYear() > date2.getYear()){
return 1;
}else{ /* Same year => compare months */
if (this->getMonth() < date2.getMonth()){
return -1;
}else if(this->getMonth() > date2.getMonth()){
return 1;
}else{ /* Same month => compare days */
if (this->getDay() < date2.getDay()){
return -1;
}else if(this->getDay() > date2.getDay()){
return 1;
}else{
return 0;
}
}
}
}
int Date::getDateFromStr(string str){
char* temp = const_cast<char*>(str.c_str());
this->day = stoi(strtok(temp,"-"));
this->month = stoi(strtok(NULL,"-"));
this->year = stoi(strtok(NULL,"- \n"));
return 1;
}
int Date::getTodaysDate(){
time_t currentTime = time(NULL);
tm *lTime = localtime(¤tTime);
this->day = lTime->tm_mday;
this-> month = 1 + lTime->tm_mon;
this->year = 1900 + lTime->tm_year;
return 1;
}
void Date::printDate(){
cout << this->day << "-" << this->month << "-" << this->year;
}
string Date::convertDateToStr(){
string day = to_string(this->day);
string month = to_string(this->month);
string year = to_string(this->year);
return day + "-" + month + "-" + year;
}
bool Date::lessThan6Months(Date travelDate){
/* if travel date is before vaccination date */
if (this->compareDates(travelDate) > 0)
return false;
int year = travelDate.getYear() - this->year;
if (year == 0){ /* It's the same year */
int month = travelDate.getMonth() - this->month;
if (month == 6){
int day = travelDate.getDay() - this->day;
if (day <= 0)
return true;
else
return false;
}else if (month < 6)
return true;
else
return false;
}else if (year == 1){
int month = this->month;
for (int i = 0; i < 6; i++){
if (month == 12)
month = 0;
month++;
}
if (travelDate.getMonth() < month)
return true;
else if (travelDate.getMonth() > month)
return false;
else{
if((this->day - travelDate.getDay()) >= 0)
return true;
else
return false;
}
}else
return false;
}