-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathTask.struct.h
89 lines (84 loc) · 3.38 KB
/
Task.struct.h
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
//+------------------------------------------------------------------+
//| EA31337 framework |
//| Copyright 2016-2021, EA31337 Ltd |
//| https://github.com/EA31337 |
//+------------------------------------------------------------------+
/*
* This file is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* @file
* Includes Task's structs.
*/
#ifndef __MQL__
// Allows the preprocessor to include a header file when it is needed.
#pragma once
#endif
// Includes.
#include "Action.struct.h"
#include "Condition.struct.h"
#include "Task.enum.h"
struct TaskEntry {
ActionEntry action; // Action of the task.
ConditionEntry cond; // Condition of the task.
datetime expires; // Time of expiration.
datetime last_process; // Time of the last process.
datetime last_success; // Time of the last success.
unsigned char flags; // Action flags.
// Constructors.
void TaskEntry() { Init(); }
void TaskEntry(ActionEntry &_action, ConditionEntry &_cond) : action(_action), cond(_cond) { Init(); }
void TaskEntry(long _aid, ENUM_ACTION_TYPE _atype, long _cid, ENUM_CONDITION_TYPE _ctype)
: action(_aid, _atype), cond(_cid, _ctype) {
Init();
}
template <typename AE, typename CE>
void TaskEntry(AE _aid, CE _cid) : action(_aid), cond(_cid) {
Init();
}
// Main methods.
void Init() {
flags = TASK_ENTRY_FLAG_NONE;
SetFlag(TASK_ENTRY_FLAG_IS_ACTIVE, action.IsActive() && cond.IsActive());
SetFlag(TASK_ENTRY_FLAG_IS_INVALID, action.IsInvalid() || cond.IsInvalid());
expires = last_process = last_success = 0;
}
// Flag methods.
bool HasFlag(unsigned char _flag) { return bool(flags & _flag); }
void AddFlags(unsigned char _flags) { flags |= _flags; }
void RemoveFlags(unsigned char _flags) { flags &= ~_flags; }
void SetFlag(ENUM_TASK_ENTRY_FLAGS _flag, bool _value) {
if (_value)
AddFlags(_flag);
else
RemoveFlags(_flag);
}
void SetFlags(unsigned char _flags) { flags = _flags; }
// State methods.
bool IsActive() { return HasFlag(ACTION_ENTRY_FLAG_IS_ACTIVE); }
bool IsDone() { return HasFlag(ACTION_ENTRY_FLAG_IS_DONE); }
bool IsFailed() { return HasFlag(ACTION_ENTRY_FLAG_IS_FAILED); }
bool IsValid() { return !HasFlag(ACTION_ENTRY_FLAG_IS_INVALID); }
// Getters.
long GetActionId() { return action.GetId(); }
long GetConditionId() { return cond.GetId(); }
ActionEntry GetAction() { return action; }
ConditionEntry GetCondition() { return cond; }
ENUM_ACTION_TYPE GetActionType() { return action.GetType(); }
ENUM_CONDITION_TYPE GetConditionType() { return cond.GetType(); }
// Setters.
void SetActionObject(void *_obj) { action.SetObject(_obj); }
void SetConditionObject(void *_obj) { cond.SetObject(_obj); }
};