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
|
/** @file chert_database.h
* @brief C++ class definition for chert database
*/
/* Copyright 1999,2000,2001 BrightStation PLC
* Copyright 2002 Ananova Ltd
* Copyright 2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Olly Betts
* Copyright 2008 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
*/
#ifndef OM_HGUARD_CHERT_DATABASE_H
#define OM_HGUARD_CHERT_DATABASE_H
#include "backends/backends.h"
#include "backends/database.h"
#include "chert_dbstats.h"
#include "chert_positionlist.h"
#include "chert_postlist.h"
#include "chert_record.h"
#include "chert_spelling.h"
#include "chert_synonym.h"
#include "chert_termlisttable.h"
#include "chert_values.h"
#include "chert_version.h"
#include "../flint_lock.h"
#include "chert_types.h"
#include "backends/valuestats.h"
#include "noreturn.h"
#include "xapian/compactor.h"
#include "xapian/constants.h"
#include <map>
#include <vector>
#include <string>
class ChertTermList;
class ChertAllDocsPostList;
class RemoteConnection;
/** A backend designed for efficient indexing and retrieval, using
* compressed posting lists and a btree storage scheme.
*/
class ChertDatabase : public Xapian::Database::Internal {
friend class ChertWritableDatabase;
friend class ChertTermList;
friend class ChertPostList;
friend class ChertAllTermsList;
friend class ChertAllDocsPostList;
private:
/** Directory to store databases in.
*/
std::string db_dir;
/** Whether the database is readonly.
*/
bool readonly;
/** The file describing the Chert database.
* This file has information about the format of the database
* which can't easily be stored in any of the individual tables.
*/
ChertVersion version_file;
/** Table storing posting lists.
*
* Whenever an update is performed, this table is the first to be
* updated: therefore, its most recent revision number is the most
* recent anywhere in the database.
*/
mutable ChertPostListTable postlist_table;
/** Table storing position lists.
*/
ChertPositionListTable position_table;
/** Table storing term lists.
*/
ChertTermListTable termlist_table;
/** Value manager. */
mutable ChertValueManager value_manager;
/** Table storing synonym data.
*/
mutable ChertSynonymTable synonym_table;
/** Table storing spelling correction data.
*/
mutable ChertSpellingTable spelling_table;
/** Table storing records.
*
* Whenever an update is performed, this table is the last to be
* updated: therefore, its most recent revision number is the most
* recent consistent revision available. If this table's most
* recent revision number is not available for all tables, there
* is no consistent revision available, and the database is corrupt.
*/
ChertRecordTable record_table;
/// Lock object.
FlintLock lock;
/** The maximum number of changesets which should be kept in the
* database. */
unsigned int max_changesets;
/// Database statistics.
ChertDatabaseStats stats;
/** Return true if a database exists at the path specified for this
* database.
*/
bool database_exists();
/** Create new tables, and open them.
* Any existing tables will be removed first.
*/
void create_and_open_tables(unsigned int blocksize);
/** Open all tables at most recent consistent revision.
*
* @return true if the tables were reopened; false if we could
* tell they were already open at the latest revision.
*
* @exception Xapian::DatabaseCorruptError is thrown if there is no
* consistent revision available.
*/
bool open_tables_consistent();
/** Get a write lock on the database, or throw an
* Xapian::DatabaseLockError if failure.
*
* @param flags Bit-wise or of zero or more Xapian::DB_* constants
*
* @param creating true if the database is in the process of being
* created - if false, will throw a DatabaseOpening error if the lock
* can't be acquired and the database doesn't exist.
*/
void get_database_write_lock(int flags, bool creating);
/** Open tables at specified revision number.
*
* @exception Xapian::InvalidArgumentError is thrown if the specified
* revision is not available.
*/
void open_tables(chert_revision_number_t revision);
/** Get an object holding the next revision number which should be
* used in the tables.
*
* @return the next revision number.
*/
chert_revision_number_t get_next_revision_number() const;
/** Set the revision number in the tables.
*
* This updates the disk tables so that the currently open revision
* becomes the specified revision number.
*
* @param new_revision The new revision number to store. This must
* be greater than the latest revision number (see
* get_latest_revision_number()), or undefined behaviour will
* result.
*/
void set_revision_number(chert_revision_number_t new_revision);
/** Re-open tables to recover from an overwritten condition,
* or just get most up-to-date version.
*/
bool reopen();
/** Close all the tables permanently.
*/
void close();
/** Called if a modifications fail.
*
* @param msg is a string description of the exception that was
* raised when the modifications failed.
*/
void modifications_failed(chert_revision_number_t old_revision,
chert_revision_number_t new_revision,
const std::string & msg);
/** Apply any outstanding changes to the tables.
*
* If an error occurs during this operation, this will be signalled
* by an exception being thrown. In this case the contents of the
* tables on disk will be left in an unmodified state (though possibly
* with increased revision numbers), and the outstanding changes will
* be lost.
*/
void apply();
/** Cancel any outstanding changes to the tables.
*/
void cancel();
/** Send a set of messages which transfer the whole database.
*/
void send_whole_database(RemoteConnection & conn, double end_time);
/** Get the revision stored in a changeset.
*/
void get_changeset_revisions(const string & path,
chert_revision_number_t * startrev,
chert_revision_number_t * endrev) const;
public:
/** Create and open a chert database.
*
* @exception Xapian::DatabaseCorruptError is thrown if there is no
* consistent revision available.
*
* @exception Xapian::DatabaseOpeningError thrown if database can't
* be opened.
*
* @exception Xapian::DatabaseVersionError thrown if database is in an
* unsupported format. This implies that the database was
* created by an older or newer version of Xapian.
*
* @param dbdir directory holding chert tables
*
* @param block_size Block size, in bytes, to use when creating
* tables. This is only important, and has the
* correct value, when the database is being
* created.
*/
ChertDatabase(const string &db_dir_, int action = Xapian::DB_READONLY_,
unsigned int block_size = 0u);
~ChertDatabase();
/// Get a postlist table cursor (used by ChertValueList).
ChertCursor * get_postlist_cursor() const {
return postlist_table.cursor_get();
}
/** Get an object holding the revision number which the tables are
* opened at.
*
* @return the current revision number.
*/
chert_revision_number_t get_revision_number() const;
/** Virtual methods of Database::Internal. */
//@{
Xapian::doccount get_doccount() const;
Xapian::docid get_lastdocid() const;
totlen_t get_total_length() const;
Xapian::termcount get_doclength(Xapian::docid did) const;
Xapian::termcount get_unique_terms(Xapian::docid did) const;
void get_freqs(const string & term,
Xapian::doccount * termfreq_ptr,
Xapian::termcount * collfreq_ptr) const;
Xapian::doccount get_value_freq(Xapian::valueno slot) const;
std::string get_value_lower_bound(Xapian::valueno slot) const;
std::string get_value_upper_bound(Xapian::valueno slot) const;
Xapian::termcount get_doclength_lower_bound() const;
Xapian::termcount get_doclength_upper_bound() const;
Xapian::termcount get_wdf_upper_bound(const string & term) const;
bool term_exists(const string & tname) const;
bool has_positions() const;
LeafPostList * open_post_list(const string & tname) const;
ValueList * open_value_list(Xapian::valueno slot) const;
Xapian::Document::Internal * open_document(Xapian::docid did, bool lazy) const;
PositionList * open_position_list(Xapian::docid did, const string & term) const;
TermList * open_term_list(Xapian::docid did) const;
TermList * open_allterms(const string & prefix) const;
TermList * open_spelling_termlist(const string & word) const;
TermList * open_spelling_wordlist() const;
Xapian::doccount get_spelling_frequency(const string & word) const;
TermList * open_synonym_termlist(const string & term) const;
TermList * open_synonym_keylist(const string & prefix) const;
string get_metadata(const string & key) const;
TermList * open_metadata_keylist(const std::string &prefix) const;
void write_changesets_to_fd(int fd,
const string & start_revision,
bool need_whole_db,
Xapian::ReplicationInfo * info);
string get_revision_info() const;
string get_uuid() const;
void request_document(Xapian::docid /*did*/) const;
void readahead_for_query(const Xapian::Query &query);
//@}
XAPIAN_NORETURN(void throw_termlist_table_close_exception() const);
int get_backend_info(string * path) const {
if (path) *path = db_dir;
return BACKEND_CHERT;
}
void get_used_docid_range(Xapian::docid & first,
Xapian::docid & last) const;
bool locked() const;
static void compact(Xapian::Compactor * compactor,
const char * destdir,
const std::vector<Xapian::Database::Internal *> & sources,
const std::vector<Xapian::docid> & offset,
size_t block_size,
Xapian::Compactor::compaction_level compaction,
unsigned flags,
Xapian::docid last_docid);
};
/** A writable chert database.
*/
class ChertWritableDatabase : public ChertDatabase {
/** Unflushed changes to term frequencies and collection frequencies. */
mutable map<string, pair<Xapian::termcount_diff, Xapian::termcount_diff> >
freq_deltas;
/** Document lengths of new and modified documents which haven't been flushed yet. */
mutable map<Xapian::docid, Xapian::termcount> doclens;
/// Modifications to posting lists.
mutable map<string, map<Xapian::docid,
pair<char, Xapian::termcount> > > mod_plists;
mutable map<Xapian::valueno, ValueStats> value_stats;
/** The number of documents added, deleted, or replaced since the last
* flush.
*/
mutable Xapian::doccount change_count;
/// If change_count reaches this threshold we automatically flush.
Xapian::doccount flush_threshold;
/** A pointer to the last document which was returned by
* open_document(), or NULL if there is no such valid document. This
* is used purely for comparing with a supplied document to help with
* optimising replace_document. When the document internals are
* deleted, this pointer gets set to NULL.
*/
mutable Xapian::Document::Internal * modify_shortcut_document;
/** The document ID for the last document returned by open_document().
*/
mutable Xapian::docid modify_shortcut_docid;
/** Check if we should autoflush.
*
* Called at the end of each document changing operation.
*/
void check_flush_threshold();
/// Flush any unflushed postlist changes, but don't commit them.
void flush_postlist_changes() const;
/// Close all the tables permanently.
void close();
/// Apply changes.
void apply();
/** Add or modify an entry in freq_deltas.
*
* @param tname The term to modify the entry for.
* @param tf_delta The change in the term frequency delta.
* @param cf_delta The change in the collection frequency delta.
*/
void add_freq_delta(const string & tname,
Xapian::termcount_diff tf_delta,
Xapian::termcount_diff cf_delta);
/** Insert modifications for a new document to the postlists.
*
* @param did The document ID to insert the entry for.
* @param tname The term to insert the entry for.
* @param wdf The new wdf value to store.
*/
void insert_mod_plist(Xapian::docid did,
const string & tname,
Xapian::termcount wdf);
/** Update the stored modifications to the postlists.
*
* @param did The document ID to modify the entry for.
* @param tname The term to modify the entry for.
* @param type The type of change to the postlist.
* @param wdf The new wdf value to store.
*
* If type is 'A', and an existing entry is in the stored
* modifications, the stored type will be set to 'M'. In all other
* cases, the stored type is simply the value supplied.
*/
void update_mod_plist(Xapian::docid did,
const string & tname,
char type,
Xapian::termcount wdf);
//@{
/** Implementation of virtual methods: see Database::Internal for
* details.
*/
void commit();
/** Cancel pending modifications to the database. */
void cancel();
Xapian::docid add_document(const Xapian::Document & document);
Xapian::docid add_document_(Xapian::docid did, const Xapian::Document & document);
// Stop the default implementation of delete_document(term) and
// replace_document(term) from being hidden. This isn't really
// a problem as we only try to call them through the base class
// (where they aren't hidden) but some compilers generate a warning
// about the hiding.
#ifndef _MSC_VER
using Xapian::Database::Internal::delete_document;
using Xapian::Database::Internal::replace_document;
#endif
void delete_document(Xapian::docid did);
void replace_document(Xapian::docid did, const Xapian::Document & document);
Xapian::Document::Internal * open_document(Xapian::docid did,
bool lazy) const;
//@}
public:
/** Create and open a writable chert database.
*
* @exception Xapian::DatabaseOpeningError thrown if database can't
* be opened.
*
* @exception Xapian::DatabaseVersionError thrown if database is in an
* unsupported format. This implies that the database was
* created by an older or newer version of Xapian.
*
* @param dir directory holding chert tables
*/
ChertWritableDatabase(const string &dir, int action, int block_size);
~ChertWritableDatabase();
/** Virtual methods of Database::Internal. */
//@{
Xapian::termcount get_doclength(Xapian::docid did) const;
Xapian::termcount get_unique_terms(Xapian::docid did) const;
void get_freqs(const string & term,
Xapian::doccount * termfreq_ptr,
Xapian::termcount * collfreq_ptr) const;
Xapian::doccount get_value_freq(Xapian::valueno slot) const;
std::string get_value_lower_bound(Xapian::valueno slot) const;
std::string get_value_upper_bound(Xapian::valueno slot) const;
bool term_exists(const string & tname) const;
LeafPostList * open_post_list(const string & tname) const;
ValueList * open_value_list(Xapian::valueno slot) const;
TermList * open_allterms(const string & prefix) const;
void add_spelling(const string & word, Xapian::termcount freqinc) const;
void remove_spelling(const string & word, Xapian::termcount freqdec) const;
TermList * open_spelling_wordlist() const;
TermList * open_synonym_keylist(const string & prefix) const;
void add_synonym(const string & word, const string & synonym) const;
void remove_synonym(const string & word, const string & synonym) const;
void clear_synonyms(const string & word) const;
void set_metadata(const string & key, const string & value);
void invalidate_doc_object(Xapian::Document::Internal * obj) const;
//@}
};
#endif /* OM_HGUARD_CHERT_DATABASE_H */
|