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
|
%{
/** @file xapian-head.i
* @brief Header for SWIG interface file for Xapian.
*/
/* Copyright (C) 2005,2006,2007,2008,2009,2011,2012,2013,2014,2015,2016 Olly Betts
*
* 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
*/
// Disable any deprecation warnings for Xapian methods/functions/classes.
#define XAPIAN_DEPRECATED(D) D
#include <xapian.h>
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
using namespace std;
// If a backend has been disabled in xapian-core (manually or automatically) we
// include a stub definition here so the bindings can still be built.
namespace Xapian {
%}
#ifndef XAPIAN_BINDINGS_SKIP_DEPRECATED_DB_FACTORIES
%{
#ifndef XAPIAN_HAS_CHERT_BACKEND
namespace Chert {
static Database open(const string &) {
throw FeatureUnavailableError("Chert backend not supported");
}
static WritableDatabase open(const string &, int, int = 0) {
throw FeatureUnavailableError("Chert backend not supported");
}
}
#endif
#ifndef XAPIAN_HAS_INMEMORY_BACKEND
namespace InMemory {
static WritableDatabase open() {
throw FeatureUnavailableError("InMemory backend not supported");
}
}
#endif
%}
#endif
%{
#ifndef XAPIAN_HAS_REMOTE_BACKEND
namespace Remote {
static Database open(const string &, unsigned int, useconds_t = 0, useconds_t = 0) {
throw FeatureUnavailableError("Remote backend not supported");
}
static WritableDatabase open_writable(const string &, unsigned int, useconds_t = 0, useconds_t = 0, int = 0) {
throw FeatureUnavailableError("Remote backend not supported");
}
static Database open(const string &, const string &, useconds_t = 0) {
throw FeatureUnavailableError("Remote backend not supported");
}
static WritableDatabase open_writable(const string &, const string &, useconds_t = 0, int = 0) {
throw FeatureUnavailableError("Remote backend not supported");
}
}
#endif
}
%}
using namespace std;
%include exception.i
%include stl.i
// Disable errors about not including headers individually.
#define XAPIAN_IN_XAPIAN_H
// Define these away for SWIG's parser.
#define XAPIAN_DEPRECATED(D) D
#define XAPIAN_DEPRECATED_EX(D) D
#define XAPIAN_DEPRECATED_CLASS
#define XAPIAN_DEPRECATED_CLASS_EX
#define XAPIAN_VISIBILITY_DEFAULT
#define XAPIAN_CONST_FUNCTION
#define XAPIAN_PURE_FUNCTION
#define XAPIAN_NOEXCEPT
#define XAPIAN_NOTHROW(D) D
// Ignore these which SWIG seems to add pointless type entries for due them
// being used in the SWIG typemap for std::pair.
%ignore first_type;
%ignore second_type;
// Treat POSIX useconds_t as unsigned.
%apply unsigned { useconds_t };
|