-
Notifications
You must be signed in to change notification settings - Fork 25
/
memory.cpp
405 lines (317 loc) · 9.94 KB
/
memory.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
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/**************************************************************************
* Copyright (c) 2012-2015 Raffaele Pertile <[email protected]>
* This file is part of touchegg-gce.
*
* touchegg-gce 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.
*
* touchegg-gce 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 touchegg-gce. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/
#include "memory.h"
QStringList Memory::groupsList;
QStringList Memory::propsList;
QStringList Memory::appsList;
QHash<QString, App*>* Memory::appsHash;
QHash<QString, Group*>* Memory::groupsHash;
type_propsHash* Memory::propsHash;
int Memory::groupCounter;
//Reminder: all memory variables and mothonds are STATIC
//Note: Lists are used to keep elements ordered for users, Hash->keys() would be random
Memory::Memory(QObject *parent) : QObject(parent)
{
groupsList = QStringList();
propsList = QStringList();
appsList = QStringList();
appsHash = new QHash<QString, App*>();
groupsHash = new QHash<QString, Group*>();
propsHash = new QHash<QString, QString>();
groupCounter = 0;
}
//---Memory -- GROUP
QString Memory::addGroup(QString apps){
QString name;
if (apps == "All")
name = tr("All");
else
name = QString(tr("Group ")).append(QString::number(++groupCounter));
groupsList.append(name);
groupsHash->insert(name,new Group(name));
int k = 0;
//extracting applications from apps string
while (true){
QString part = apps.section(',',k,k,QString::SectionSkipEmpty);
if (part.isEmpty()) break; //due to SectionSkipEmpty, only possible if string is done
while (part.startsWith(" ")) part.remove(0,1); //those blanc spaces are worthless
while (part.endsWith(" ")) part.chop(1);
if (!part.isEmpty()) //se qualcosa è rimasto...
addApp(part, name);
k++;
}
return name;
}
Group* Memory::getGroup(QString name){
return groupsHash->value(name);
}
QStringList Memory::getGroupsNames(){
return groupsList;
}
QList<Group*> Memory::getGroups(){
return groupsHash->values();
}
void Memory::removeGroup(QString name){
groupsList.removeAll(name);
groupsHash->remove(name);
foreach(App* a, *appsHash) //destroy group applications
if (!a->getGroup()->getName().compare(name))
removeApp(a->getName());
}
//---Memory -- PROPERTY
void Memory::addProp(QString name, QString value){
if(propsList.contains(name)) return;
propsList.append(name);
propsHash->insert(name,value);
}
QString Memory::getProp(QString name){
return propsHash->value(name);
}
QStringList Memory::getProps(){
return propsList;
}
void Memory::removeProp(QString name){
propsList.removeAll(name);
propsHash->remove(name);
}
//---Memory -- APPLICATION
void Memory::addApp(QString name, QString group){
if(appsList.contains(name)) return;
if (!groupsList.contains(group)){
groupsList.append(group);
groupsHash->insert(group,new Group(group));
}
appsList.append(name);
appsHash->insert(name,new App(name, getGroup(group)));
}
void Memory::addApp(QString name){
if(appsList.contains(name)) return;
addGroup(name);
appsList.append(name);
appsHash->insert(name,new App(getGroup(name)->getName()));
}
App* Memory::getApp(QString name){
return appsHash->value(name);
}
QStringList Memory::getAppsNames(){
return appsList;
}
QList<App*> Memory::getApps(){
return appsHash->values();
}
void Memory::removeApp(QString name){
appsList.removeAll(name);
appsHash->remove(name);
}
//--- GROUP
Group::Group(QString name){
this->name = name;
gestsList = QStringList();
gestsHash = new QHash<QString, Gesture*>();
}
QString Group::getName(){
return name;
}
//--- GROUP -- App
void Group::addApp(QString name){
Memory::addApp(name, this->name);
}
void Group::addApps(QString names){
int k = 0;
while (true){//extracting apps names from names string
QString part = names.section(',',k,k,QString::SectionSkipEmpty);
if (part.isEmpty()) break;
while (part.startsWith(" ")) part.remove(0,1);
while (part.endsWith(" ")) part.chop(1);
if (!part.isEmpty())
addApp(part);
k++;
}
}
App* Group::getApp(QString name){
App *ret = Memory::getApp(name);
return ret->getGroup() == this?ret:NULL;//this get app is specific for this group, not to memory, filtering
}
QStringList Group::getAppsNames(){
QStringList ret;
foreach(App *a, Memory::getApps()){//group have no reference to its apps, so is necessary to costruct one.
if (a->getGroup()->getName() == name)
ret.append(a->getName());
}
return ret;
}
QList<App*> Group::getApps(){
QList<App*> *ret = new QList<App*>();
foreach(App *a, Memory::getApps()){//group have no reference to its apps, so is necessary to costruct one.
if (a->getGroup() == this)
ret->append(a);
}
return *ret;
}
//--- GROUP -- Gesture
void Group::addGest(int fingers, Lists::GestureType type, Lists::GestureDirection direction){
Gesture *g = new Gesture(fingers, type, direction, this);
if(gestsList.contains(*g)){
qDebug("Aptempting to insert an existing gesture, skipping.");
return;
}
gestsList.append(g->toString());
gestsHash->insert(g->toString(), g);
}
void Group::addGest(Gesture *gesture){
if(gestsList.contains(*gesture))return;
gesture->setGroup(this);
gestsList.append(*gesture);
gestsHash->insert(*gesture, gesture);
}
Gesture* Group::getGest(int fingers, Lists::GestureType type, Lists::GestureDirection direction){
Gesture *g = new Gesture(fingers, type, direction, this);
if(!gestsList.contains(*g))return NULL;
return gestsHash->value(*g);
}
QList<Gesture*> Group::getGests(){
return gestsHash->values();
}
QList<Gesture*> Group::getSortedGestures(){
gestsList.sort();
QList<Gesture*> ret;
foreach (QString ges, gestsList) {
ret.append(gestsHash->value(ges));
}return ret;
}
void Group::removeGesture(int fingers, Lists::GestureType type, Lists::GestureDirection direction){
Gesture *g = new Gesture(fingers, type, direction, this);
gestsList.removeAll(*g);
gestsHash->remove(*g);
}
void Group::removeGesture(Gesture gest){
gestsList.removeAll(gest);
gestsHash->remove(gest);
}
//--- Application
App::App(QString name, Group *group){
this->group = group;
this->name = name;
}
App::App(QString name, QString group){
Group *g = Memory::getGroup(group);
if (g == NULL) return;
this->group = g;
this->name = name;
}
App::App(QString name){
this->group = new Group(name);
this->name = name;
}
QString App::getName(){
return name;
}
Group* App::getGroup(){
return group;
}
void App::changeGroup(QString name){
Group *g = Memory::getGroup(name);
if (g == NULL) return;
group = g;
}
void App::changeGroup(Group *group){
this->group = group;
}
//--- Gesture
Gesture::Gesture(int fingers, Lists::GestureType type, Lists::GestureDirection direction, Group *parent){
this->fingers = fingers;
this->type = type;
this->direction = direction;
this->parent = parent;
}
Gesture::Gesture(Gesture *ges){
fingers = ges->fingers;
type = ges->type;
direction = ges->direction;
parent = ges->parent;
setAction(new Action(ges->act));
}
void Gesture::destroy(){
parent->removeGesture(fingers, type, direction);
}
void Gesture::setGroup(Group *group){
this->parent = group;
}
int Gesture::getFingers(){
return fingers;
}
Lists::GestureType Gesture::getType(){
return type;
}
Lists::GestureDirection Gesture::getDirection(){
return direction;
}
void Gesture::setAction(Lists::ActionType type){
act = new Action(type);
}
void Gesture::setAction(Action *act){
this->act = act;
}
Action* Gesture::getAction(){
return act;
}
void Gesture::removeAction(){
act = NULL;
}
QString Gesture::toString(){
return QString::number(fingers)
.append("/").append(Lists::toString(type))
.append("/").append(Lists::toString(direction));
}
//--- Action
Action::Action(Lists::ActionType type){
this->type = type;
paramsList = QStringList();
parHash = new QHash<QString,QString>();
}
Action::Action(Action *act){
type = act->type;
paramsList = QStringList(act->paramsList);
parHash = new QHash<QString,QString>(*act->parHash);
}
void Action::addParam(QString name){
if (paramsList.contains(name))return;
paramsList.append(name);
}
void Action::addParam(QString name, QString value){
if (paramsList.contains(name))return;
paramsList.append(name);
parHash->insert(name, value);
}
Lists::ActionType Action::getType(){
return type;
}
QStringList Action::getParamKeys(){
return paramsList;
}
QString Action::getParamValue(QString key){
return parHash->value(key);
}
void Action::removeParam(QString name){
paramsList.removeAll(name);
parHash->remove(name);
}
void Action::changeParamValue(QString name, QString value){
parHash->remove(name);
parHash->insert(name, value);
}