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
|
/* database.cc: Database::Internal base class.
*
* Copyright 1999,2000,2001 BrightStation PLC
* Copyright 2002 Ananova Ltd
* Copyright 2002,2003,2004,2005,2006,2007,2008,2009,2011,2014,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
*/
#include <config.h>
#include "database.h"
#include "xapian/error.h"
#include "api/leafpostlist.h"
#include "omassert.h"
#include "slowvaluelist.h"
#include <algorithm>
#include <string>
using namespace std;
using Xapian::Internal::intrusive_ptr;
namespace Xapian {
Database::Internal::~Internal()
{
}
void
Database::Internal::keep_alive()
{
// For the normal case of local databases, nothing needs to be done.
}
void
Database::Internal::readahead_for_query(const Xapian::Query &)
{
}
Xapian::doccount
Database::Internal::get_value_freq(Xapian::valueno) const
{
throw Xapian::UnimplementedError("This backend doesn't support get_value_freq");
}
string
Database::Internal::get_value_lower_bound(Xapian::valueno) const
{
return string();
}
string
Database::Internal::get_value_upper_bound(Xapian::valueno) const
{
throw Xapian::UnimplementedError("This backend doesn't support get_value_upper_bound");
}
Xapian::termcount
Database::Internal::get_doclength_lower_bound() const
{
// A zero-length document can't contain any terms, so we ignore such
// documents for the purposes of this lower bound.
return 1;
}
Xapian::termcount
Database::Internal::get_doclength_upper_bound() const
{
// Not a very tight bound in general, but this is only a fall-back for
// backends which don't store these stats.
return min(get_total_length(), totlen_t(Xapian::termcount(-1)));
}
Xapian::termcount
Database::Internal::get_wdf_upper_bound(const string & term) const
{
// Not a very tight bound in general, but this is only a fall-back for
// backends which don't store these stats.
Xapian::termcount cf;
get_freqs(term, NULL, &cf);
return cf;
}
// Discard any exceptions - we're called from the destructors of derived
// classes so we can't safely throw.
void
Database::Internal::dtor_called()
{
try {
if (transaction_active()) {
cancel_transaction();
} else if (transaction_state == TRANSACTION_NONE) {
commit();
}
} catch (...) {
// We can't safely throw exceptions from a destructor in case an
// exception is already active and causing us to be destroyed.
}
}
void
Database::Internal::commit()
{
// Writable databases should override this method.
Assert(false);
}
void
Database::Internal::cancel()
{
// Writable databases should override this method.
Assert(false);
}
void
Database::Internal::begin_transaction(bool flushed)
{
if (transaction_state != TRANSACTION_NONE) {
if (transaction_state == TRANSACTION_UNIMPLEMENTED)
throw Xapian::UnimplementedError("This backend doesn't implement transactions");
throw InvalidOperationError("Cannot begin transaction - transaction already in progress");
}
if (flushed) {
// N.B. Call commit() before we set transaction_state since commit()
// isn't allowing during a transaction.
commit();
transaction_state = TRANSACTION_FLUSHED;
} else {
transaction_state = TRANSACTION_UNFLUSHED;
}
}
void
Database::Internal::commit_transaction()
{
if (!transaction_active()) {
if (transaction_state == TRANSACTION_UNIMPLEMENTED)
throw Xapian::UnimplementedError("This backend doesn't implement transactions");
throw InvalidOperationError("Cannot commit transaction - no transaction currently in progress");
}
bool flushed = (transaction_state == TRANSACTION_FLUSHED);
transaction_state = TRANSACTION_NONE;
// N.B. Call commit() after we clear transaction_state since commit()
// isn't allowing during a transaction.
if (flushed) commit();
}
void
Database::Internal::cancel_transaction()
{
if (!transaction_active()) {
if (transaction_state == TRANSACTION_UNIMPLEMENTED)
throw Xapian::UnimplementedError("This backend doesn't implement transactions");
throw InvalidOperationError("Cannot cancel transaction - no transaction currently in progress");
}
transaction_state = TRANSACTION_NONE;
cancel();
}
Xapian::docid
Database::Internal::add_document(const Xapian::Document &)
{
// Writable databases should override this method.
Assert(false);
return 0;
}
void
Database::Internal::delete_document(Xapian::docid)
{
// Writable databases should override this method.
Assert(false);
}
void
Database::Internal::delete_document(const string & unique_term)
{
// Default implementation - overridden for remote databases
intrusive_ptr<LeafPostList> pl(open_post_list(unique_term));
while (pl->next(), !pl->at_end()) {
delete_document(pl->get_docid());
}
}
void
Database::Internal::replace_document(Xapian::docid, const Xapian::Document &)
{
// Writable databases should override this method.
Assert(false);
}
Xapian::docid
Database::Internal::replace_document(const string & unique_term,
const Xapian::Document & document)
{
// Default implementation - overridden for remote databases
intrusive_ptr<LeafPostList> pl(open_post_list(unique_term));
pl->next();
if (pl->at_end()) {
return add_document(document);
}
Xapian::docid did = pl->get_docid();
replace_document(did, document);
while (pl->next(), !pl->at_end()) {
delete_document(pl->get_docid());
}
return did;
}
ValueList *
Database::Internal::open_value_list(Xapian::valueno slot) const
{
return new SlowValueList(this, slot);
}
TermList *
Database::Internal::open_spelling_termlist(const string &) const
{
// Only implemented for some database backends - others will just not
// suggest spelling corrections (or not contribute to them in a multiple
// database situation).
return NULL;
}
TermList *
Database::Internal::open_spelling_wordlist() const
{
// Only implemented for some database backends - others will just not
// suggest spelling corrections (or not contribute to them in a multiple
// database situation).
return NULL;
}
Xapian::doccount
Database::Internal::get_spelling_frequency(const string &) const
{
// Only implemented for some database backends - others will just not
// suggest spelling corrections (or not contribute to them in a multiple
// database situation).
return 0;
}
void
Database::Internal::add_spelling(const string &, Xapian::termcount) const
{
throw Xapian::UnimplementedError("This backend doesn't implement spelling correction");
}
void
Database::Internal::remove_spelling(const string &, Xapian::termcount) const
{
throw Xapian::UnimplementedError("This backend doesn't implement spelling correction");
}
TermList *
Database::Internal::open_synonym_termlist(const string &) const
{
// Only implemented for some database backends - others will just not
// expand synonyms (or not contribute to them in a multiple database
// situation).
return NULL;
}
TermList *
Database::Internal::open_synonym_keylist(const string &) const
{
// Only implemented for some database backends - others will just not
// expand synonyms (or not contribute to them in a multiple database
// situation).
return NULL;
}
void
Database::Internal::add_synonym(const string &, const string &) const
{
throw Xapian::UnimplementedError("This backend doesn't implement synonyms");
}
void
Database::Internal::remove_synonym(const string &, const string &) const
{
throw Xapian::UnimplementedError("This backend doesn't implement synonyms");
}
void
Database::Internal::clear_synonyms(const string &) const
{
throw Xapian::UnimplementedError("This backend doesn't implement synonyms");
}
string
Database::Internal::get_metadata(const string &) const
{
return string();
}
TermList *
Database::Internal::open_metadata_keylist(const string &) const
{
// Only implemented for some database backends - others will simply report
// there being no metadata keys.
return NULL;
}
void
Database::Internal::set_metadata(const string &, const string &)
{
throw Xapian::UnimplementedError("This backend doesn't implement metadata");
}
bool
Database::Internal::reopen()
{
// Database backends which don't support simultaneous update and reading
// probably don't need to do anything here. And since we didn't do
// anything we should return false to indicate that nothing has changed.
return false;
}
void
Database::Internal::request_document(Xapian::docid /*did*/) const
{
}
Xapian::Document::Internal *
Database::Internal::collect_document(Xapian::docid did) const
{
// Open the document lazily - collect document is only called by
// Enquire::Internal::read_doc() for a given MSetItem, so we know that the
// document already exists.
return open_document(did, true);
}
void
Database::Internal::write_changesets_to_fd(int, const string &, bool, ReplicationInfo *)
{
throw Xapian::UnimplementedError("This backend doesn't provide changesets");
}
string
Database::Internal::get_revision_info() const
{
throw Xapian::UnimplementedError("This backend doesn't provide access to revision information");
}
string
Database::Internal::get_uuid() const
{
return string();
}
void
Database::Internal::invalidate_doc_object(Xapian::Document::Internal *) const
{
// Do nothing, by default.
}
void
Database::Internal::get_used_docid_range(Xapian::docid &,
Xapian::docid &) const
{
throw Xapian::UnimplementedError("This backend doesn't implement get_used_docid_range()");
}
bool
Database::Internal::locked() const
{
return false;
}
}
|