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
|
#include <cstring>
#include <functional>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <unistd.h>
#include <dirent.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <xapian.h>
#include "muchsync.h"
#include "misc.h"
using namespace std;
// XXX - these things have to match notmuch-private.h
constexpr int NOTMUCH_VALUE_TIMESTAMP = 0;
constexpr int NOTMUCH_VALUE_MESSAGE_ID = 1;
const string notmuch_ghost_term = "Tghost";
const string notmuch_tag_prefix = "K";
const string notmuch_directory_prefix = "XDIRECTORY";
const string notmuch_file_direntry_prefix = "XFDIRENTRY";
static void
drop_triggers(sqlite3 *db)
{
for (const char *trigger
: { "tag_delete", "tag_insert", "link_delete", "link_insert" })
sqlexec (db, "DROP TRIGGER IF EXISTS %s;", trigger);
for (const char *table
: { "modified_docids", "modified_xapian_dirs", "modified_hashes" })
sqlexec(db, "DROP TABLE IF EXISTS %s;", table);
}
static void
set_triggers(sqlite3 *db)
{
drop_triggers (db);
sqlexec(db, R"(
CREATE TEMP TABLE IF NOT EXISTS modified_docids (
docid INTEGER PRIMARY KEY,
new INTEGER);
CREATE TEMP TRIGGER tag_delete AFTER DELETE ON main.tags
WHEN old.docid NOT IN (SELECT docid FROM modified_docids)
BEGIN INSERT INTO modified_docids (docid, new) VALUES (old.docid, 0); END;
CREATE TEMP TRIGGER tag_insert AFTER INSERT ON main.tags
WHEN new.docid NOT IN (SELECT docid FROM modified_docids)
BEGIN INSERT INTO modified_docids (docid, new) VALUES (new.docid, 0); END;
CREATE TEMP TABLE IF NOT EXISTS modified_xapian_dirs (
dir_docid INTEGER PRIMARY KEY);
CREATE TEMP TABLE IF NOT EXISTS modified_hashes (hash_id INTEGER PRIMARY KEY);
CREATE TEMP TRIGGER link_delete AFTER DELETE ON xapian_files
WHEN old.hash_id NOT IN (SELECT hash_id FROM modified_hashes)
BEGIN INSERT INTO modified_hashes (hash_id) VALUES (old.hash_id); END;
CREATE TEMP TRIGGER link_insert AFTER INSERT ON xapian_files
WHEN new.hash_id NOT IN (SELECT hash_id FROM modified_hashes)
BEGIN INSERT INTO modified_hashes (hash_id) VALUES (new.hash_id); END;
)");
}
// Non-thread-safe unility to work around missing openat & friends.
template<typename R> R
with_cwd(int dfd, R errval, function<R()> work)
{
int dot = open(".", O_RDONLY);
if (dot < 0 || fchdir(dfd) < 0)
return errval;
cleanup _c ([dot]() { fchdir(dot); close(dot); });
return work();
}
#if !HAVE_OPENAT
#define openat fake_openat
static int
openat(int dfd, const char *entry, int mode)
{
return with_cwd<int>(dfd, -1, [=]() { return open(entry, mode); });
}
#define fstatat fake_fstatat
static int
fstatat(int dfd, const char *entry, struct stat *buf, int flag)
{
return with_cwd<int>(dfd, -1, [=]() { return stat(entry, buf); });
}
#endif // !HAVE_OPENAT
#if !HAVE_FDOPENDIR
#define fdopendir fake_fdopendir
static DIR *
fdopendir(int dfd)
{
return with_cwd<DIR *>(dfd, nullptr, []() { return opendir("."); });
}
#endif // !HAVE_FDOPENDIR
static string
get_sha (int dfd, const char *direntry, i64 *sizep)
{
int fd = openat(dfd, direntry, O_RDONLY);
if (fd < 0)
throw runtime_error (string() + direntry + ": " + strerror (errno));
cleanup _c (close, fd);
hash_ctx ctx;
char buf[32768];
int n;
i64 sz = 0;
while ((n = read (fd, buf, sizeof (buf))) > 0) {
ctx.update (buf, n);
sz += n;
}
if (n < 0)
throw runtime_error (string() + direntry + ": " + strerror (errno));
if (sizep)
*sizep = sz;
return ctx.final();
}
template<typename T> void
sync_table (sqlstmt_t &s, T &t, T &te,
function<int(sqlstmt_t &s, T &t)> cmpfn,
function<void(sqlstmt_t *s, T *t)> update)
{
s.step();
while (s.row()) {
int cmp {t == te ? -1 : cmpfn (s, t)};
if (cmp == 0) {
update (&s, &t);
s.step();
++t;
}
else if (cmp < 0) {
update (&s, nullptr);
s.step();
}
else {
update (nullptr, &t);
++t;
}
}
while (t != te) {
update (nullptr, &t);
++t;
}
}
static string
tag_from_term (const string &term)
{
assert(!strncmp(term.c_str(), notmuch_tag_prefix.c_str(),
notmuch_tag_prefix.length()));
return term.substr(notmuch_tag_prefix.length());
}
static void
xapian_scan_tags (sqlite3 *sqldb, Xapian::Database &xdb, const writestamp &ws)
{
sqlexec(sqldb, "DROP TABLE IF EXISTS dead_tags; "
"CREATE TEMP TABLE dead_tags (tag TEXT PRIMARY KEY); "
"INSERT INTO dead_tags SELECT DISTINCT tag FROM tags;");
sqlstmt_t
scan (sqldb, "SELECT docid, rowid FROM tags"
" WHERE tag = ? ORDER BY docid ASC;"),
add_tag (sqldb, "INSERT INTO tags (docid, tag) VALUES (?, ?);"),
del_tag (sqldb, "DELETE FROM tags WHERE rowid = ?;"),
record_tag (sqldb, "DELETE FROM dead_tags WHERE tag = ?;");
for (Xapian::TermIterator ti = xdb.allterms_begin(notmuch_tag_prefix),
te = xdb.allterms_end(notmuch_tag_prefix); ti != te; ti++) {
string tag = tag_from_term (*ti);
if (opt_verbose > 1)
cerr << " " << tag << "\n";
record_tag.reset().param(tag).step();
scan.reset().bind_text(1, tag);
add_tag.reset().bind_text(2, tag);
Xapian::PostingIterator pi = xdb.postlist_begin (*ti),
pe = xdb.postlist_end (*ti);
sync_table<Xapian::PostingIterator>
(scan, pi, pe,
[] (sqlstmt_t &s, Xapian::PostingIterator &p) -> int {
return s.integer(0) - *p;
},
[&] (sqlstmt_t *sp, Xapian::PostingIterator *pp) {
if (!sp)
add_tag.reset().bind_int(1, **pp).step();
else if (!pp)
del_tag.reset().bind_value(1, sp->value(1)).step();
});
}
sqlexec(sqldb, "DELETE FROM tags WHERE tag IN (SELECT * FROM dead_tags);");
sqlexec(sqldb, "UPDATE message_ids SET replica = %lld, version = %lld"
" WHERE docid IN (SELECT docid FROM modified_docids WHERE new = 0);",
ws.first, ws.second);
}
static void
xapian_scan_message_ids (sqlite3 *sqldb, const writestamp &ws,
Xapian::Database xdb)
{
sqlstmt_t
scan(sqldb,
"SELECT message_id, docid FROM message_ids ORDER BY docid ASC;"),
add_message(sqldb,
"INSERT INTO message_ids (message_id, docid, replica, version)"
" VALUES (?, ?, %lld, %lld);", ws.first, ws.second),
flag_new_message(sqldb, "INSERT INTO modified_docids (docid, new)"
" VALUES (?, 1);"),
del_message(sqldb, "DELETE FROM message_ids WHERE docid = ?;");
Xapian::PostingIterator
gi = xdb.postlist_begin(notmuch_ghost_term),
ge = xdb.postlist_end(notmuch_ghost_term);
Xapian::ValueIterator
vi = xdb.valuestream_begin (NOTMUCH_VALUE_MESSAGE_ID),
ve = xdb.valuestream_end (NOTMUCH_VALUE_MESSAGE_ID);
sync_table<Xapian::ValueIterator>
(scan, vi, ve,
[] (sqlstmt_t &s, Xapian::ValueIterator &vi) -> int {
return s.integer(1) - vi.get_docid();
},
[&add_message,&del_message,&flag_new_message,&gi,&ge,&ve]
(sqlstmt_t *sp, Xapian::ValueIterator *vip) {
if (vip) {
while (gi != ge && *gi < vip->get_docid())
++gi;
if (gi != ge && *gi == vip->get_docid()) {
if (!sp)
return;
vip = nullptr;
}
}
if (!sp) {
i64 docid = vip->get_docid();
add_message.reset().param(**vip, docid).step();
flag_new_message.reset().param(docid).step();
}
else if (!vip)
del_message.reset().param(sp->value(1)).step();
else if (sp->str(0) != **vip) {
// This should be really unusual
cerr << "warning: message id changed from <"
<< sp->str(0) << "> to <" << **vip << ">\n";
del_message.reset().param(sp->value(1)).step();
add_message.reset().param(**vip, i64(vip->get_docid())).step();
}
});
}
static Xapian::docid
xapian_get_unique_posting (const Xapian::Database &xdb, const string &term)
{
Xapian::PostingIterator pi = xdb.postlist_begin (term),
pe = xdb.postlist_end (term);
if (pi == pe)
throw range_error (string("xapian term ") + term + " has no postings");
i64 ret = *pi;
if (++pi != pe)
cerr << "warning: xapian term " << term << " has multiple postings\n";
return ret;
}
static void
xapian_scan_directories (sqlite3 *sqldb, Xapian::Database &xdb)
{
sqlstmt_t
scandirs(sqldb, "SELECT dir_path, dir_docid, dir_mtime FROM xapian_dirs"
" ORDER BY dir_path;"),
deldir(sqldb, "DELETE FROM xapian_dirs WHERE dir_docid = ?;"),
delfiles(sqldb, "DELETE FROM xapian_files WHERE dir_docid = ?;"),
adddir(sqldb, "INSERT INTO xapian_dirs (dir_path, dir_docid, dir_mtime)"
" VALUES (?, ?, ?);"),
upddir(sqldb, "UPDATE xapian_dirs SET dir_mtime = ? WHERE dir_docid = ?;"),
flagdir(sqldb, "INSERT INTO modified_xapian_dirs (dir_docid) VALUES (?);");
Xapian::TermIterator
ti = xdb.allterms_begin(notmuch_directory_prefix),
te = xdb.allterms_end(notmuch_directory_prefix);
scandirs.step();
while (ti != te || scandirs.row()) {
int d; // >0 if only sqlite valid, <0 if only xapian valid
string dir;
if (!scandirs.row()) {
dir = (*ti).substr(notmuch_directory_prefix.length());
d = -1;
}
else if (ti == te)
d = 1;
else {
dir = (*ti).substr(notmuch_directory_prefix.length());
d = dir.compare(scandirs.c_str(0));
}
if (d > 0) {
deldir.reset().param(scandirs.value(1)).step();
delfiles.reset().param(scandirs.value(1)).step();
scandirs.step();
continue;
}
if (dir.empty())
dir = ".";
Xapian::docid dir_docid = xapian_get_unique_posting(xdb, *ti);
if (d == 0 && dir_docid != scandirs.integer(1)) {
deldir.reset().param(scandirs.value(1)).step();
delfiles.reset().param(scandirs.value(1)).step();
scandirs.step();
continue;
}
time_t mtime = Xapian::sortable_unserialise
(xdb.get_document(dir_docid).get_value(NOTMUCH_VALUE_TIMESTAMP));
if (d < 0) {
deldir.reset().param(i64(dir_docid)).step();
delfiles.reset().param(i64(dir_docid)).step();
adddir.reset().param(dir, i64(dir_docid), i64(mtime)).step();
flagdir.reset().param(i64(dir_docid)).step();
++ti;
continue;
}
if (mtime != scandirs.integer(2)) {
flagdir.reset().param(i64(dir_docid)).step();
upddir.reset().param(i64(mtime), i64(dir_docid)).step();
}
++ti;
scandirs.step();
}
}
class fileops {
public:
sqlstmt_t scan_dir_;
private:
sqlstmt_t get_msgid_;
sqlstmt_t del_file_;
sqlstmt_t add_file_;
sqlstmt_t upd_file_;
sqlstmt_t get_hashid_;
sqlstmt_t get_hash_;
sqlstmt_t add_hash_;
sqlstmt_t upd_hash_;
string get_msgid(i64 docid);
i64 get_file_hash_id(int dfd, const string &file, i64 docid);
public:
fileops(sqlite3 *db, const writestamp &ws);
void del_file(i64 rowid) { del_file_.reset().param(rowid).step(); }
void add_file(const string &dir, int dfd, i64 dir_docid,
string name, i64 docid);
void check_file(const string &dir, int dfd, i64 dir_docid);
};
fileops::fileops(sqlite3 *db, const writestamp &ws)
: scan_dir_(db, "SELECT rowid, name, docid%s"
" FROM xapian_files WHERE dir_docid = ? ORDER BY name;",
opt_fullscan ? ", mtime, inode, hash_id" : ""),
get_msgid_(db, "SELECT message_id FROM message_ids WHERE docid = ?;"),
del_file_(db, "DELETE FROM xapian_files WHERE rowid = ?;"),
add_file_(db, "INSERT INTO xapian_files"
" (dir_docid, name, docid, mtime, inode, hash_id)"
" VALUES (?, ?, ?, ?, ?, ?);"),
upd_file_(db, "UPDATE xapian_files SET mtime = ?, inode = ?"
" WHERE rowid = ?;"),
get_hashid_(db, opt_fullscan
? "SELECT hash_id, size, message_id FROM maildir_hashes"
" WHERE hash = ?;"
: "SELECT hash_id FROM maildir_hashes WHERE hash = ?;"),
get_hash_(db, "SELECT hash, size FROM maildir_hashes WHERE hash_id = ?;"),
add_hash_(db, "INSERT OR REPLACE INTO maildir_hashes "
" (hash, size, message_id, replica, version)"
" VALUES (?, ?, ?, %lld, %lld);", ws.first, ws.second),
upd_hash_(db, "UPDATE maildir_hashes SET size = ?, message_id = ?"
" WHERE hash_id = ?;",
ws.first, ws.second)
{
}
string
fileops::get_msgid(i64 docid)
{
get_msgid_.reset().param(docid).step();
if (!get_msgid_.row())
throw runtime_error ("xapian_fileops: unknown docid " + to_string(docid));
return get_msgid_.str(0);
}
i64
fileops::get_file_hash_id(int dfd, const string &name, i64 docid)
{
i64 sz;
if (opt_verbose > 2)
cerr << " " << name << '\n';
string hash = get_sha(dfd, name.c_str(), &sz);
if (get_hashid_.reset().param(hash).step().row()) {
i64 hash_id = get_hashid_.integer(0);
if (!opt_fullscan)
return hash_id;
string msgid = get_msgid(docid);
if (sz == get_hashid_.integer(1) && msgid == get_hashid_.str(2))
return hash_id;
// This should almost never happen
cerr << "size or message-id changed for hash " << hash << '\n';
upd_hash_.reset().param(sz, msgid, hash_id).step();
return hash_id;
}
add_hash_.reset().param(hash, sz, get_msgid(docid)).step();
return sqlite3_last_insert_rowid(add_hash_.getdb());
}
void
fileops::add_file(const string &dir, int dfd, i64 dir_docid,
string name, i64 docid)
{
struct stat sb;
if (fstatat(dfd, name.c_str(), &sb, 0)) {
if (errno == ENOENT)
return;
throw runtime_error (dir + ": " + strerror(errno));
}
if (!S_ISREG(sb.st_mode))
return;
i64 hash_id = get_file_hash_id(dfd, name, docid);
add_file_.reset()
.param(dir_docid, name, docid, ts_to_double(sb.ST_MTIM),
i64(sb.st_ino), hash_id).step();
}
void
fileops::check_file(const string &dir, int dfd, i64 dir_docid)
{
if (!opt_fullscan)
return;
string name = scan_dir_.str(1);
struct stat sb;
if (fstatat(dfd, name.c_str(), &sb, 0)) {
if (errno == ENOENT)
return;
throw runtime_error (dir + ": " + strerror(errno));
}
if (!S_ISREG(sb.st_mode))
return;
double fs_mtim = ts_to_double(sb.ST_MTIM);
i64 fs_inode = sb.st_ino, fs_size = sb.st_size;
double db_mtim = scan_dir_.real(3);
i64 db_inode = scan_dir_.integer(4);
i64 db_hashid = scan_dir_.integer(5);
if (!get_hash_.reset().param(db_hashid).step().row())
throw runtime_error ("invalid hash_id: " + to_string(db_hashid));
i64 db_size = get_hash_.integer(1);
if (fs_mtim == db_mtim && fs_inode == db_inode && fs_size == db_size)
return;
i64 rowid = scan_dir_.integer(0), docid = scan_dir_.integer(2);
i64 fs_hashid = get_file_hash_id(dfd, name, docid);
if (db_hashid == fs_hashid)
upd_file_.reset().param(fs_mtim, fs_inode, rowid).step();
else {
del_file_.reset().param(rowid).step();
add_file_.reset().param(dir_docid, name, docid, fs_mtim, fs_inode,
fs_hashid);
}
}
static void
xapian_scan_filenames (sqlite3 *db, const string &maildir,
const writestamp &ws, Xapian::Database xdb)
{
sqlstmt_t dirscan (db, "SELECT dir_path, dir_docid FROM xapian_dirs%s;",
opt_fullscan ? ""
: " NATURAL JOIN modified_xapian_dirs");
fileops f (db, ws);
while (dirscan.step().row()) {
string dir = dirscan.str(0);
if (opt_verbose > 1)
cerr << " " << dir << '\n';
string dirpath = maildir + "/" + dir;
int dfd = open(dirpath.c_str(), O_RDONLY);
if (dfd == -1 && errno != ENOENT) {
cerr << dirpath << ": " << strerror (errno) << '\n';
continue;
}
cleanup _close (close, dfd);
i64 dir_docid = dirscan.integer(1);
f.scan_dir_.reset().param(dir_docid).step();
string dirtermprefix = (notmuch_file_direntry_prefix
+ to_string (dir_docid) + ":");
Xapian::TermIterator ti = xdb.allterms_begin(dirtermprefix),
te = xdb.allterms_end(dirtermprefix);
size_t dirtermprefixlen = dirtermprefix.size();
unordered_map<string,Xapian::docid> to_add;
while (f.scan_dir_.row() && ti != te) {
const char *dbname = f.scan_dir_.c_str(1);
string term = *ti;
const char *xname = &term[dirtermprefixlen];
int cmp = strcmp(dbname,xname);
if (!cmp) {
if (opt_fullscan)
f.check_file(dir, dfd, dir_docid);
f.scan_dir_.step();
++ti;
}
else if (cmp < 0) {
f.del_file(f.scan_dir_.integer(0));
f.scan_dir_.step();
}
else {
to_add.emplace(term.substr(dirtermprefixlen),
xapian_get_unique_posting(xdb, term));
++ti;
}
}
while (f.scan_dir_.row()) {
f.del_file(f.scan_dir_.integer(0));
f.scan_dir_.step();
}
while (ti != te) {
string term = *ti;
to_add.emplace(term.substr(dirtermprefixlen),
xapian_get_unique_posting(xdb, term));
++ti;
}
// With a cold buffer cache, reading files to compute hashes goes
// shockingly faster in the order of directory entries.
if (!to_add.empty()) {
_close.release();
DIR *d = fdopendir(dfd);
cleanup _closedir (closedir, d);
struct dirent *e;
auto notfound = to_add.end();
while ((e = readdir(d)) && !to_add.empty()) {
string name (e->d_name);
auto action = to_add.find(name);
if (action != notfound) {
f.add_file(dir, dfd, dir_docid, action->first, action->second);
to_add.erase(action);
}
}
}
}
}
static void
xapian_adjust_nlinks(sqlite3 *db, writestamp ws)
{
sqlstmt_t
newcount(db, "SELECT hash_id, dir_docid, count(*)"
" FROM xapian_files NATURAL JOIN modified_hashes"
" GROUP BY hash_id, dir_docid ORDER BY hash_id, dir_docid;"),
oldcount(db, "SELECT hash_id, dir_docid, link_count, xapian_nlinks.rowid"
" FROM xapian_nlinks NATURAL JOIN modified_hashes"
" ORDER BY hash_id, dir_docid;"),
updcount(db, "UPDATE xapian_nlinks SET link_count = ? WHERE rowid = ?;"),
delcount(db, "DELETE FROM xapian_nlinks WHERE rowid = ?;"),
addcount(db, "INSERT INTO xapian_nlinks (hash_id, dir_docid, link_count)"
" VALUES (?, ?, ?);"),
updhash(db, "UPDATE maildir_hashes SET replica = %lld, version = %lld"
" WHERE hash_id = ?;", ws.first, ws.second);
newcount.step();
oldcount.step();
while (newcount.row() || oldcount.row()) {
i64 d; // < 0 only oldcount valid, > 0 only newcount valid
if (!newcount.row())
d = -1;
else if (!oldcount.row())
d = 1;
else if (!(d = oldcount.integer(0) - newcount.integer(0)))
d = oldcount.integer(1) - newcount.integer(1);
if (d == 0) {
i64 cnt = newcount.integer(2);
if (cnt != oldcount.integer(2)) {
updhash.reset().param(newcount.value(0)).step();
updcount.reset().param(cnt, oldcount.value(3)).step();
}
oldcount.step();
newcount.step();
}
else if (d < 0) {
// file deleted and (hash_id, dir_id) not present newcount
if (oldcount.integer(2))
updhash.reset().param(oldcount.value(0)).step();
delcount.reset().param(oldcount.value(3)).step();
oldcount.step();
}
else {
// file added and (hash_id, dir_id) not present in oldcount
updhash.reset().param(newcount.value(0)).step();
addcount.reset().param(newcount.value(0), newcount.value(1),
newcount.value(2)).step();
newcount.step();
}
}
}
void
xapian_scan(sqlite3 *sqldb, writestamp ws, string maildir)
{
while (maildir.size() > 1 && maildir.back() == '/')
maildir.resize (maildir.size() - 1);
if (maildir.empty())
maildir = ".";
print_time ("starting scan of Xapian database");
Xapian::Database xdb (maildir + "/.notmuch/xapian");
set_triggers(sqldb);
print_time ("opened Xapian");
xapian_scan_message_ids (sqldb, ws, xdb);
print_time ("scanned message IDs");
xapian_scan_tags (sqldb, xdb, ws);
print_time ("scanned tags");
xapian_scan_directories (sqldb, xdb);
print_time ("scanned directories in xapian");
xapian_scan_filenames (sqldb, maildir, ws, xdb);
print_time ("scanned filenames in xapian");
xapian_adjust_nlinks(sqldb, ws);
print_time ("adjusted link counts");
}
void
sync_local_data (sqlite3 *sqldb, const string &maildir)
{
print_time ("synchronizing muchsync database with Xapian");
sqlexec (sqldb, "SAVEPOINT localsync;");
try {
i64 self = getconfig<i64>(sqldb, "self");
sqlexec (sqldb, "UPDATE sync_vector"
" SET version = version + 1 WHERE replica = %lld;", self);
if (sqlite3_changes (sqldb) != 1)
throw runtime_error ("My replica id (" + to_string (self)
+ ") not in sync vector");
versvector vv = get_sync_vector (sqldb);
i64 vers = vv.at(self);
writestamp ws { self, vers };
xapian_scan (sqldb, ws, maildir);
}
catch (...) {
sqlexec (sqldb, "ROLLBACK TO localsync;");
throw;
}
sqlexec (sqldb, "RELEASE localsync;");
print_time ("finished synchronizing muchsync database with Xapian");
}
|