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 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847
|
/** @file remote-database.cc
* @brief Remote backend database class
*/
/* Copyright (C) 2006,2007,2008,2009,2010,2011,2012,2013,2014,2015 Olly Betts
* Copyright (C) 2007,2009,2010 Lemur Consulting Ltd
*
* This program 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 2 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <config.h>
#include "remote-database.h"
#include "safeerrno.h"
#include <signal.h>
#include "autoptr.h"
#include "api/emptypostlist.h"
#include "backends/inmemory/inmemory_positionlist.h"
#include "net_postlist.h"
#include "net_termlist.h"
#include "noreturn.h"
#include "remote-document.h"
#include "omassert.h"
#include "realtime.h"
#include "net/length.h"
#include "net/serialise.h"
#include "net/serialise-error.h"
#include "serialise-double.h"
#include "str.h"
#include "stringutils.h" // For STRINGIZE().
#include "weight/weightinternal.h"
#include <string>
#include <vector>
#include "xapian/constants.h"
#include "xapian/error.h"
#include "xapian/matchspy.h"
using namespace std;
using Xapian::Internal::intrusive_ptr;
XAPIAN_NORETURN(static void throw_bad_message(const string & context));
static void
throw_bad_message(const string & context)
{
throw Xapian::NetworkError("Bad message received", context);
}
XAPIAN_NORETURN(static void throw_connection_closed_unexpectedly());
static void
throw_connection_closed_unexpectedly()
{
throw Xapian::NetworkError("Connection closed unexpectedly");
}
RemoteDatabase::RemoteDatabase(int fd, double timeout_,
const string & context_, bool writable,
int flags)
: link(fd, fd, context_),
context(context_),
cached_stats_valid(),
mru_valstats(),
mru_slot(Xapian::BAD_VALUENO),
timeout(timeout_)
{
#ifndef __WIN32__
// It's simplest to just ignore SIGPIPE. We'll still know if the
// connection dies because we'll get EPIPE back from write().
if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) {
throw Xapian::NetworkError("Couldn't set SIGPIPE to SIG_IGN", errno);
}
#endif
if (!writable) {
// Transactions only make sense when writing, so flag them as
// "unimplemented" so that our destructor doesn't call dtor_called()
// since that might try to call commit() which will cause a message to
// be sent to the remote server and probably an InvalidOperationError
// exception message to be returned.
transaction_state = TRANSACTION_UNIMPLEMENTED;
}
update_stats(MSG_MAX);
if (writable) {
if (flags & Xapian::DB_RETRY_LOCK) {
const string & body = encode_length(flags & Xapian::DB_RETRY_LOCK);
update_stats(MSG_WRITEACCESS, body);
} else {
update_stats(MSG_WRITEACCESS);
}
}
}
void
RemoteDatabase::keep_alive()
{
send_message(MSG_KEEPALIVE, string());
string message;
get_message(message, REPLY_DONE);
}
TermList *
RemoteDatabase::open_metadata_keylist(const std::string &prefix) const
{
// Ensure that total_length and doccount are up-to-date.
if (!cached_stats_valid) update_stats();
send_message(MSG_METADATAKEYLIST, prefix);
string message;
AutoPtr<NetworkTermList> tlist(
new NetworkTermList(0, doccount,
intrusive_ptr<const RemoteDatabase>(this),
0));
vector<NetworkTermListItem> & items = tlist->items;
string term = prefix;
char type;
while ((type = get_message(message)) == REPLY_METADATAKEYLIST) {
NetworkTermListItem item;
term.resize(size_t(static_cast<unsigned char>(message[0])));
term.append(message, 1, string::npos);
item.tname = term;
items.push_back(item);
}
if (type != REPLY_DONE)
throw_bad_message(context);
tlist->current_position = tlist->items.begin();
return tlist.release();
}
TermList *
RemoteDatabase::open_term_list(Xapian::docid did) const
{
Assert(did);
// Ensure that total_length and doccount are up-to-date.
if (!cached_stats_valid) update_stats();
send_message(MSG_TERMLIST, encode_length(did));
string message;
get_message(message, REPLY_DOCLENGTH);
const char * p = message.c_str();
const char * p_end = p + message.size();
Xapian::termcount doclen;
decode_length(&p, p_end, doclen);
if (p != p_end) {
throw Xapian::NetworkError("Bad REPLY_DOCLENGTH message received", context);
}
AutoPtr<NetworkTermList> tlist(
new NetworkTermList(doclen, doccount,
intrusive_ptr<const RemoteDatabase>(this),
did));
vector<NetworkTermListItem> & items = tlist->items;
string term;
char type;
while ((type = get_message(message)) == REPLY_TERMLIST) {
NetworkTermListItem item;
p = message.data();
p_end = p + message.size();
decode_length(&p, p_end, item.wdf);
decode_length(&p, p_end, item.termfreq);
term.resize(size_t(static_cast<unsigned char>(*p++)));
term.append(p, p_end);
item.tname = term;
items.push_back(item);
}
if (type != REPLY_DONE)
throw_bad_message(context);
tlist->current_position = tlist->items.begin();
return tlist.release();
}
TermList *
RemoteDatabase::open_allterms(const string & prefix) const {
// Ensure that total_length and doccount are up-to-date.
if (!cached_stats_valid) update_stats();
send_message(MSG_ALLTERMS, prefix);
AutoPtr<NetworkTermList> tlist(
new NetworkTermList(0, doccount,
intrusive_ptr<const RemoteDatabase>(this),
0));
vector<NetworkTermListItem> & items = tlist->items;
string term = prefix;
string message;
char type;
while ((type = get_message(message)) == REPLY_ALLTERMS) {
NetworkTermListItem item;
const char * p = message.data();
const char * p_end = p + message.size();
decode_length(&p, p_end, item.termfreq);
term.resize(size_t(static_cast<unsigned char>(*p++)));
term.append(p, p_end);
item.tname = term;
items.push_back(item);
}
if (type != REPLY_DONE)
throw_bad_message(context);
tlist->current_position = tlist->items.begin();
return tlist.release();
}
LeafPostList *
RemoteDatabase::open_post_list(const string &term) const
{
return new NetworkPostList(intrusive_ptr<const RemoteDatabase>(this), term);
}
Xapian::doccount
RemoteDatabase::read_post_list(const string &term, NetworkPostList & pl) const
{
send_message(MSG_POSTLIST, term);
string message;
char type;
get_message(message, REPLY_POSTLISTSTART);
const char * p = message.data();
const char * p_end = p + message.size();
Xapian::doccount termfreq;
decode_length(&p, p_end, termfreq);
while ((type = get_message(message)) == REPLY_POSTLISTITEM) {
pl.append_posting(message);
}
if (type != REPLY_DONE)
throw_bad_message(context);
return termfreq;
}
PositionList *
RemoteDatabase::open_position_list(Xapian::docid did, const string &term) const
{
send_message(MSG_POSITIONLIST, encode_length(did) + term);
vector<Xapian::termpos> positions;
string message;
char type;
Xapian::termpos lastpos = static_cast<Xapian::termpos>(-1);
while ((type = get_message(message)) == REPLY_POSITIONLIST) {
const char * p = message.data();
const char * p_end = p + message.size();
Xapian::termpos inc;
decode_length(&p, p_end, inc);
lastpos += inc + 1;
positions.push_back(lastpos);
}
if (type != REPLY_DONE)
throw_bad_message(context);
return new InMemoryPositionList(positions);
}
bool
RemoteDatabase::has_positions() const
{
if (!cached_stats_valid) update_stats();
return has_positional_info;
}
bool
RemoteDatabase::reopen()
{
mru_slot = Xapian::BAD_VALUENO;
return update_stats(MSG_REOPEN);
}
void
RemoteDatabase::close()
{
do_close();
}
// Currently lazy is used when fetching documents from the MSet, and in three
// cases in multimatch.cc. One of the latter is when using a MatchDecider,
// which we don't support with the remote backend currently. The others are
// for the sort key and collapse key which in the remote cases are fetched
// during the remote match and passed across with the MSet. So we can safely
// ignore "lazy" here for now without any performance penalty during the match
// process.
Xapian::Document::Internal *
RemoteDatabase::open_document(Xapian::docid did, bool /*lazy*/) const
{
Assert(did);
send_message(MSG_DOCUMENT, encode_length(did));
string doc_data;
map<Xapian::valueno, string> values;
get_message(doc_data, REPLY_DOCDATA);
reply_type type;
string message;
while ((type = get_message(message)) == REPLY_VALUE) {
const char * p = message.data();
const char * p_end = p + message.size();
Xapian::valueno slot;
decode_length(&p, p_end, slot);
values.insert(make_pair(slot, string(p, p_end)));
}
if (type != REPLY_DONE)
throw_bad_message(context);
return new RemoteDocument(this, did, doc_data, values);
}
bool
RemoteDatabase::update_stats(message_type msg_code, const string & body) const
{
// MSG_MAX signals that we're handling the opening greeting, which isn't in
// response to an explicit message.
if (msg_code != MSG_MAX)
send_message(msg_code, body);
string message;
reply_type type = get_message(message);
if (type != REPLY_UPDATE || message.size() < 3) {
if (type == REPLY_DONE) {
// The database was already open at the latest revision.
return false;
}
throw Xapian::NetworkError("Handshake failed - is this a Xapian server?", context);
}
const char *p = message.c_str();
const char *p_end = p + message.size();
// The protocol major versions must match. The protocol minor version of
// the server must be >= that of the client.
int protocol_major = static_cast<unsigned char>(*p++);
int protocol_minor = static_cast<unsigned char>(*p++);
if (protocol_major != XAPIAN_REMOTE_PROTOCOL_MAJOR_VERSION ||
protocol_minor < XAPIAN_REMOTE_PROTOCOL_MINOR_VERSION) {
string errmsg("Server supports protocol version");
if (protocol_minor) {
errmsg += "s ";
errmsg += str(protocol_major);
errmsg += ".0 to ";
}
errmsg += str(protocol_major);
errmsg += '.';
errmsg += str(protocol_minor);
errmsg +=
" - client is using "
STRINGIZE(XAPIAN_REMOTE_PROTOCOL_MAJOR_VERSION)
"."
STRINGIZE(XAPIAN_REMOTE_PROTOCOL_MINOR_VERSION);
throw Xapian::NetworkError(errmsg, context);
}
decode_length(&p, p_end, doccount);
decode_length(&p, p_end, lastdocid);
lastdocid += doccount;
decode_length(&p, p_end, doclen_lbound);
decode_length(&p, p_end, doclen_ubound);
doclen_ubound += doclen_lbound;
if (p == p_end) {
throw Xapian::NetworkError("Bad stats update message received", context);
}
has_positional_info = (*p++ == '1');
decode_length(&p, p_end, total_length);
uuid.assign(p, p_end);
cached_stats_valid = true;
return true;
}
Xapian::doccount
RemoteDatabase::get_doccount() const
{
if (!cached_stats_valid) update_stats();
return doccount;
}
Xapian::docid
RemoteDatabase::get_lastdocid() const
{
if (!cached_stats_valid) update_stats();
return lastdocid;
}
totlen_t
RemoteDatabase::get_total_length() const
{
if (!cached_stats_valid) update_stats();
return total_length;
}
bool
RemoteDatabase::term_exists(const string & tname) const
{
Assert(!tname.empty());
send_message(MSG_TERMEXISTS, tname);
string message;
reply_type type = get_message(message);
if (type != REPLY_TERMEXISTS && type != REPLY_TERMDOESNTEXIST)
throw_bad_message(context);
return (type == REPLY_TERMEXISTS);
}
void
RemoteDatabase::get_freqs(const string & term,
Xapian::doccount * termfreq_ptr,
Xapian::termcount * collfreq_ptr) const
{
Assert(!term.empty());
string message;
const char * p;
const char * p_end;
if (termfreq_ptr) {
if (collfreq_ptr) {
send_message(MSG_FREQS, term);
get_message(message, REPLY_FREQS);
} else {
send_message(MSG_TERMFREQ, term);
get_message(message, REPLY_TERMFREQ);
}
p = message.data();
p_end = p + message.size();
decode_length(&p, p_end, *termfreq_ptr);
} else if (collfreq_ptr) {
send_message(MSG_COLLFREQ, term);
get_message(message, REPLY_COLLFREQ);
p = message.data();
p_end = p + message.size();
}
if (collfreq_ptr) {
decode_length(&p, p_end, *collfreq_ptr);
}
}
void
RemoteDatabase::read_value_stats(Xapian::valueno slot) const
{
if (mru_slot != slot) {
send_message(MSG_VALUESTATS, encode_length(slot));
string message;
get_message(message, REPLY_VALUESTATS);
const char * p = message.data();
const char * p_end = p + message.size();
mru_slot = slot;
decode_length(&p, p_end, mru_valstats.freq);
size_t len;
decode_length_and_check(&p, p_end, len);
mru_valstats.lower_bound.assign(p, len);
p += len;
decode_length_and_check(&p, p_end, len);
mru_valstats.upper_bound.assign(p, len);
p += len;
if (p != p_end) {
throw Xapian::NetworkError("Bad REPLY_VALUESTATS message received", context);
}
}
}
Xapian::doccount
RemoteDatabase::get_value_freq(Xapian::valueno slot) const
{
read_value_stats(slot);
return mru_valstats.freq;
}
std::string
RemoteDatabase::get_value_lower_bound(Xapian::valueno slot) const
{
read_value_stats(slot);
return mru_valstats.lower_bound;
}
std::string
RemoteDatabase::get_value_upper_bound(Xapian::valueno slot) const
{
read_value_stats(slot);
return mru_valstats.upper_bound;
}
Xapian::termcount
RemoteDatabase::get_doclength_lower_bound() const
{
return doclen_lbound;
}
Xapian::termcount
RemoteDatabase::get_doclength_upper_bound() const
{
return doclen_ubound;
}
Xapian::termcount
RemoteDatabase::get_wdf_upper_bound(const string &) const
{
// The default implementation returns get_collection_freq(), but we
// don't want the overhead of a remote message and reply per query
// term, and we can get called in the middle of a remote exchange
// too. FIXME: handle this bound in the stats local/remote code...
return doclen_ubound;
}
Xapian::termcount
RemoteDatabase::get_doclength(Xapian::docid did) const
{
Assert(did != 0);
send_message(MSG_DOCLENGTH, encode_length(did));
string message;
get_message(message, REPLY_DOCLENGTH);
const char * p = message.c_str();
const char * p_end = p + message.size();
Xapian::termcount doclen;
decode_length(&p, p_end, doclen);
if (p != p_end) {
throw Xapian::NetworkError("Bad REPLY_DOCLENGTH message received", context);
}
return doclen;
}
Xapian::termcount
RemoteDatabase::get_unique_terms(Xapian::docid did) const
{
Assert(did != 0);
send_message(MSG_UNIQUETERMS, encode_length(did));
string message;
get_message(message, REPLY_UNIQUETERMS);
const char * p = message.c_str();
const char * p_end = p + message.size();
Xapian::termcount doclen;
decode_length(&p, p_end, doclen);
if (p != p_end) {
throw Xapian::NetworkError("Bad REPLY_UNIQUETERMS message received", context);
}
return doclen;
}
reply_type
RemoteDatabase::get_message(string &result, reply_type required_type) const
{
double end_time = RealTime::end_time(timeout);
int type_int = link.get_message(result, end_time);
if (type_int < 0)
throw_connection_closed_unexpectedly();
reply_type type = static_cast<reply_type>(type_int);
if (type == REPLY_EXCEPTION) {
unserialise_error(result, "REMOTE:", context);
}
if (required_type != REPLY_MAX && type != required_type) {
string errmsg("Expecting reply type ");
errmsg += str(int(required_type));
errmsg += ", got ";
errmsg += str(int(type));
throw Xapian::NetworkError(errmsg);
}
return type;
}
void
RemoteDatabase::send_message(message_type type, const string &message) const
{
double end_time = RealTime::end_time(timeout);
link.send_message(static_cast<unsigned char>(type), message, end_time);
}
void
RemoteDatabase::do_close()
{
// In the constructor, we set transaction_state to
// TRANSACTION_UNIMPLEMENTED if we aren't writable so that we can check
// it here.
bool writable = (transaction_state != TRANSACTION_UNIMPLEMENTED);
// Only call dtor_called() if we're writable.
if (writable) dtor_called();
// If we're writable, wait for a confirmation of the close, so we know that
// changes have been written and flushed, and the database write lock
// released. For the non-writable case, there's no need to wait, so don't
// slow down searching by waiting here.
link.do_close(writable);
}
void
RemoteDatabase::set_query(const Xapian::Query& query,
Xapian::termcount qlen,
Xapian::doccount collapse_max,
Xapian::valueno collapse_key,
Xapian::Enquire::docid_order order,
Xapian::valueno sort_key,
Xapian::Enquire::Internal::sort_setting sort_by,
bool sort_value_forward,
double time_limit,
int percent_cutoff, double weight_cutoff,
const Xapian::Weight *wtscheme,
const Xapian::RSet &omrset,
const vector<Xapian::Internal::opt_intrusive_ptr<Xapian::MatchSpy>> & matchspies)
{
string tmp = query.serialise();
string message = encode_length(tmp.size());
message += tmp;
// Serialise assorted Enquire settings.
message += encode_length(qlen);
message += encode_length(collapse_max);
if (collapse_max) message += encode_length(collapse_key);
message += char('0' + order);
message += encode_length(sort_key);
message += char('0' + sort_by);
message += char('0' + sort_value_forward);
message += serialise_double(time_limit);
message += char(percent_cutoff);
message += serialise_double(weight_cutoff);
tmp = wtscheme->name();
message += encode_length(tmp.size());
message += tmp;
tmp = wtscheme->serialise();
message += encode_length(tmp.size());
message += tmp;
tmp = serialise_rset(omrset);
message += encode_length(tmp.size());
message += tmp;
for (auto i : matchspies) {
tmp = i->name();
if (tmp.empty()) {
throw Xapian::UnimplementedError("MatchSpy subclass not suitable for use with remote searches - name() method returned empty string");
}
message += encode_length(tmp.size());
message += tmp;
tmp = i->serialise();
message += encode_length(tmp.size());
message += tmp;
}
send_message(MSG_QUERY, message);
}
bool
RemoteDatabase::get_remote_stats(bool nowait, Xapian::Weight::Internal &out)
{
if (nowait && !link.ready_to_read()) return false;
string message;
get_message(message, REPLY_STATS);
unserialise_stats(message, out);
return true;
}
void
RemoteDatabase::send_global_stats(Xapian::doccount first,
Xapian::doccount maxitems,
Xapian::doccount check_at_least,
const Xapian::Weight::Internal &stats)
{
string message = encode_length(first);
message += encode_length(maxitems);
message += encode_length(check_at_least);
message += serialise_stats(stats);
send_message(MSG_GETMSET, message);
}
void
RemoteDatabase::get_mset(Xapian::MSet &mset,
const vector<Xapian::Internal::opt_intrusive_ptr<Xapian::MatchSpy>> & matchspies)
{
string message;
get_message(message, REPLY_RESULTS);
const char * p = message.data();
const char * p_end = p + message.size();
for (auto i : matchspies) {
if (p == p_end)
throw Xapian::NetworkError("Expected serialised matchspy");
size_t len;
decode_length_and_check(&p, p_end, len);
string spyresults(p, len);
p += len;
i->merge_results(spyresults);
}
mset = unserialise_mset(p, p_end);
}
void
RemoteDatabase::commit()
{
send_message(MSG_COMMIT, string());
// We need to wait for a response to ensure documents have been committed.
string message;
get_message(message, REPLY_DONE);
}
void
RemoteDatabase::cancel()
{
cached_stats_valid = false;
mru_slot = Xapian::BAD_VALUENO;
send_message(MSG_CANCEL, string());
}
Xapian::docid
RemoteDatabase::add_document(const Xapian::Document & doc)
{
cached_stats_valid = false;
mru_slot = Xapian::BAD_VALUENO;
send_message(MSG_ADDDOCUMENT, serialise_document(doc));
string message;
get_message(message, REPLY_ADDDOCUMENT);
const char * p = message.data();
const char * p_end = p + message.size();
Xapian::docid did;
decode_length(&p, p_end, did);
return did;
}
void
RemoteDatabase::delete_document(Xapian::docid did)
{
cached_stats_valid = false;
mru_slot = Xapian::BAD_VALUENO;
send_message(MSG_DELETEDOCUMENT, encode_length(did));
string dummy;
get_message(dummy, REPLY_DONE);
}
void
RemoteDatabase::delete_document(const std::string & unique_term)
{
cached_stats_valid = false;
mru_slot = Xapian::BAD_VALUENO;
send_message(MSG_DELETEDOCUMENTTERM, unique_term);
}
void
RemoteDatabase::replace_document(Xapian::docid did,
const Xapian::Document & doc)
{
cached_stats_valid = false;
mru_slot = Xapian::BAD_VALUENO;
string message = encode_length(did);
message += serialise_document(doc);
send_message(MSG_REPLACEDOCUMENT, message);
}
Xapian::docid
RemoteDatabase::replace_document(const std::string & unique_term,
const Xapian::Document & doc)
{
cached_stats_valid = false;
mru_slot = Xapian::BAD_VALUENO;
string message = encode_length(unique_term.size());
message += unique_term;
message += serialise_document(doc);
send_message(MSG_REPLACEDOCUMENTTERM, message);
get_message(message, REPLY_ADDDOCUMENT);
const char * p = message.data();
const char * p_end = p + message.size();
Xapian::docid did;
decode_length(&p, p_end, did);
return did;
}
string
RemoteDatabase::get_uuid() const
{
return uuid;
}
string
RemoteDatabase::get_metadata(const string & key) const
{
send_message(MSG_GETMETADATA, key);
string metadata;
get_message(metadata, REPLY_METADATA);
return metadata;
}
void
RemoteDatabase::set_metadata(const string & key, const string & value)
{
string data = encode_length(key.size());
data += key;
data += value;
send_message(MSG_SETMETADATA, data);
}
void
RemoteDatabase::add_spelling(const string & word,
Xapian::termcount freqinc) const
{
string data = encode_length(freqinc);
data += word;
send_message(MSG_ADDSPELLING, data);
}
void
RemoteDatabase::remove_spelling(const string & word,
Xapian::termcount freqdec) const
{
string data = encode_length(freqdec);
data += word;
send_message(MSG_REMOVESPELLING, data);
}
bool
RemoteDatabase::locked() const
{
throw Xapian::UnimplementedError("Database::locked() not implemented for remote backend");
}
|