-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfdb.cpp
686 lines (544 loc) · 18.3 KB
/
fdb.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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
#include <QSqlDatabase>
#include <QSqlQuery>
#include <QSqlError>
#include <QFile>
#include "fdb.h"
#include "fwatchedfolder.h"
#include "fgame.h"
#include "libfusion.h"
#include "fdbupdater.h"
#include <QFile>
FDB::FDB(QObject *parent)
{
}
bool FDB::init()
{
if (!LibFusion::makeSureWorkingDirExists())
{
qCCritical(fLibDB) << ("Unable to create/access working Dir!");
return false;
}
QDir workingDir = LibFusion::getWorkingDir();
QFile dbFile(workingDir.absolutePath() + QDir::separator() + "fusion.db");
bool createDB = false;
if (!dbFile.exists())
{
qCDebug(fLibDB) << ("Database will be created.");
createDB = true;
}
bool initSuccessful = true;
QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
db.setHostName("localhost");
db.setDatabaseName(QFileInfo(dbFile).absoluteFilePath());
bool ok = db.open();
if(!ok)
{
QSqlError e = db.lastError();
qCCritical(fLibDB) << ("Unable to open Database!");
qCCritical(fLibDB) << (e.databaseText());
qCCritical(fLibDB) << (e.driverText());
qCCritical(fLibDB) << (e.nativeErrorCode());
qCCritical(fLibDB) << (QString::number(e.type()));
return false;
}
QSqlQuery query;
FDBUpdater updater(this, this);
if(createDB)
{
qCDebug(fLibDB) << ("Creating database.");
query.exec("CREATE TABLE IF NOT EXISTS prefs(key TINYTEXT NOT NULL, valuetype TINYINT NOT NULL, number TINYINT NOT NULL, text VARCHAR(255) NOT NULL)");
//(later) if clientToken doesnt exists, show login and run registerClient(), if no account, //run register()
//(later) if lang is not set, set it to the default system language
query.exec("CREATE TABLE IF NOT EXISTS games(id INTEGER PRIMARY KEY ASC, gameName TEXT NOT NULL, gameType TINYINT NOT NULL , gameDirectory TEXT NOT NULL, relExecutablePath TEXT NOT NULL, gameCommand TEXT, gameArgs TEXT, gameLauncher INTEGER, savegameDir TEXT, lastLaunched datetime DEFAULT NULL)");
query.exec("CREATE TABLE IF NOT EXISTS watchedFolders ( `id` INTEGER PRIMARY KEY ASC, `path` VARCHAR(255),forLauncher TINY INT DEFAULT '0', launcherID INT DEFAULT NULL );");
query.exec("CREATE TABLE IF NOT EXISTS launchers(id INTEGER PRIMARY KEY ASC, launcherName TEXT NOT NULL, launcherPath TEXT NOT NULL, launcherArgs TEXT NOT NULL, suffix TEXT)");
qCDebug(fLibDB) << ("Database created.");
updater.initVersion();
}
if(updater.checkForDBUpdate())
{
qCDebug(fLibDB) << ("Found an update, updating db!");
initSuccessful = updater.updateDB();
}
}
bool FDB::addGame(FGame game)
{
QSqlQuery gameQuery;
if (!launcherExists(game.getLauncher()))
addLauncher(game.getLauncher());
gameQuery.prepare("INSERT INTO games(gameName, gameType, gameDirectory, relExecutablePath, gameCommand, gameArgs, gameLauncher) VALUES (:gameName, :gameType, :gameDirectory, :relExecutablePath, :gameCommand, :gameArgs, :gameLauncher)");
gameQuery.bindValue(":gameName", game.getName());
gameQuery.bindValue(":gameType", game.getType());
gameQuery.bindValue(":gameDirectory", game.getPath());
gameQuery.bindValue(":relExecutablePath", game.getExe());
gameQuery.bindValue(":gameCommand", game.getCommand());
gameQuery.bindValue(":gameArgs", game.getArgs());
if (game.doesUseLauncher())
gameQuery.bindValue(":gameLauncher", game.getLauncher().getDbId());
else
gameQuery.bindValue(":gameLauncher", -1);
qCDebug(fLibDB) << ("Game Added: " + game.getName().toLatin1());
return tryExecute(&gameQuery);
}
bool FDB::removeGameById(int id)
{
QSqlQuery removalQuery;
removalQuery.prepare("DELETE FROM games WHERE id = :id");
removalQuery.bindValue(":id", id);
return tryExecute(&removalQuery);
}
FGame* FDB::createGameFromQuery(QSqlQuery query)
{
FGame* game = new FGame();
game->setName(query.value(0).toString());
game->setPath(query.value(2).toString());
game->setExe(query.value(3).toString());
game->setType((FGameType)query.value(1).toInt());
game->setCommand(query.value(4).toString());
game->setArgs(query.value(5).toStringList());
game->dbId = query.value(7).toInt();
QString lp = query.value(9).toString();
game->setGameLastPlayed(QDateTime::fromString(lp, "yyyy-MM-dd HH:mm:ss"));
bool getLauncherOK;
int launcherID = query.value(6).toInt(&getLauncherOK);
if (getLauncherOK && launcherID != -1)
{
FLauncher launcher = getLauncher(launcherID);
game->setLauncher(launcher);
}
game->setSavegameDir(query.value(8).toString());
return game;
}
FGame* FDB::getGame(int id)
{
QSqlQuery gameQuery;
gameQuery.prepare("SELECT gameName, gameType, gameDirectory, relExecutablePath, gameCommand, gameArgs, gameLauncher, id, savegameDir, lastLaunched FROM games WHERE id = :id");
gameQuery.bindValue(":id", id);
tryExecute(&gameQuery);
if (!gameQuery.next())
{
return NULL;
}
return createGameFromQuery(gameQuery);
}
QList<FGame*> FDB::getGameList()
{
QList<FGame*> gameList;
QSqlQuery libraryQuery;
FGame game;
libraryQuery.prepare("SELECT gameName, gameType, gameDirectory, relExecutablePath, gameCommand, gameArgs, gameLauncher, id, savegameDir, lastLaunched FROM games ORDER BY gameName ASC");
tryExecute(&libraryQuery);
while (libraryQuery.next())
{
gameList.append(createGameFromQuery(libraryQuery));
}
return gameList;
}
int FDB::getGameCount()
{
QSqlQuery countQuery;
countQuery.prepare("SELECT count() FROM games");
tryExecute(&countQuery);
if (!countQuery.next())
{
return 0;
}
qCDebug(fLibDB) << "Games found: " << countQuery.value(0).toString().toLatin1();
return countQuery.value(0).toInt();
}
QString FDB::getTextPref(QString pref, QString defaultValue)
{
QString val = getTextPref(pref);
//"" not an optimal result for "not found".
//have to find something better here, maybe add a exception
if (val != "" || defaultValue == "")
return val;
else
addTextPref(pref, defaultValue);
return defaultValue;
}
QString FDB::getTextPref(QString pref)
{
QSqlQuery prefQuery;
prefQuery.prepare("SELECT (text) FROM prefs WHERE key = :key AND valuetype = 1");
prefQuery.bindValue(":key", pref);
tryExecute(&prefQuery);
if (!prefQuery.next())
{
return QString();
}
else
{
return prefQuery.value(0).toString();
}
}
bool FDB::addTextPref(QString pref, QString value)
{
QSqlQuery prefQuery;
prefQuery.prepare("INSERT INTO prefs(key, valuetype, number, text) VALUES (:key, 1, 0, :value)");
prefQuery.bindValue(":key", pref);
prefQuery.bindValue(":value", value);
return tryExecute(&prefQuery);
}
bool FDB::updateTextPref(QString pref, QString value)
{
QSqlQuery prefQuery;
prefQuery.prepare("UPDATE prefs SET text = :value WHERE key = :key");
prefQuery.bindValue(":value", value);
prefQuery.bindValue(":key", pref);
bool res = tryExecute(&prefQuery);
if(prefQuery.numRowsAffected() == 0) {
qCDebug(fLibDB) << ("Added Text-Pref:" + pref);
return addTextPref(pref, value);
}
else
{
return res;
}
}
bool FDB::deletePref(QString pref)
{
QSqlQuery delQuery;
delQuery.prepare("DELETE FROM prefs WHERE key = :key");
delQuery.bindValue(":key", pref);
return tryExecute(&delQuery);
}
int FDB::getIntPref(QString pref, int defaultValue)
{
int val = getIntPref(pref);
//-1 not an optimal result for "not found".
//have to find something better here, maybe add a exception
if (val != -1 || defaultValue == -1)
return val;
else
addIntPref(pref, defaultValue);
return defaultValue;
}
int FDB::getIntPref(QString pref)
{
QSqlQuery prefQuery;
prefQuery.prepare("SELECT (number) FROM prefs WHERE key = :key AND valuetype = 2");
prefQuery.bindValue(":key", pref);
tryExecute(&prefQuery);
if (!prefQuery.next())
{
return -1;
}
else
{
return prefQuery.value(0).toInt();
}
}
bool FDB::addIntPref(QString pref, int value)
{
QSqlQuery prefQuery;
prefQuery.prepare("INSERT INTO prefs(key, valuetype, number, text) VALUES (:key, 2, :value, '')");
prefQuery.bindValue(":key", pref);
prefQuery.bindValue(":value", value);
return tryExecute(&prefQuery);
}
bool FDB::updateIntPref(QString pref, int value)
{
QSqlQuery prefQuery;
prefQuery.prepare("UPDATE prefs SET number = :value WHERE key = :key");
prefQuery.bindValue(":value", value);
prefQuery.bindValue(":key", pref);
bool res = tryExecute(&prefQuery);
if(prefQuery.numRowsAffected() == 0) {
qCDebug(fLibDB) << ("Added Int-Pref:" + pref);
return addIntPref(pref, value);
}
else
{
return res;
}
}
bool FDB::getBoolPref(QString pref, bool defaultValue)
{
bool val = defaultValue;
try {
val = getBoolPref(pref);
}
catch(int i)
{
addBoolPref(pref, defaultValue);
qCDebug(fLibDB) << ("added Pref: " + pref);
}
return val;
}
bool FDB::updateGame(FGame *g)
{
QSqlQuery q;
q.prepare("UPDATE games SET gameName = :gName, gameDirectory = :gDir, relExecutablePath = :exec, gameLauncher = :gLauncher, savegameDir = :gSavegameDir WHERE id = :gID");
q.bindValue(":gName", g->getName());
q.bindValue(":gDir", g->getPath());
q.bindValue(":exec", g->getExe());
if (g->doesUseLauncher())
{
q.bindValue(":gLauncher", g->getLauncher().getDbId());
}
else
{
q.bindValue(":gLauncher", QVariant(QVariant::String));
}
if (g->savegameSyncEndabled())
q.bindValue(":gSavegameDir", g->getSavegameDir().absolutePath());
else
q.bindValue(":gSavegameDir", QVariant(QVariant::String));
q.bindValue(":gID", g->dbId);
return tryExecute(&q);
}
bool FDB::updateLastLaunched(FGame *g)
{
QString currentDateTime = QDateTime::currentDateTime().toString("yyyy-MM-dd HH:mm:ss");
QSqlQuery q;
q.prepare("UPDATE games SET lastLaunched = :dateTime WHERE id = :gID");
q.bindValue(":gID", g->dbId);
q.bindValue(":dateTime", currentDateTime);
return tryExecute(&q);
}
QList<FGame *> FDB::getLatestLaunchedGames(int limit)
{
QList<FGame*> gameList;
QSqlQuery q;
FGame game;
q.prepare("SELECT gameName, gameType, gameDirectory, relExecutablePath, gameCommand, gameArgs, gameLauncher, id, savegameDir, lastLaunched FROM games ORDER BY lastLaunched DESC LIMIT :limit");
q.bindValue(":limit", limit);
tryExecute(&q);
while (q.next())
{
gameList.append(createGameFromQuery(q));
}
return gameList;
}
bool FDB::updateLauncher(FLauncher launcher)
{
QSqlQuery q;
q.prepare("UPDATE launchers SET launcherName = :lName, launcherPath = :lPath, launcherArgs = :lArgs, suffix = :lSuffix WHERE id = :lId");
q.bindValue(":lName", launcher.getName());
q.bindValue(":lPath", launcher.getPath());
q.bindValue(":lArgs", launcher.getArgs());
q.bindValue(":lId", launcher.getDbId());
q.bindValue(":lSuffix", launcher.getFileEndings());
return tryExecute(&q);
}
bool FDB::getBoolPref(QString pref)
{
QSqlQuery prefQuery;
prefQuery.prepare("SELECT (number) FROM prefs WHERE key = :key AND valuetype = 3");
prefQuery.bindValue(":key", pref);
tryExecute(&prefQuery);
if (!prefQuery.next())
throw 20;
else
return prefQuery.value(0).toBool();
}
bool FDB::addBoolPref(QString pref, bool value)
{
QSqlQuery prefQuery;
prefQuery.prepare("INSERT INTO prefs(key, valuetype, number, text) VALUES (:key, 3, :value, '')");
prefQuery.bindValue(":key", pref);
prefQuery.bindValue(":value", value);
return tryExecute(&prefQuery);
}
bool FDB::updateBoolPref(QString pref, bool value)
{
QSqlQuery prefQuery;
prefQuery.prepare("UPDATE prefs SET number = :value WHERE key = :key");
prefQuery.bindValue(":value", value);
prefQuery.bindValue(":key", pref);
bool res = tryExecute(&prefQuery);
if(prefQuery.numRowsAffected() == 0) {
qCDebug(fLibDB) << ("Added Int-Pref:" + pref);
return addBoolPref(pref, value);
}
else
{
return res;
}
}
bool FDB::updateWatchedFolders(QList<FWatchedFolder> data)
{
QSqlQuery updateQuery;
updateQuery.prepare("DELETE FROM watchedFolders");
tryExecute(&updateQuery);
QSqlQuery insertQuery;
insertQuery.prepare("INSERT INTO watchedFolders (path, launcherID, forLauncher) VALUES(:folder, :launcherID, :forLauncher)");
for (FWatchedFolder dir : data)
{
insertQuery.bindValue(":folder", dir.getDirectory().absolutePath());
insertQuery.bindValue(":launcherID", dir.getLauncherID());
insertQuery.bindValue(":forLauncher", dir.forLauncher);
tryExecute(&insertQuery);
insertQuery.finish();
qCDebug(fLibDB) << ("Add Lib: " + dir.getDirectory().absolutePath().toLatin1());
}
return true;
}
QList<FWatchedFolder> FDB::getWatchedFoldersList() {
QList<FWatchedFolder> result;
QSqlQuery folderqQueue;
folderqQueue.exec("SELECT path, id, launcherID, forLauncher FROM watchedFolders ORDER BY path ASC");
while (folderqQueue.next())
{
FWatchedFolder folder;
folder.setDirectory(QDir(folderqQueue.value(0).toString()));
folder.setDbID(folderqQueue.value(1).toInt());
folder.forLauncher = folderqQueue.value(3).toBool();
if(folder.forLauncher)
folder.setLauncherID(folderqQueue.value(2).toInt());
result.append(folder);
}
return result;
}
bool FDB::watchedFolderExists(FWatchedFolder *wf)
{
QSqlQuery q;
q.prepare("SELECT count(*) as c FROM watchedFolders WHERE path = :wfPath AND launcherID = :wfLauncherID AND forLauncher = :wfforLauncher");
q.bindValue(":wfLauncherID", wf->getLauncherID());
q.bindValue(":wfPath", wf->getDirectory().absolutePath());
q.bindValue(":wfforLauncher", wf->forLauncher);
tryExecute(&q);
q.next();
return q.value(0).toInt() > 0;
}
bool FDB::addWatchedFolder(FWatchedFolder wf)
{
QSqlQuery q;
q.prepare("INSERT INTO watchedFolders (path, launcherID, forLauncher) VALUES (:wfPath, :wfLauncherID, :wfforLauncher);");
q.bindValue(":wfLauncherID", wf.getLauncherID());
q.bindValue(":wfPath", wf.getDirectory().absolutePath());
q.bindValue(":wfforLauncher", wf.forLauncher?1:0);
return tryExecute(&q);
}
bool FDB::tryExecute(QSqlQuery *q) {
bool queryOK = q->exec();
if (!queryOK)
{
QString queryStr = q->lastQuery();
QSqlError e = q->lastError();
QString boundValues;
QMapIterator<QString, QVariant> i(q->boundValues());
while (i.hasNext())
{
i.next();
boundValues += i.key() + ": '" + i.value().toString() + "'; ";
}
qCWarning(fLibDB) << ("####################");
qCWarning(fLibDB) << (e.databaseText());
qCWarning(fLibDB) << (e.driverText());
qCWarning(fLibDB) << (queryStr);
qCWarning(fLibDB) << (boundValues);
}
return queryOK;
}
//These two speed up mainly insert-queries, sice SQLite does not write to disk after every command, but after the endTransaction()
//DON'T FROGET TO RUN endTransaction() AFTERWARDS!
//DON'T FROGET TO RUN endTransaction() AFTERWARDS!
bool FDB::beginTransaction()
{
QSqlQuery q;
return q.exec("BEGIN TRANSACTION;");
}
bool FDB::endTransaction()
{
QSqlQuery q;
return q.exec("END TRANSACTION;");
}
bool FDB::rollbackTransaction()
{
QSqlQuery q;
return q.exec("ROLLBACK TRANSACTION;");
}
//TODO: Assume we can remove this
bool FDB::runQuery(QSqlQuery q)
{
//return q.exec();
return false;
}
bool FDB::gameExists(FGame game)
{
QSqlQuery query;
query.prepare("SELECT count(*) FROM games WHERE relExecutablePath = :Exe");
query.bindValue(":Exe", game.getExe());
tryExecute(&query);
query.next();
if (query.value(0).toInt() > 0)
return true;
else
return false;
}
bool FDB::launcherExists(FLauncher launcher)
{
QSqlQuery query;
query.prepare("SELECT count(*) FROM launchers WHERE id = :id");
query.bindValue(":id", launcher.getDbId());
tryExecute(&query);
query.next();
return query.value(0).toInt() > 0;
}
QDir FDB::getSavegameDir()
{
return QDir();
}
int FDB::addLauncher(FLauncher launcher)
{
QSqlQuery query;
query.prepare("INSERT INTO launchers(launcherName, launcherPath, launcherArgs, suffix) VALUES (:name, :path, :args, :suffix)");
query.bindValue(":name", launcher.getName());
query.bindValue(":path", launcher.getPath());
query.bindValue(":args", launcher.getArgs());
query.bindValue(":suffix", launcher.getFileEndings());
return tryExecute(&query);
}
bool FDB::updateLaunchers(QList<FLauncher> launchers)
{
for (int i=0; i < launchers.length(); ++i) {
if (launchers[i].getDbId() == -1) //we need to insert it
{
addLauncher(launchers[i]);
}
else
{
updateLauncher(launchers[i]);
}
}
}
FLauncher FDB::getLauncher(int dbId)
{
FLauncher launcher;
QSqlQuery query;
query.prepare("SELECT launcherName, launcherPath, launcherArgs, suffix FROM launchers WHERE id = :id");
query.bindValue(":id", dbId);
tryExecute(&query);
qCDebug(fLibDB) << ("Getting launcher" + dbId);
if(!query.next())
{
qCCritical(fLibDB) << ("Didn't find the launcher..");
return FLauncher();
}
launcher.setDbId(dbId);
launcher.setName(query.value(0).toString());
launcher.setPath(query.value(1).toString());
launcher.setArgs(query.value(2).toString());
launcher.setFileEndings(query.value(3).toString());
return launcher;
}
QList<FLauncher> FDB::getLaunchers()
{
QList<FLauncher> list;
QSqlQuery query;
query.prepare("SELECT launcherName, launcherPath, launcherArgs, id, suffix FROM launchers");
tryExecute(&query);
while (query.next())
{
FLauncher launcher;
launcher.setName(query.value(0).toString());
launcher.setPath(query.value(1).toString());
launcher.setArgs(query.value(2).toString());
launcher.setDbId(query.value(3).toInt());
launcher.setFileEndings(query.value(4).toString());
list.append(launcher);
}
return list;
}