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
|
%module(directors="1", moduleimport="from . import _xapian") xapian
%{
/* python.i: SWIG interface file for the Python bindings
*
* Copyright (C) 2011-2023 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
*/
%}
%pythonbegin %{
"""
Xapian is a highly adaptable toolkit which allows developers to easily
add advanced indexing and search facilities to their own applications.
It has built-in support for several families of weighting models
and also supports a rich set of boolean query operators.
In addition to the doc strings provided by this python library, you
may wish to look at the library's overall documentation, either
installed along with the bindings or online at
<https://xapian.org/docs/bindings/python/>, as well as the library's
documentation, possibly installed with the library or with its
development files, or again online at <https://xapian.org/docs/>.
"""
%}
/* These were deprecated before Python 3 support was released. */
#define XAPIAN_BINDINGS_SKIP_DEPRECATED_DB_FACTORIES
%begin %{
#include <config.h>
#ifdef __clang__
// The Python 3.3 headers have several uses of the C register keyword, which
// result in warnings from clang++ 6. There's nothing we can really do about
// them, so just suppress them. This appears to have been addressed in Python
// 3.4 and later.
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wdeprecated-register"
#endif
#include <Python.h>
#ifdef __clang__
# pragma clang diagnostic pop
#endif
/* Override SWIG's standard GIL locking machinery - we want to handle the GIL
* in a way which also works in sub-interpreters.
*
* For Python < 3.7 we can also avoid the overhead of thread locking when the
* user's code isn't using threads (since 3.7, Python always initialises
* threads.)
*/
#define SWIG_PYTHON_NO_USE_GIL
#ifdef THREAD_LOCAL
static THREAD_LOCAL PyThreadState * swig_pythreadstate = NULL;
inline void swig_pythreadstate_ensure_init() { }
inline PyThreadState * swig_pythreadstate_reset() {
PyThreadState * v = swig_pythreadstate;
if (v) swig_pythreadstate = NULL;
return v;
}
inline PyThreadState * swig_pythreadstate_set(PyThreadState * v) {
PyThreadState * old = swig_pythreadstate;
swig_pythreadstate = v;
return old;
}
#else
#include <pthread.h>
static pthread_key_t swig_pythreadstate_key;
static pthread_once_t swig_pythreadstate_key_once = PTHREAD_ONCE_INIT;
static void swig_pythreadstate_make_key()
{
if (pthread_key_create(&swig_pythreadstate_key, NULL) != 0)
Py_FatalError("pthread_key_create failed");
}
inline void swig_pythreadstate_ensure_init() {
pthread_once(&swig_pythreadstate_key_once, swig_pythreadstate_make_key);
}
inline PyThreadState * swig_pythreadstate_reset() {
PyThreadState * v = (PyThreadState*)pthread_getspecific(swig_pythreadstate_key);
if (v) pthread_setspecific(swig_pythreadstate_key, NULL);
return v;
}
inline PyThreadState* swig_pythreadstate_set(PyThreadState * v) {
PyThreadState * old = (PyThreadState*)pthread_getspecific(swig_pythreadstate_key);
pthread_setspecific(swig_pythreadstate_key, (void*)v);
return old;
}
#endif
class XapianSWIG_Python_Thread_Block {
bool status;
public:
XapianSWIG_Python_Thread_Block() : status(false) {
#if PY_VERSION_HEX < 0x03070000
// Since 3.7, Python initialises the GIL in PyInitialize() so
// PyEval_ThreadsInitialized() is no longer useful and was
// deprecated in 3.9.
if (!PyEval_ThreadsInitialized()) return;
#endif
swig_pythreadstate_ensure_init();
PyThreadState* ts = swig_pythreadstate_reset();
if (ts) {
status = true;
PyEval_RestoreThread(ts);
}
}
void end() {
if (status) {
if (swig_pythreadstate_set(PyEval_SaveThread()))
Py_FatalError("swig_pythreadstate set in XapianSWIG_Python_Thread_Block::end()");
status = false;
}
}
~XapianSWIG_Python_Thread_Block() { end(); }
};
class XapianSWIG_Python_Thread_Allow {
bool status;
public:
XapianSWIG_Python_Thread_Allow() : status(true) {
#if PY_VERSION_HEX < 0x03070000
// Since 3.7, Python initialises the GIL in PyInitialize() so
// PyEval_ThreadsInitialized() is no longer useful and was
// deprecated in 3.9.
if (!PyEval_ThreadsInitialized()) {
status = false;
return;
}
#endif
swig_pythreadstate_ensure_init();
if (swig_pythreadstate_set(PyEval_SaveThread()))
Py_FatalError("swig_pythreadstate set in XapianSWIG_Python_Thread_Allow ctor");
}
void end() {
if (status) {
PyThreadState * ts = swig_pythreadstate_reset();
if (!ts)
Py_FatalError("swig_pythreadstate unset in XapianSWIG_Python_Thread_Block::end()");
PyEval_RestoreThread(ts);
status = false;
}
}
~XapianSWIG_Python_Thread_Allow() { end(); }
};
#define SWIG_PYTHON_THREAD_BEGIN_BLOCK XapianSWIG_Python_Thread_Block _xapian_swig_thread_block
#define SWIG_PYTHON_THREAD_END_BLOCK _xapian_swig_thread_block.end()
#define SWIG_PYTHON_THREAD_BEGIN_ALLOW XapianSWIG_Python_Thread_Allow _xapian_swig_thread_allow
#define SWIG_PYTHON_THREAD_END_ALLOW _xapian_swig_thread_allow.end()
%}
// Use SWIG directors for Python wrappers.
#define XAPIAN_SWIG_DIRECTORS
%include version.i
%include ../xapian-head.i
// Doccomments from Doxgyen-generated XML from C++ API docs.
%include doccomments.i
// Manually added exceptions for cases where the automatic comments aren't
// helpful, or are missing.
%include extracomments.i
%include util.i
// get_description() should return 'str' via the default typemap.
%typemap(out) std::string get_description() = std::string;
%typemap(out) std::string __str__() = std::string;
// All other std::string returns should map to 'bytes'.
%typemap(out) std::string %{
$result = PyBytes_FromStringAndSize($1.data(), $1.size());
%}
%typemap(directorin) std::string, const std::string & %{
$input = PyBytes_FromStringAndSize($1_name.data(), $1_name.size());
%}
// And const char * too.
%typemap(out) const char * %{
$result = PyBytes_FromString($1);
%}
%typemap(directorin) const char * %{
$input = PyBytes_FromString($1_name);
%}
// Make xapian.version_string() return a Unicode string.
%typemap(out) const char * version_string %{
$result = PyUnicode_FromString($1);
%}
// Parameters where passing Unicode makes no sense.
%typemap(typecheck) const std::string & serialised %{
$1 = PyBytes_Check($input) ? 1 : 0;
%}
%typemap(in) const std::string & serialised (std::string bytes) {
char * p;
Py_ssize_t len;
if (PyBytes_AsStringAndSize($input, &p, &len) < 0) SWIG_fail;
bytes.assign(p, len);
$1 = &bytes;
}
#define XAPIAN_MIXED_SUBQUERIES_BY_ITERATOR_TYPEMAP
// Don't release the GIL for this method since we use Python C API calls to do
// the iteration.
%nothreadallow Xapian::Query::Query(op op_, XapianSWIGQueryItor qbegin, XapianSWIGQueryItor qend, Xapian::termcount parameter = 0);
%typemap(typecheck, precedence=500) (XapianSWIGQueryItor qbegin, XapianSWIGQueryItor qend) {
// Checking for a sequence which isn't a string or bytes is enough to
// disambiguate currently.
$1 = (PySequence_Check($input) &&
!PyUnicode_Check($input) &&
!PyBytes_Check($input));
}
%{
class XapianSWIGQueryItor {
mutable PyObject * seq;
int i;
/// str_obj must be a bytes object
Xapian::Query str_obj_to_query(PyObject * str_obj) const {
char * p;
Py_ssize_t len;
(void)PyBytes_AsStringAndSize(str_obj, &p, &len);
return Xapian::Query(string(p, len));
}
public:
typedef std::random_access_iterator_tag iterator_category;
typedef Xapian::Query value_type;
typedef Xapian::termcount_diff difference_type;
typedef Xapian::Query * pointer;
typedef Xapian::Query & reference;
XapianSWIGQueryItor() : seq(NULL), i(0) { }
void begin(PyObject * seq_) {
seq = seq_;
}
void end(PyObject * seq_) {
i = PySequence_Fast_GET_SIZE(seq_);
}
void free_seq() {
Py_CLEAR(seq);
}
XapianSWIGQueryItor & operator++() {
++i;
return *this;
}
Xapian::Query operator*() const {
PyObject * obj = PySequence_Fast_GET_ITEM(seq, i);
// Unicode object.
if (PyUnicode_Check(obj)) {
PyObject* s = PyUnicode_AsUTF8String(obj);
if (!s) goto fail;
Xapian::Query result = str_obj_to_query(s);
Py_DECREF(s);
return result;
}
// String.
if (PyBytes_Check(obj))
return str_obj_to_query(obj);
// xapian.Query object (or unexpected object type).
{
Xapian::Query * result_ptr = Xapian::get_py_query(obj);
if (result_ptr) return *result_ptr;
}
fail:
throw Xapian::InvalidArgumentError("Expected Query object or string");
}
bool operator==(const XapianSWIGQueryItor & o) {
return i == o.i;
}
bool operator!=(const XapianSWIGQueryItor & o) {
return !(*this == o);
}
difference_type operator-(const XapianSWIGQueryItor &o) const {
return i - o.i;
}
};
%}
%typemap(in) (XapianSWIGQueryItor qbegin, XapianSWIGQueryItor qend) {
PyObject * seq;
seq = PySequence_Fast($input,
"expected sequence of Query objects and/or strings");
if (!seq) SWIG_fail;
$1.begin(seq);
$2.end(seq);
}
%typemap(freearg) (XapianSWIGQueryItor qbegin, XapianSWIGQueryItor qend)
%{ $1.free_seq(); %}
%include except.i
%include ../xapian-headers.i
%include extra.i
|