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 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
|
%{
/* python/util.i: custom Python typemaps for xapian-bindings
*
* Copyright (C) 1999,2000,2001 BrightStation PLC
* Copyright (C) 2002 Ananova Ltd
* Copyright (C) 2002,2003 James Aylett
* Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2013,2016,2017,2019 Olly Betts
* Copyright (C) 2007 Lemur Consulting Ltd
*
* 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
*/
%}
%include typemaps.i
%include stl.i
/* Wrap get_description() methods as str(). */
%rename(__str__) get_description;
/* So iterator objects match the Python3 iterator API. */
%rename(__next__) next;
/* Hide "unsafe" C++ iterator methods. */
%rename(_allterms_begin) Xapian::Database::allterms_begin;
%rename(_allterms_end) Xapian::Database::allterms_end;
%rename(_metadata_keys_begin) Xapian::Database::metadata_keys_begin;
%rename(_metadata_keys_end) Xapian::Database::metadata_keys_end;
%rename(_synonym_keys_begin) Xapian::Database::synonym_keys_begin;
%rename(_synonym_keys_end) Xapian::Database::synonym_keys_end;
%rename(_synonyms_begin) Xapian::Database::synonyms_begin;
%rename(_synonyms_end) Xapian::Database::synonyms_end;
%rename(_spellings_begin) Xapian::Database::spellings_begin;
%rename(_spellings_end) Xapian::Database::spellings_end;
%rename(_positionlist_begin) Xapian::Database::positionlist_begin;
%rename(_positionlist_end) Xapian::Database::positionlist_end;
%rename(_postlist_begin) Xapian::Database::postlist_begin;
%rename(_postlist_end) Xapian::Database::postlist_end;
%rename(_termlist_begin) Xapian::Database::termlist_begin;
%rename(_termlist_end) Xapian::Database::termlist_end;
%rename(_termlist_begin) Xapian::Document::termlist_begin;
%rename(_termlist_end) Xapian::Document::termlist_end;
%rename(_values_begin) Xapian::Document::values_begin;
%rename(_values_end) Xapian::Document::values_end;
%rename(_get_matching_terms_begin) Xapian::Enquire::get_matching_terms_begin;
%rename(_get_matching_terms_end) Xapian::Enquire::get_matching_terms_end;
%rename(_begin) Xapian::ESet::begin;
%rename(_end) Xapian::ESet::end;
%rename(_begin) Xapian::MSet::begin;
%rename(_end) Xapian::MSet::end;
%rename(_positionlist_begin) Xapian::PostingIterator::positionlist_begin;
%rename(_positionlist_end) Xapian::PostingIterator::positionlist_end;
%rename(_get_terms_begin) Xapian::Query::get_terms_begin;
%rename(_get_terms_end) Xapian::Query::get_terms_end;
%rename(_stoplist_begin) Xapian::QueryParser::stoplist_begin;
%rename(_stoplist_end) Xapian::QueryParser::stoplist_end;
%rename(_unstem_begin) Xapian::QueryParser::unstem_begin;
%rename(_unstem_end) Xapian::QueryParser::unstem_end;
%rename(_positionlist_begin) Xapian::TermIterator::positionlist_begin;
%rename(_positionlist_end) Xapian::TermIterator::positionlist_end;
/* We replace the get_hit() method with one which returns an MSetitem. */
%rename(_get_hit_internal) Xapian::MSet::get_hit;
%{
namespace Xapian {
Query *get_py_query(PyObject *obj) {
PyObject * mythis = PyObject_GetAttrString(obj, "this");
if (!mythis)
return 0;
Query * retval = 0;
int res = SWIG_ConvertPtr(mythis, (void **)&retval,
SWIGTYPE_p_Xapian__Query, 0);
if (!SWIG_IsOK(res)) {
retval = 0;
}
Py_DECREF(mythis);
return retval;
}
}
%}
namespace Xapian {
%extend TermIterator {
bool __eq__(const TermIterator &other) {
return (*self)==other;
}
bool __ne__(const TermIterator &other) {
return (*self)!=other;
}
}
%rename(_TermIterator) TermIterator;
%extend PositionIterator {
bool __eq__(const PositionIterator &other) {
return (*self)==other;
}
bool __ne__(const PositionIterator &other) {
return (*self)!=other;
}
}
%rename(_PositionIterator) PositionIterator;
%extend PostingIterator {
bool __eq__(const PostingIterator &other) {
return (*self)==other;
}
bool __ne__(const PostingIterator &other) {
return (*self)!=other;
}
}
%rename(_PostingIterator) PostingIterator;
%extend ValueIterator {
bool __eq__(const ValueIterator &other) {
return (*self)==other;
}
bool __ne__(const ValueIterator &other) {
return (*self)!=other;
}
}
%rename(_ValueIterator) ValueIterator;
%extend MSetIterator {
bool __eq__(const MSetIterator &other) {
return (*self)==other;
}
bool __ne__(const MSetIterator &other) {
return (*self)!=other;
}
}
%rename(_MSetIterator) MSetIterator;
%extend ESetIterator {
bool __eq__(const ESetIterator &other) {
return (*self)==other;
}
bool __ne__(const ESetIterator &other) {
return (*self)!=other;
}
}
%rename(_ESetIterator) ESetIterator;
}
%fragment("XapianSWIG_anystring_as_ptr", "header", fragment="SWIG_AsPtr_std_string") {
/* Utility function which works like SWIG_AsPtr_std_string, but
* converts unicode strings to UTF-8 simple strings first. */
static int
XapianSWIG_anystring_as_ptr(PyObject * obj, std::string **val)
{
if (PyUnicode_Check(obj)) {
PyObject* strobj = PyUnicode_AsUTF8String(obj);
if (strobj == NULL) return INT_MIN;
char *p;
Py_ssize_t len;
PyBytes_AsStringAndSize(strobj, &p, &len);
if (val) *val = new std::string(p, len);
Py_DECREF(strobj);
return SWIG_NEWOBJ;
} else if (PyBytes_Check(obj)) {
char *p;
Py_ssize_t len;
PyBytes_AsStringAndSize(obj, &p, &len);
if (val) *val = new std::string(p, len);
return SWIG_NEWOBJ;
} else {
return SWIG_AsPtr_std_string(obj, val);
}
}
}
/* These typemaps depends somewhat heavily on the internals of SWIG, so
* might break with future versions of SWIG.
*/
%typemap(in, fragment="XapianSWIG_anystring_as_ptr") const std::string &(int res = SWIG_OLDOBJ) {
std::string *ptr = (std::string *)0;
res = XapianSWIG_anystring_as_ptr($input, &ptr);
if (!SWIG_IsOK(res)) {
if (res == INT_MIN) SWIG_fail;
%argument_fail(res, "$type", $symname, $argnum);
}
if (!ptr) {
%argument_nullref("$type", $symname, $argnum);
}
$1 = ptr;
}
%typemap(in, fragment="XapianSWIG_anystring_as_ptr") std::string {
std::string *ptr = (std::string *)0;
int res = XapianSWIG_anystring_as_ptr($input, &ptr);
if (!SWIG_IsOK(res) || !ptr) {
if (res == INT_MIN) SWIG_fail;
%argument_fail((ptr ? res : SWIG_TypeError), "$type", $symname, $argnum);
}
$1 = *ptr;
if (SWIG_IsNewObj(res)) delete ptr;
}
%typemap(freearg, noblock=1, match="in") const std::string & {
if (SWIG_IsNewObj(res$argnum)) %delete($1);
}
%typemap(typecheck, noblock=1, precedence=900) const std::string & {
if (PyUnicode_Check($input)) {
$1 = 1;
} else if (PyBytes_Check($input)) {
$1 = 1;
} else {
int res = SWIG_AsPtr_std_string($input, (std::string**)(0));
$1 = SWIG_CheckState(res);
}
}
%typemap(in, fragment="XapianSWIG_anystring_as_ptr") const std::string *(int res = SWIG_OLDOBJ) {
std::string *ptr = (std::string *)0;
if ($input != Py_None) {
res = XapianSWIG_anystring_as_ptr($input, &ptr);
if (!SWIG_IsOK(res)) {
if (res == INT_MIN) SWIG_fail;
%argument_fail(res, "$type", $symname, $argnum);
}
}
$1 = ptr;
}
%typemap(freearg, noblock=1, match="in") const std::string * {
if (SWIG_IsNewObj(res$argnum)) %delete($1);
}
%typemap(typecheck, noblock=1, precedence=900) const std::string * {
if ($input == Py_None) {
$1 = 1;
} else if (PyUnicode_Check($input)) {
$1 = 1;
} else if (PyBytes_Check($input)) {
$1 = 1;
} else {
int res = SWIG_AsPtr_std_string($input, (std::string**)(0));
$1 = SWIG_CheckState(res);
}
}
/* This typemap is only currently needed for returning a value from the
* get_description() method of a Stopper subclass to a C++ caller, but might be
* more generally useful in future.
*/
%typemap(directorout, noblock=1, fragment="XapianSWIG_anystring_as_ptr") std::string {
std::string *swig_optr = 0;
int swig_ores;
{
PyObject * tmp = $input;
Py_INCREF(tmp);
swig_ores = XapianSWIG_anystring_as_ptr(tmp, &swig_optr);
Py_DECREF(tmp);
}
if (!SWIG_IsOK(swig_ores) || !swig_optr) {
%dirout_fail((swig_optr ? swig_ores : SWIG_TypeError), "$type");
}
$result = *swig_optr;
if (SWIG_IsNewObj(swig_ores)) %delete(swig_optr);
}
/** This pair of typemaps implements conversion of the return value of
* ValueRangeProcessor subclasses implemented in Python from a tuple of
* (valueno, begin, end) to a return value of valueno, and assigning the new
* values of begin and end to the parameters.
*/
%typemap(directorin,noblock=1) std::string & {
$input = SWIG_From_std_string(static_cast< std::string >($1_name));
}
%typemap(directorout,noblock=1) Xapian::valueno {
if (!PyTuple_Check($input)) {
%dirout_fail(SWIG_TypeError, "($type, std::string, std::string)");
}
if (PyTuple_Size($input) != 3) {
%dirout_fail(SWIG_IndexError, "($type, std::string, std::string)");
}
// Set the return value from the first item of the tuple.
unsigned int swig_val;
int swig_res = SWIG_AsVal_unsigned_SS_int(PyTuple_GET_ITEM((PyObject *)$input, 0), &swig_val);
if (!SWIG_IsOK(swig_res)) {
%dirout_fail(swig_res, "($type, std::string, std::string)");
}
c_result = static_cast< Xapian::valueno >(swig_val);
// Set "begin" from the second item of the tuple.
std::string *ptr = (std::string *)0;
swig_res = SWIG_AsPtr_std_string(PyTuple_GET_ITEM((PyObject *)$input, 1), &ptr);
if (!SWIG_IsOK(swig_res) || !ptr) {
delete ptr;
ptr = (std::string *)0;
%dirout_fail((ptr ? swig_res : SWIG_TypeError), "($type, std::string, std::string)");
}
begin = *ptr;
delete ptr;
ptr = (std::string *)0;
// Set "end" from the third item of the tuple.
swig_res = SWIG_AsPtr_std_string(PyTuple_GET_ITEM((PyObject *)$input, 2), &ptr);
if (!SWIG_IsOK(swig_res) || !ptr) {
delete ptr;
ptr = (std::string *)0;
%dirout_fail((ptr ? swig_res : SWIG_TypeError), "($type, std::string, std::string)");
}
end = *ptr;
delete ptr;
ptr = (std::string *)0;
}
/* These typemaps handle ValueRangeProcessors, which take non-const references
* to std::string and modify the strings.
*/
%typemap(in) std::string &begin (std::string temp),
std::string &end (std::string temp) {
std::string *ptr = (std::string *)0;
int res = XapianSWIG_anystring_as_ptr($input, &ptr);
if (!SWIG_IsOK(res) || !ptr) {
%argument_fail((ptr ? res : SWIG_TypeError), "$type", $symname, $argnum);
}
temp = *ptr;
$1 = &temp;
if (SWIG_IsNewObj(res)) delete ptr;
}
%typemap(argout) (std::string &begin, std::string &end) {
PyObject * str;
PyObject * newresult;
// Put the existing result into the first item of a new 3-tuple.
newresult = PyTuple_New(3);
if (newresult == 0) {
Py_DECREF($result);
$result = NULL;
SWIG_fail;
}
PyTuple_SET_ITEM(newresult, 0, $result);
$result = newresult;
str = PyBytes_FromStringAndSize($1->data(), $1->size());
if (str == 0) {
Py_DECREF($result);
$result = NULL;
SWIG_fail;
}
PyTuple_SET_ITEM($result, 1, str);
str = PyBytes_FromStringAndSize($2->data(), $2->size());
if (str == 0) {
Py_DECREF($result);
$result = NULL;
SWIG_fail;
}
PyTuple_SET_ITEM($result, 2, str);
}
%typemap(directorin) (size_t num_tags, const std::string tags[]) {
PyObject * result = PyList_New(num_tags);
if (result == 0) {
return NULL;
}
for (size_t i = 0; i != num_tags; ++i) {
PyObject * str = PyBytes_FromStringAndSize(tags[i].data(), tags[i].size());
if (str == 0) {
Py_DECREF(result);
return NULL;
}
PyList_SET_ITEM(result, i, str);
}
$input = result;
}
/* vim:set syntax=cpp:set noexpandtab: */
|