Branch data Line data Source code
1 : : /** @file backendmanager_remoteprog.h
2 : : * @brief BackendManager subclass for remoteprog databases.
3 : : */
4 : : /* Copyright (C) 2007,2009 Olly Betts
5 : : * Copyright (C) 2008 Lemur Consulting Ltd
6 : : *
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.
11 : : *
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.
16 : : *
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 USA
20 : : */
21 : :
22 : : #ifndef XAPIAN_INCLUDED_BACKENDMANAGER_REMOTEPROG_H
23 : : #define XAPIAN_INCLUDED_BACKENDMANAGER_REMOTEPROG_H
24 : :
25 : : #include "backendmanager.h"
26 : : #include "backendmanager_remote.h"
27 : :
28 : : #include <string>
29 : :
30 : : #include <xapian/base.h>
31 : : #include <xapian/types.h>
32 : : #include <xapian/postingiterator.h>
33 : :
34 : : #include "positionlist.h"
35 : :
36 : : /// BackendManager subclass for remoteprog databases.
37 [ - + ][ # # ]: 3 : class BackendManagerRemoteProg : public BackendManagerRemote {
38 : : /// Don't allow assignment.
39 : : void operator=(const BackendManagerRemoteProg &);
40 : :
41 : : /// Don't allow copying.
42 : : BackendManagerRemoteProg(const BackendManagerRemoteProg &);
43 : :
44 : : /// The path of the last writable database used.
45 : : std::string last_wdb_name;
46 : :
47 : : private:
48 : : /// Create a Xapian::Database object indexing multiple files.
49 : : Xapian::Database do_get_database(const std::vector<std::string> & files);
50 : :
51 : : public:
52 : 3 : BackendManagerRemoteProg(const std::string & remote_type_)
53 : 3 : : BackendManagerRemote(remote_type_) { }
54 : :
55 : : /// Return a string representing the current database type.
56 : : std::string get_dbtype() const;
57 : :
58 : : /// Create a RemoteProg Xapian::WritableDatabase object indexing a single file.
59 : : Xapian::WritableDatabase get_writable_database(const std::string & name,
60 : : const std::string & file);
61 : :
62 : : /// Create a RemoteProg Xapian::Database with the specified timeout.
63 : : Xapian::Database get_remote_database(const std::vector<std::string> & files,
64 : : unsigned int timeout);
65 : :
66 : : /// Create a Database object for the last opened WritableDatabase.
67 : : Xapian::Database get_writable_database_as_database();
68 : :
69 : : /// Create a WritableDatabase object for the last opened WritableDatabase.
70 : : Xapian::WritableDatabase get_writable_database_again();
71 : : };
72 : :
73 : : #endif // XAPIAN_INCLUDED_BACKENDMANAGER_REMOTEPROG_H
|