Regenerate version.h when version_h.cc changes
[xapian.git] / xapian-core / backends / databasereplicator.cc
blobea61ea179adf067d1578e7a5b8e9326833b899e5
1 /** @file databasereplicator.cc
2 * @brief Support class for database replication.
3 */
4 /* Copyright 2008 Lemur Consulting Ltd
5 * Copyright 2009,2010,2011,2012 Olly Betts
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
20 * USA
23 #include <config.h>
25 #include "databasereplicator.h"
27 #include "xapian/error.h"
28 #include "xapian/version.h" // For XAPIAN_HAS_XXX_BACKEND.
30 #include "debuglog.h"
31 #include "filetests.h"
33 #ifdef XAPIAN_HAS_GLASS_BACKEND
34 # include "glass/glass_databasereplicator.h"
35 #endif
37 using namespace std;
39 namespace Xapian {
41 DatabaseReplicator::~DatabaseReplicator()
45 DatabaseReplicator *
46 DatabaseReplicator::open(const string & path)
48 LOGCALL_STATIC_VOID(DB, "DatabaseReplicator::DatabaseReplicator", path);
50 #ifdef XAPIAN_HAS_GLASS_BACKEND
51 if (file_exists(path + "/iamglass")) {
52 return new GlassDatabaseReplicator(path);
54 #endif
56 if (file_exists(path + "/iamchert")) {
57 throw FeatureUnavailableError("Chert backend no longer supported");
60 if (file_exists(path + "/iamflint")) {
61 throw FeatureUnavailableError("Flint backend no longer supported");
64 if (file_exists(path + "/iambrass")) {
65 throw FeatureUnavailableError("Brass backend no longer supported");
68 throw DatabaseOpeningError("Couldn't detect type of database: " + path);