-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTimeF.cpp
302 lines (258 loc) · 7.77 KB
/
TimeF.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
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
#include <time.h>
#include "Defs.h"
#include "TimeF.h"
#include "Message.h"
#include "Session.h"
#include "User.h"
extern Message message;
extern Session session;
extern UserSet users;
// ------------------------------------------------------------------------
bool TimeFunctions::IsWeekend()
{
// Serial.println("*** IsWeekend()");
// Serial.print("- day of week: ");
// 0 Monday, 6 Sunday
int dayOfWeek = GetDayOfWeek();
// Serial.println(dayOfWeek);
if (dayOfWeek < 5)
return false;
else
return true;
}
// ------------------------------------------------------------------------
String TimeFunctions::Time2String(const long seconds, bool duration)
{
// Serial.println("Time2String()");
// Serial.println(seconds);
char value[100];
if (seconds < 3600)
sprintf(value, "%dm %ds", seconds / 60, seconds % 60);
else if (seconds < 24 * 3600)
sprintf(value, "%dh %dm", seconds / 3600, (seconds % 3600) / 60);
else
sprintf(value, "%dd %dh", seconds / (24 * 3600), (seconds % (24 * 3600) / 3600));
// Serial.println(value);
return String(value);
}
// ------------------------------------------------------------------------
String TimeFunctions::Time2StringNoDays(const long seconds, bool duration)
{
if (duration)
return Time2String((seconds % 86400));
else
return Time2String((seconds % 86400) + dstOffset*3600);
}
// ------------------------------------------------------------------------
String TimeFunctions::Time2StringNoDaysCompact(const long seconds, bool duration)
{
String str;
if (duration)
str = Time2String(seconds % 86400);
else
str = Time2String((seconds % 86400) + dstOffset*3600);
int pos = str.indexOf('h');
if (pos >= 0)
str.remove(pos, 2);
pos = str.indexOf('m');
if (pos >= 0)
str.remove(pos, 1);
return str;
}
// ------------------------------------------------------------------------
int TimeFunctions::UpdateDSTOffset()
{
time_t nowSecs = GetTimeInSeconds();
struct tm timeinfo;
gmtime_r(&nowSecs, &timeinfo);
int month = timeinfo.tm_mon + 1;
if ((month >= 4) && (month <= 10))
dstOffset = 2;
else
dstOffset = 1;
}
// ------------------------------------------------------------------------
unsigned long TimeFunctions::GetMidnightToday()
{
time_t nowSecs = GetTimeInSeconds();
struct tm timeinfo;
gmtime_r(&nowSecs, &timeinfo);
int hours = (timeinfo.tm_hour + dstOffset) % 24;
return GetTimeInSeconds() - (hours*3600 + timeinfo.tm_min*60 + timeinfo.tm_sec);
}
// ------------------------------------------------------------------------
unsigned long TimeFunctions::WakeUpTime()
{
int sleepingExtension = IsWeekend() ? 3 : 0;
return GetMidnightToday() + 3600*(SLEEP_TIME_END_WORKDAYS + sleepingExtension);
}
// ------------------------------------------------------------------------
unsigned long TimeFunctions::SleepTime()
{
return GetMidnightToday() + 3600*SLEEP_TIME_BEGIN;
}
// ------------------------------------------------------------------------
unsigned long TimeFunctions::GetTimeInSeconds()
{
time_t nowSecs = time(nullptr);
return nowSecs;
}
// ------------------------------------------------------------------------
int TimeFunctions::GetHours()
{
time_t nowSecs = GetTimeInSeconds();
struct tm timeinfo;
gmtime_r(&nowSecs, &timeinfo);
int hours = (timeinfo.tm_hour + dstOffset) % 24;
return hours;
}
// ------------------------------------------------------------------------
int TimeFunctions::GetMinutes()
{
time_t nowSecs = GetTimeInSeconds();
struct tm timeinfo;
gmtime_r(&nowSecs, &timeinfo);
return timeinfo.tm_min;
}
// ------------------------------------------------------------------------
bool TimeFunctions::IsSleepingTime()
{
// Serial.println("*** IsSleepingTime()");
time_t nowSecs = GetTimeInSeconds();
struct tm timeinfo;
gmtime_r(&nowSecs, &timeinfo);
int hours = (timeinfo.tm_hour + dstOffset) % 24;
int sleepingExtension = IsWeekend() ? 3 : 0;
/*
Serial.print("- sleepingExtension: ");
Serial.println(sleepingExtension);
Serial.print("- hours: ");
Serial.println(hours);
//
unsigned long sinceMidnight = GetMidnightToday();
Serial.print("- sinceMidnight: ");
Serial.println(sinceMidnight);
Serial.println(GetTimeString(sinceMidnight));
Serial.print("- now: ");
Serial.println(GetTimeInSeconds());
Serial.println(GetTimeString(GetTimeInSeconds()));
*/
//
if ((hours < SLEEP_TIME_END_WORKDAYS + sleepingExtension) || (hours >= SLEEP_TIME_BEGIN))
return true;
else
return false;
}
// ------------------------------------------------------------------------
bool TimeFunctions::SleepingTimeJustChanged(bool started)
{
time_t nowSecs = GetTimeInSeconds();
struct tm timeinfo;
gmtime_r(&nowSecs, &timeinfo);
int hours = (timeinfo.tm_hour + dstOffset) % 24;
// sleeping time just started?
if (started)
{
if ((hours == SLEEP_TIME_BEGIN) && (timeinfo.tm_min < 6))
return true;
else
return false;
}
// sleeping time just ended?
else
{
if ((hours == SLEEP_TIME_END_WORKDAYS) && (timeinfo.tm_min < 6))
return true;
else
return false;
}
}
// ------------------------------------------------------------------------
String TimeFunctions::GetTimeString(unsigned long t)
{
time_t nowSecs;
if (t == 0)
nowSecs = GetTimeInSeconds();
else
nowSecs = t;
struct tm timeinfo;
gmtime_r(&nowSecs, &timeinfo);
int hours = (timeinfo.tm_hour + dstOffset) % 24;
char buf[100];
sprintf(buf, "%02d:%02d.%02d", hours, timeinfo.tm_min, timeinfo.tm_sec);
return String(buf);
}
// ------------------------------------------------------------------------
void TimeFunctions::SetClock()
{
// configTime(int timeZone, int daylightOffsetInSeconds, server1, server2)
configTime(2*3600, 3600, "pool.ntp.org", "time.nist.gov");
setenv("TZ", "UTC+00:00", 1);
Serial.print(F("Waiting for NTP time sync: "));
time_t nowSecs = time(nullptr);
while (nowSecs < 8 * 3600 * 2)
{
delay(500);
Serial.print(F("."));
yield();
nowSecs = time(nullptr);
}
Serial.println();
struct tm timeinfo;
gmtime_r(&nowSecs, &timeinfo);
Serial.print("Current seconds: ");
Serial.println(nowSecs);
Serial.print(F("Current time: "));
Serial.print(asctime(&timeinfo));
}
// ------------------------------------------------------------------------
void TimeFunctions::ProcessSleepTime()
{
Serial.println("*** ProcessSleepTime()");
if (session.IsActiveSession())
{
Serial.println("- active session.");
Serial.print("- sleep time: ");
Serial.println(IsSleepingTime() ? "true" : "false");
Serial.print("- wearer sleeps: ");
Serial.println(users.GetWearer()->IsSleeping());
// we assume an active session here
if (IsSleepingTime() && (! users.GetWearer()->IsSleeping()))
{
// Go to sleep
message.MessageTasks();
users.GetWearer()->SetSleeping(true);
message.SendMessage("Good night " + users.GetWearer()->GetName() + ", sleep well and frustrated.");
}
if ((! IsSleepingTime()) && users.GetWearer()->IsSleeping())
{
// Wake up
users.GetWearer()->SetSleeping(false);
message.SendMessage("Good morning " + users.GetWearer()->GetName() + ", wake up boy!");
message.MessageTasks();
}
}
/*
bool wasSleeping = users.GetWearer()->IsSleeping();
if (timeFunc.SleepingTimeJustChanged(true))
{
users.GetWearer()->SetSleeping(true);
// if (! wasSleeping)
{
msg = "Good night " + users.GetWearer()->GetName() + ", sleep well and frustrated.";
message.SendMessage(msg);
}
}
// has the sleeping period just ended?
if (timeFunc.SleepingTimeJustChanged(false))
{
users.GetWearer()->SetSleeping(false);
if (wasSleeping)
{
msg = "Good morning " + users.GetWearer()->GetName() + ", wake up boy!";
message.SendMessage(msg);
}
}
*/
}
//