forked from uroni/urbackup_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Database.cpp
777 lines (674 loc) · 16.1 KB
/
Database.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
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
/*************************************************************************
* UrBackup - Client/Server backup system
* Copyright (C) 2011-2016 Martin Raiber
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/
#ifndef NO_SQLITE
#if defined(_WIN32) || defined(WIN32)
#define _CRT_SECURE_NO_WARNINGS
#endif
#include "vld.h"
#ifndef BDBPLUGIN
#include "Server.h"
#else
#ifdef LINUX
#include "bdbplugin/config.h"
#include DB_HEADER
#else
#include <db.h>
#endif
#include "Interface/Server.h"
#endif
#include "Query.h"
#ifdef USE_SYSTEM_SQLITE
#include <sqlite3.h>
#else
#include "sqlite/sqlite3.h"
#endif
#include "Interface/File.h"
#include <stdlib.h>
extern "C"
{
#include "sqlite/shell.h"
}
#include "Database.h"
#include "stringtools.h"
namespace
{
size_t get_sqlite_cache_size()
{
std::string cache_size_str = Server->getServerParameter("sqlite_cache_size");
if(!cache_size_str.empty())
{
return atoi(cache_size_str.c_str());
}
else
{
return 2*1024; //2MB
}
}
void errorLogCallback(void *pArg, int iErrCode, const char *zMsg)
{
switch (iErrCode)
{
case SQLITE_LOCKED:
case SQLITE_BUSY:
case SQLITE_SCHEMA:
return;
case SQLITE_NOTICE_RECOVER_ROLLBACK:
case SQLITE_NOTICE_RECOVER_WAL:
Server->Log("SQLite: "+ std::string(zMsg) + " code: " + convert(iErrCode), LL_INFO);
break;
default:
Server->Log("SQLite: " + std::string(zMsg) + " errorcode: " + convert(iErrCode), LL_WARNING);
break;
}
}
}
struct UnlockNotification {
bool fired;
ICondition* cond;
IMutex *mutex;
};
static void unlock_notify_cb(void **apArg, int nArg)
{
for(int i=0; i<nArg; i++)
{
UnlockNotification *p = (UnlockNotification *)apArg[i];
IScopedLock lock(p->mutex);
p->fired = true;
p->cond->notify_all();
}
}
CDatabase::~CDatabase()
{
destroyAllQueries();
for(std::map<int, IQuery*>::iterator iter=prepared_queries.begin();iter!=prepared_queries.end();++iter)
{
CQuery *q=(CQuery*)iter->second;
delete q;
}
prepared_queries.clear();
sqlite3_close(db);
}
bool CDatabase::Open(std::string pFile, const std::vector<std::pair<std::string,std::string> > &attach,
size_t allocation_chunk_size, ISharedMutex* p_single_user_mutex, IMutex* p_lock_mutex,
int* p_lock_count, ICondition *p_unlock_cond, const str_map& p_params)
{
single_user_mutex = p_single_user_mutex;
lock_mutex = p_lock_mutex;
lock_count = p_lock_count;
unlock_cond = p_unlock_cond;
params = p_params;
attached_dbs=attach;
in_transaction=false;
if( sqlite3_open(pFile.c_str(), &db) )
{
Server->Log("Could not open db ["+pFile+"]");
sqlite3_close(db);
db = NULL;
return false;
}
else
{
str_map::const_iterator it = params.find("synchronous");
if (it != params.end())
{
Write("PRAGMA synchronous="+it->second);
}
else
{
Write("PRAGMA synchronous=NORMAL");
}
Write("PRAGMA foreign_keys = ON");
Write("PRAGMA threads = 2");
it = params.find("wal_autocheckpoint");
if (it != params.end())
{
Write("PRAGMA wal_autocheckpoint=" + it->second);
if (watoi(it->second)<=0)
{
int enable = 1;
sqlite3_file_control(db, NULL, SQLITE_FCNTL_PERSIST_WAL, &enable);
#ifdef SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE
int was_enabled = 0;
sqlite3_db_config(db, SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE, 1, &was_enabled);
#endif
}
}
it = params.find("page_size");
if (it != params.end())
{
Write("PRAGMA page_size=" + it->second);
}
else
{
Write("PRAGMA page_size=4096");
}
it = params.find("mmap_size");
if (it != params.end())
{
Write("PRAGMA mmap_size=" + it->second);
}
if(allocation_chunk_size!=std::string::npos)
{
int chunk_size = static_cast<int>(allocation_chunk_size);
sqlite3_file_control(db, NULL, SQLITE_FCNTL_CHUNK_SIZE, &chunk_size);
}
static size_t sqlite_cache_size = get_sqlite_cache_size();
Write("PRAGMA cache_size = -"+convert(sqlite_cache_size));
sqlite3_busy_timeout(db, c_sqlite_busy_timeout_default);
#if defined(_DEBUG) || (!defined(_WIN32) && !defined(NDEBUG))
if (Server->getRandomNumber() % 2 == 0)
{
Write("PRAGMA reverse_unordered_selects = ON");
}
#endif
AttachDBs();
return true;
}
}
void CDatabase::initMutex(void)
{
sqlite3_config(SQLITE_CONFIG_LOG, errorLogCallback, NULL);
}
void CDatabase::destroyMutex(void)
{
}
db_results CDatabase::Read(std::string pQuery)
{
//Server->Log("SQL Query(Read): "+pQuery, LL_DEBUG);
IQuery *q=Prepare(pQuery, false);
if(q!=NULL)
{
db_results ret=q->Read();
delete ((CQuery*)q);
return ret;
}
return db_results();
}
bool CDatabase::Write(std::string pQuery)
{
//Server->Log("SQL Query(Write): "+pQuery, LL_DEBUG);
IQuery *q=Prepare(pQuery, false);
if(q!=NULL)
{
bool b=q->Write();
delete ((CQuery*)q);
return b;
}
else
{
return false;
}
}
//ToDo: Cache Writings
bool CDatabase::BeginReadTransaction()
{
if (write_lock.get() == NULL)
{
transaction_read_lock.reset(new IScopedReadLock(single_user_mutex));
}
in_transaction = true;
if(Write("BEGIN"))
{
return true;
}
else
{
in_transaction = false;
return false;
}
}
bool CDatabase::BeginWriteTransaction()
{
if (write_lock.get() == NULL)
{
transaction_read_lock.reset(new IScopedReadLock(single_user_mutex));
}
in_transaction = true;
if(Write("BEGIN IMMEDIATE;"))
{
return true;
}
else
{
in_transaction = false;
return false;
}
}
bool CDatabase::EndTransaction(void)
{
bool ret = Write("END;");
in_transaction=false;
transaction_read_lock.reset();
IScopedLock lock(lock_mutex);
bool waited=false;
while(*lock_count>0)
{
unlock_cond->wait(&lock);
waited=true;
}
if(waited)
{
Server->wait(50);
}
return ret;
}
bool CDatabase::RollbackTransaction()
{
bool ret = Write("ROLLBACK;");
in_transaction = false;
transaction_read_lock.reset();
IScopedLock lock(lock_mutex);
bool waited = false;
while (*lock_count>0)
{
unlock_cond->wait(&lock);
waited = true;
}
if (waited)
{
Server->wait(50);
}
return ret;
}
IQuery* CDatabase::Prepare(std::string pQuery, bool autodestroy)
{
IScopedReadLock lock(NULL);
if (!in_transaction && write_lock.get()==NULL)
{
lock.relock(single_user_mutex);
}
int prepare_tries = 0;
#ifdef SQLITE_PREPARE_RETRIES
prepare_tries = SQLITE_PREPARE_RETRIES;
#endif
sqlite3_stmt *prepared_statement;
const char* tail;
int err;
bool transaction_lock=false;
while((err=sqlite3_prepare_v2(db, pQuery.c_str(), (int)pQuery.size(), &prepared_statement, &tail) )==SQLITE_LOCKED
|| err==SQLITE_BUSY
|| err==SQLITE_PROTOCOL
|| (err!=SQLITE_OK && prepare_tries>0) )
{
--prepare_tries;
if(err==SQLITE_LOCKED)
{
if(!transaction_lock && LockForTransaction())
{
transaction_lock=true;
if(!WaitForUnlock())
Server->Log("DATABASE DEADLOCKED in CDatabase::Prepare", LL_ERROR);
}
}
else if(err== SQLITE_BUSY
|| err==SQLITE_PROTOCOL)
{
if(!transaction_lock)
{
if(!isInTransaction() && LockForTransaction())
{
transaction_lock=true;
}
sqlite3_busy_timeout(db, 10000);
}
else
{
Server->Log("DATABASE BUSY in CDatabase::Prepare", LL_ERROR);
}
}
else
{
Server->Log("Error preparing Query [" + pQuery + "]: " + sqlite3_errmsg(db)+". Retrying in 1s...", LL_ERROR);
Server->wait(1000);
}
}
if(transaction_lock)
{
UnlockForTransaction();
sqlite3_busy_timeout(db, 50);
}
if( err!=SQLITE_OK )
{
Server->Log("Error preparing Query ["+pQuery+"]: "+sqlite3_errmsg(db),LL_ERROR);
if(err==SQLITE_IOERR)
{
Server->setFailBit(IServer::FAIL_DATABASE_IOERR);
}
if(err==SQLITE_CORRUPT)
{
Server->setFailBit(IServer::FAIL_DATABASE_CORRUPTED);
}
if (err ==SQLITE_FULL)
{
Server->setFailBit(IServer::FAIL_DATABASE_FULL);
}
return NULL;
}
CQuery *q=new CQuery(pQuery, prepared_statement, this);
if( autodestroy )
{
queries.push_back(q);
}
return q;
}
IQuery* CDatabase::Prepare(int id, std::string pQuery)
{
IScopedReadLock lock(NULL);
if (!in_transaction && write_lock.get()==NULL)
{
lock.relock(single_user_mutex);
}
std::map<int, IQuery*>::iterator iter=prepared_queries.find(id);
if( iter!=prepared_queries.end() )
{
iter->second->Reset();
return iter->second;
}
else
{
IQuery *q=Prepare(pQuery, false);
prepared_queries.insert(std::pair<int, IQuery*>(id, q) );
return q;
}
}
void CDatabase::destroyQuery(IQuery *q)
{
if(q==NULL)
{
return;
}
for(size_t i=0;i<queries.size();++i)
{
if( queries[i]==q )
{
CQuery *cq=(CQuery*)q;
delete cq;
queries.erase( queries.begin()+i);
return;
}
}
CQuery *cq=(CQuery*)q;
delete cq;
}
void CDatabase::destroyAllQueries(void)
{
for(size_t i=0;i<queries.size();++i)
{
CQuery *cq=(CQuery*)queries[i];
delete cq;
}
queries.clear();
}
_i64 CDatabase::getLastInsertID(void)
{
return sqlite3_last_insert_rowid(db);
}
bool CDatabase::WaitForUnlock(void)
{
#ifndef BDBPLUGIN
int rc;
UnlockNotification un;
un.fired = false;
un.mutex=Server->createMutex();
un.cond=Server->createCondition();
rc = sqlite3_unlock_notify(db, unlock_notify_cb, (void *)&un);
if( rc==SQLITE_OK )
{
IScopedLock lock(un.mutex);
if( !un.fired )
{
un.cond->wait(&lock);
}
}
Server->destroy(un.mutex);
Server->destroy(un.cond);
return rc==SQLITE_OK;
#else
return false;
#endif
}
sqlite3 *CDatabase::getDatabase(void)
{
return db;
}
bool CDatabase::LockForTransaction(void)
{
lock_mutex->Lock();
++*lock_count;
return true;
}
void CDatabase::UnlockForTransaction(void)
{
--*lock_count;
unlock_cond->notify_all();
lock_mutex->Unlock();
}
bool CDatabase::isInTransaction(void)
{
return in_transaction;
}
bool CDatabase::Import(const std::string &pFile)
{
IFile *file=Server->openFile(pFile, MODE_READ);
if(file==NULL)
return false;
unsigned int r;
char buf[4096];
std::string query;
int state=0;
do
{
r=file->Read(buf, 4096);
for(unsigned int i=0;i<r;++i)
{
if(buf[i]==';' && state==0)
{
if(!Write(query))
return false;
query.clear();
continue;
}
else if(buf[i]=='\'' && state==0)
{
state=1;
}
else if(buf[i]=='\'' && state==1 )
{
state=0;
}
query+=buf[i];
}
}
while(r>0);
Server->destroy(file);
return true;
}
bool CDatabase::Dump(const std::string &pFile)
{
const char* db_fn = sqlite3_db_filename(db, NULL);
if (db_fn == NULL)
return false;
ShellState cd = {};
cd.openMode = 1;
cd.zDbFilename = db_fn;
cd.out=fopen(pFile.c_str(), "wb");
if(cd.out==0)
{
return false;
}
std::string cmd = ".dump";
int rc = do_meta_command_r(&cmd[0], &cd);
fclose(cd.out);
if (cd.db != 0)
sqlite3_close(cd.db);
return rc == SQLITE_OK;
}
bool CDatabase::Recover(const std::string & pFile)
{
const char* db_fn = sqlite3_db_filename(db, NULL);
if (db_fn == NULL)
return false;
ShellState cd = {};
cd.openMode = 1;
cd.zDbFilename = db_fn;
cd.out = fopen(pFile.c_str(), "wb");
if (cd.out == 0)
{
return false;
}
std::string cmd = ".recover";
int rc = do_meta_command_r(&cmd[0], &cd);
fclose(cd.out);
if (cd.db != 0)
sqlite3_close(cd.db);
return rc==SQLITE_OK;
}
std::string CDatabase::getEngineName(void)
{
#ifndef BDBPLUGIN
return "sqlite";
#else
return "bdb";
#endif
}
void CDatabase::AttachDBs(void)
{
for(size_t i=0;i<attached_dbs.size();++i)
{
Write("ATTACH DATABASE '"+attached_dbs[i].first+"' AS "+attached_dbs[i].second);
str_map::const_iterator it = params.find("synchronous");
if (it != params.end())
{
Write("PRAGMA "+ attached_dbs[i].second+".synchronous=" + it->second);
}
else
{
Write("PRAGMA "+ attached_dbs[i].second+".synchronous=NORMAL");
}
}
}
void CDatabase::DetachDBs(void)
{
for(size_t i=0;i<attached_dbs.size();++i)
{
Write("DETACH DATABASE "+attached_dbs[i].second);
}
}
bool CDatabase::backup_db(const std::string &pFile, const std::string &pDB, IBackupProgress* progress)
{
int64 page_size = watoi64(Read("PRAGMA " + pDB + ".page_size")[0]["page_size"]);
IScopedReadLock lock(NULL);
if (!in_transaction && write_lock.get()==NULL)
{
lock.relock(single_user_mutex);
}
int rc; /* Function return code */
sqlite3 *pBackupDB; /* Database connection opened on zFilename */
sqlite3_backup *pBackup; /* Backup handle used to copy data */
/* Open the database file identified by zFilename. */
rc = sqlite3_open(pFile.c_str(), &pBackupDB);
if( rc==SQLITE_OK ){
/* Open the sqlite3_backup object used to accomplish the transfer */
pBackup = sqlite3_backup_init(pBackupDB, "main", db, pDB.c_str());
if( pBackup ){
/* Each iteration of this loop copies 5 database pages from database
** pDb to the backup database. If the return value of backup_step()
** indicates that there are still further pages to copy, sleep for
** 250 ms before repeating. */
do {
rc = sqlite3_backup_step(pBackup, 32);
int total = sqlite3_backup_pagecount(pBackup);
int remaining = sqlite3_backup_remaining(pBackup);
int done = total - remaining;
progress->backupProgress(done*page_size, total*page_size);
} while( rc==SQLITE_OK || rc==SQLITE_BUSY || rc==SQLITE_PROTOCOL || rc==SQLITE_LOCKED );
/* Release resources allocated by backup_init(). */
(void)sqlite3_backup_finish(pBackup);
}
else
{
Server->Log("Opening backup connection failed", LL_ERROR);
}
rc = sqlite3_errcode(pBackupDB);
if(rc!=0)
{
Server->Log("Database backup failed with error code: "+convert(rc)+" err: "+sqlite3_errmsg(pBackupDB), LL_ERROR);
}
}
/* Close the database connection opened on database file zFilename
** and return the result of this function. */
(void)sqlite3_close(pBackupDB);
return rc==0;
}
bool CDatabase::Backup(const std::string &pFile, IBackupProgress* progress)
{
std::string path=ExtractFilePath(pFile);
bool b=backup_db(pFile, "main", progress);
if(!b)
return false;
for(size_t i=0;i<attached_dbs.size();++i)
{
b=backup_db(path+"/"+ExtractFileName(attached_dbs[i].first), attached_dbs[i].second, progress);
if(!b)
return false;
}
return true;
}
void CDatabase::freeMemory()
{
sqlite3_db_release_memory(db);
}
int CDatabase::getLastChanges()
{
return sqlite3_changes(db);
}
std::string CDatabase::getTempDirectoryPath()
{
char* tmpfn = NULL;
if(sqlite3_file_control(db, NULL, SQLITE_FCNTL_TEMPFILENAME, &tmpfn)==SQLITE_OK && tmpfn!=NULL)
{
std::string ret = ExtractFilePath(tmpfn);
sqlite3_free(tmpfn);
return ret;
}
else
{
return std::string();
}
}
void CDatabase::lockForSingleUse()
{
write_lock.reset(new IScopedWriteLock(single_user_mutex));
}
void CDatabase::unlockForSingleUse()
{
write_lock.reset();
}
ISharedMutex* CDatabase::getSingleUseMutex()
{
if (write_lock.get() == NULL
&& transaction_read_lock.get()==NULL)
{
return single_user_mutex;
}
else
{
return NULL;
}
}
#endif //NO_SQLITE