scriptindex: Fix weird error cases
[xapian.git] / xapian-core / net / replicatetcpserver.cc
blob14d48b41899d4a2b2fe3d226ac38bcb30285e450
1 /** @file
2 * @brief TCP/IP replication server class.
3 */
4 /* Copyright (C) 2008,2010,2011 Olly Betts
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <config.h>
23 #include "replicatetcpserver.h"
25 #include <xapian/error.h>
26 #include "api/replication.h"
27 #include "remoteconnection.h"
29 using namespace std;
31 ReplicateTcpServer::ReplicateTcpServer(const string & host, int port,
32 const string & path_)
33 : TcpServer(host, port, false, false), path(path_)
37 ReplicateTcpServer::~ReplicateTcpServer() {
40 void
41 ReplicateTcpServer::handle_one_connection(int socket)
43 RemoteConnection client(socket, -1);
44 try {
45 // Read start_revision from the client.
46 string start_revision;
47 if (client.get_message(start_revision, 0.0) != 'R') {
48 throw Xapian::NetworkError("Bad replication client message");
51 // Read dbname from the client.
52 string dbname;
53 if (client.get_message(dbname, 0.0) != 'D') {
54 throw Xapian::NetworkError("Bad replication client message (2)");
56 if (dbname.find("..") != string::npos) {
57 throw Xapian::NetworkError("dbname contained '..'");
60 string dbpath(path);
61 dbpath += '/';
62 dbpath += dbname;
63 Xapian::DatabaseMaster master(dbpath);
64 master.write_changesets_to_fd(socket, start_revision, NULL);
65 } catch (...) {
66 // Ignore exceptions.