Menu

[c54480]: / task.cpp  Maximize  Restore  History

Download this file

355 lines (306 with data), 7.0 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
 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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
#include "task.h"
#include <QDebug>
#include "branchitem.h"
#include "taskmodel.h"
#include "vymmodel.h"
Task::Task(TaskModel *tm)
{
// qDebug()<<"Constr. Task";
status = NotStarted;
awake = Task::WideAwake;
branch = NULL;
prio = 0;
prio_delta = 0;
model = tm;
date_creation = QDateTime::currentDateTime();
}
Task::~Task()
{
// qDebug()<<"Destr. Task";
if (branch) branch->setTask (NULL);
}
void Task::setModel (TaskModel* tm)
{
model = tm;
}
void Task::cycleStatus(bool reverse)
{
if (awake == Morning)
setAwake (WideAwake);
else
{
int i = status;
reverse ? i-- : i++;
if ( i < 0) i = 2;
if ( i > 2) i = 0;
setStatus ( (Task::Status) i );
}
if (branch) branch->updateTaskFlag ();
}
void Task::setStatus(const QString &s)
{
if (s == "NotStarted")
setStatus(NotStarted);
else if (s == "WIP")
setStatus(WIP);
else if (s == "Finished")
setStatus(Finished);
else
qWarning() << "Task::setStatus Unknown value: " << s;
}
void Task::setStatus(Status s)
{
if (s == status) return;
status = s;
if (branch) branch->updateTaskFlag();
}
Task::Status Task::getStatus()
{
return status;
}
QString Task::getStatusString()
{
switch (status)
{
case NotStarted: return "NotStarted";
case WIP: return "WIP";
case Finished: return "Finished";
}
return "Undefined";
}
QString Task::getIconString()
{
QString s;
switch (status)
{
case NotStarted:
s = "task-new";
break;
case WIP:
s = "task-wip";
break;
case Finished:
s = "task-finished";
break;
default:
s = "status:undefined";
}
if (status != Finished)
switch (awake)
{
case Sleeping:
s += "-sleeping";
break;
case Morning:
s += "-morning";
break;
default: break;
}
return s;
}
void Task::setAwake(const QString &s)
{
if (s == "Sleeping")
setAwake(Sleeping);
else if (s == "Morning")
setAwake(Morning);
else if (s == "WideAwake")
setAwake(WideAwake);
else
qWarning() << "Task::setAwake Unknown value: " << s;
}
void Task::setAwake(Task::Awake a)
{
if (awake != a )
{
awake = a;
if (branch) branch->updateTaskFlag();
}
}
Task::Awake Task::getAwake()
{
return awake;
}
QString Task::getAwakeString()
{
switch (getAwake() )
{
case Sleeping: return "Sleeping";
case Morning: return "Morning";
case WideAwake: return "WideAwake";
}
return "Undefined";
}
bool Task::updateAwake()
{
qint64 secs = getSecsSleep();
if ( secs < 0 )
{
if ( awake == Task::Sleeping )
{
setAwake(Task::Morning);
return true;
}
} else if ( secs > 0 )
{
if ( awake != Task::Sleeping)
{
setAwake(Task::Sleeping);
return true;
}
}
return false;
}
void Task::setPriority (int p)
{
prio = p;
}
int Task::getPriority()
{
return prio;
}
int Task::getAgeCreation()
{
return date_creation.daysTo (QDateTime::currentDateTime() );
}
int Task::getAgeModification()
{
if (date_modification.isValid() )
return date_modification.daysTo (QDateTime::currentDateTime() );
else
return getAgeCreation();
}
void Task::setDateCreation (const QString &s)
{
date_creation = QDateTime().fromString (s,Qt::ISODate);
}
QDateTime Task::getDateCreation ()
{
return date_creation;
}
void Task::setDateModification()
{
date_modification = QDateTime::currentDateTime();
}
void Task::setDateModification(const QString &s)
{
date_modification = QDateTime().fromString (s,Qt::ISODate);
}
QDateTime Task::getDateModification ()
{
return date_modification;
}
bool Task::setDaysSleep(qint64 n)
{
return setDateSleep ( QDate::currentDate().addDays (n).toString(Qt::ISODate) );
}
bool Task::setHoursSleep(qint64 n)
{
return setDateSleep ( QDateTime::currentDateTime().addSecs (n * 3600 ).toString(Qt::ISODate) );
}
bool Task::setSecsSleep(qint64 n)
{
if (n == 0) setAwake(Morning);
return setDateSleep ( QDateTime::currentDateTime().addSecs (n).toString(Qt::ISODate) );
}
bool Task::setDateSleep(const QString &s)
{
if (setDateSleep( QDateTime().fromString (s, Qt::ISODate) ))
return true;
else if (setDateSleep( QDateTime().fromString (s, Qt::TextDate) ))
return true;
else if (setDateSleep( QDateTime().fromString (s, Qt::DefaultLocaleShortDate) ))
return true;
else if (setDateSleep( QDateTime().fromString (s, Qt::DefaultLocaleLongDate) ))
return true;
else
return false;
}
bool Task::setDateSleep(const QDateTime &d)
{
if (!d.isValid() ) return false;
date_sleep = d;
updateAwake();
return true;
}
qint64 Task::getDaysSleep()
{
qint64 d = 1;
if (date_sleep.isValid() )
d = QDateTime::currentDateTime().daysTo (date_sleep);
else
{
// qWarning() << "Task::getDaysSleep date_sleep is invalid for branch " << branch->getHeadingPlain();
return -1;
}
return d;
}
qint64 Task::getSecsSleep()
{
qint64 d = 0; // Meaning: No sleep time set so far
if (date_sleep.isValid() )
d = QDateTime::currentDateTime().secsTo (date_sleep);
return d;
}
QDateTime Task::getSleep()
{
return date_sleep;
}
void Task::setPriorityDelta(const int &n)
{
prio_delta = n;
}
int Task::getPriorityDelta()
{
return prio_delta;
}
void Task::setBranch (BranchItem *bi)
{
branch = bi;
mapName = bi->getModel()->getMapName();
}
BranchItem* Task::getBranch ()
{
return branch;
}
QString Task::getName ()
{
if (branch)
return branch->getHeadingPlain();
else
{
qWarning()<<"Task::getName no branch!";
return "UNDEFINED";
}
}
QString Task::getMapName ()
{
return mapName;
}
QString Task::saveToDir()
{
QString sleepAttr;
if (date_sleep.isValid() )
sleepAttr = attribut ("date_sleep", date_sleep.toString (Qt::ISODate) );
else
sleepAttr = attribut ("date_sleep", "2018-01-01T00:00:00");
// Experimental: Also output priority based on arrow flags for external sorting
QString prioAttr;
if (branch)
{
if (branch->hasActiveStandardFlag("2arrow-up")) prioAttr = attribut ("prio", "2");
if (branch->hasActiveStandardFlag("arrow-up")) prioAttr = attribut ("prio", "1");
}
QString prioDeltaAttr;
if (prio_delta != 0)
prioDeltaAttr = attribut ("prio_delta", QString("%1").arg(prio_delta));
return singleElement ("task",
attribut ("status", getStatusString() ) +
attribut ("awake", getAwakeString() ) +
attribut ("date_creation", date_creation.toString (Qt::ISODate) ) +
attribut ("date_modification", date_modification.toString (Qt::ISODate) ) +
prioDeltaAttr +
sleepAttr +
prioAttr
);
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.