-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.hcp
227 lines (168 loc) · 7.95 KB
/
items.hcp
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
//////////////////////////////////////////////////////////////////////////////////////////
#include lmdb.lmap
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
class SearchableBase
bool synced = false
bool selected = false
vOLUNTEER inbound_vol
vector<tAG> searchable_tags
vector<vOLUNTEER> broadcast_targets
vector<string> unknown_broadcast_targets
// from volunteer tags or message origin tags
string estimated_firstname
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
class SurveyAnswerBase
vOLUNTEER source_volunteer
bool synced
//////////////////////////////////////////////////////////////////////////////////////////
flec_class SurveyAnswer : public SurveyAnswerBase
string source_number
string answer
/\/ uNSORTED /\/
sync();
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
// most recent broadcasts
flec_class Message : public lmapTHING, public SearchableBase, public Softpointable
[soft: mESSAGE]
string name // aka broadcast ID. why not make it persistent
bool is_inbound = false
bool is_outbound = false
string message
bool is_survey = false
vector<string> survey_choices
// for handling survey answers
vector<string> outbound_numbers
string inbound_number
SDate date
/\/ uNSORTED /\/
sync();
getInboundLabel() -> string;
//////////////////////////////////////////////////////////////////////////////////////////
DECLlmdbmap(messages, Message, "mantissadb");
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
class VolunteerBase
vector<tASK> taskptrs
//////////////////////////////////////////////////////////////////////////////////////////
flec_class Volunteer : public lmapTHING, public SearchableBase, public Softpointable, public VolunteerBase
[soft: vOLUNTEER]
string name // aka phonenumber, which is used as ID (contracted and no space)
string full_name
string firstname // for convenience
vector<string> tags
string notes
vector<string> assigned_tasks :: 3
SDate date
// creation date, automatic
/\/ uNSORTED /\/
sync();
addTask(const string& thetask_id);
removeTask(const string& thetask_id);
//////////////////////////////////////////////////////////////////////////////////////////
DECLlmdbmap(volunteers, Volunteer, "mantissadb");
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
flec_class TaskAssignment
string volunid
char task_letter // for this particular volunteer
bool allow_accept
bool allow_refuse
bool allow_done
bool accepted
bool refused
bool marked_done
bool message_sent
//////////////////////////////////////////////////////////////////////////////////////////
flec_class TaskUpdate
string text
SDate time
//////////////////////////////////////////////////////////////////////////////////////////
class TaskBase
vector<vOLUNTEER> vol_assignees
//////////////////////////////////////////////////////////////////////////////////////////
flec_class Task : public lmapTHING, public SearchableBase, public Softpointable, public TaskBase
[soft: tASK]
string name
string description
string notes
SDate creation_date
vector<TaskUpdate> updates
SDate last_update
vector<TaskAssignment> assignments
bool done_signalled
bool completed
SDate completion_date
/\/ uNSORTED /\/
sync();
addVolunteer(Volunteer * leteer, Manti * lemanti);
clearVolunteers();
//////////////////////////////////////////////////////////////////////////////////////////
DECLlmdbmap(tasks, Task, "mantissadb");
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
class TagBase
bool selected
//////////////////////////////////////////////////////////////////////////////////////////
flec_class Tag : public lmapTHING, public Softpointable, public TagBase
[soft: tAG]
// found tags
string name
int assigned_id
//////////////////////////////////////////////////////////////////////////////////////////
DECLlmdbmap(tags, Tag, "mantissadb");
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
flec_class RawMessage
bool inbound
bool outbount
bool not_actually_sent :: 3
string message_id // messageId
string out_addr
string message
SDate received_time
// won't be using timestamp for now
bool processed = false
//////////////////////////////////////////////////////////////////////////////////////////
//DECLlmdbmap(rawinbounds, RawInbound, "mantissadb");
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
class SearchPredPart
string text;
vector<Tag*> tags; // tags that match this part
bool got_any = false
/\/ uNSORTED /\/
matchCheck(const string& thestr) -> bool;
//////////////////////////////////////////////////////////////////////////////////////////
class SearchPred
vector<SearchPredPart> parts
int matchcount = 0;
/\/ uNSORTED /\/
matches(Volunteer& levol) -> bool;
// matches(Message& levol) -> bool;
finishMatch(const string& thestr) -> bool;
clearBools();
matches(Task& task) -> bool;
matches(Message& mess) -> bool;
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////