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 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
|
%{
/* 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 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 the documentation comments extracted from doxygen output. */
#ifdef DOCCOMMENTS_I_SOURCES
%include "doccomments.i"
#endif
/* Include overrides for the documentation comments. */
%include "extracomments.i"
// Use SWIG directors for Python wrappers.
#define XAPIAN_SWIG_DIRECTORS
%include typemaps.i
%include stl.i
/* For the 1.0 series, we support get_description() as a deprecated method.
* This will be removed in release 1.1.0
*/
namespace Xapian {
%extend Database { std::string get_description() const { return self->get_description(); } }
%extend Document { std::string get_description() const { return self->get_description(); } }
%extend ESet { std::string get_description() const { return self->get_description(); } }
%extend ESetIterator { std::string get_description() const { return self->get_description(); } }
%extend Enquire { std::string get_description() const { return self->get_description(); } }
%extend MSet { std::string get_description() const { return self->get_description(); } }
%extend MSetIterator { std::string get_description() const { return self->get_description(); } }
%extend PositionIterator { std::string get_description() const { return self->get_description(); } }
%extend PostingIterator { std::string get_description() const { return self->get_description(); } }
%extend Query { std::string get_description() const { return self->get_description(); } }
%extend QueryParser { std::string get_description() const { return self->get_description(); } }
%extend RSet { std::string get_description() const { return self->get_description(); } }
%extend Stem { std::string get_description() const { return self->get_description(); } }
%extend Stopper { std::string get_description() const { return self->get_description(); } }
%extend TermIterator { std::string get_description() const { return self->get_description(); } }
%extend ValueIterator { std::string get_description() const { return self->get_description(); } }
%extend WritableDatabase { std::string get_description() const { return self->get_description(); } }
}
/* Use get_description() methods for str(). */
%rename(__str__) get_description;
%{
namespace Xapian {
class PythonProblem {};
Query *get_py_query(PyObject *obj) {
#if PY_VERSION_HEX < 0x02050000
// In Python 2.4 (and presumably earlier), PyObject_GetAttrString()
// takes a char* parameter which causes a warning with GCC >= 4.2.
// This is fixed in Python 2.5.
PyObject * mythis = PyObject_GetAttrString(obj, (char *)"this");
#else
PyObject * mythis = PyObject_GetAttrString(obj, "this");
#endif
Query * retval = 0;
if (!mythis || SWIG_ConvertPtr(mythis, (void **)&retval,
SWIGTYPE_p_Xapian__Query, 0) < 0) {
retval = 0;
}
return retval;
}
#if 0 // Currently unused
RSet *get_py_rset(PyObject *obj) {
PyObject * mythis = PyObject_GetAttrString(obj, "this");
Rset * retval = 0;
if (!mythis || SWIG_ConvertPtr(mythis, (void **)&retval,
SWIGTYPE_p_Xapian__RSet, 0) < 0) {
retval = 0;
}
return retval;
}
#endif
#if 0 // FIXME
MatchDecider *get_py_matchdecider(PyObject *obj) {
PyObject * mythis = PyObject_GetAttrString(obj, "this");
MatchDecider * retval = 0;
if (!mythis || SWIG_ConvertPtr(mythis, (void **)&retval,
SWIGTYPE_p_Xapian__MatchDecider, 0) < 0) {
retval = 0;
}
return retval;
}
#endif
#if 0
int get_py_int(PyObject *obj) {
if (!PyNumber_Check(obj)) {
throw PythonProblem();
}
return PyInt_AsLong(PyNumber_Int(obj));
}
#endif
}
%}
#define XAPIAN_MIXED_VECTOR_QUERY_INPUT_TYPEMAP
%typemap(typecheck, precedence=500) const vector<Xapian::Query> & {
if (!PySequence_Check($input)) {
$1 = 0;
} else {
$1 = 1;
int numitems = PySequence_Size($input);
for (int i = 0; i < numitems; ++i) {
PyObject *obj = PySequence_GetItem($input, i);
if (!PyUnicode_Check(obj) && !PyString_Check(obj) && !Xapian::get_py_query(obj)) {
$1 = 0;
break;
}
}
}
}
%typemap(in) const vector<Xapian::Query> & (vector<Xapian::Query> v) {
if (!PySequence_Check($input)) {
PyErr_SetString(PyExc_TypeError, "expected list of strings or queries");
return NULL;
}
int numitems = PySequence_Size($input);
v.reserve(numitems);
for (int i = 0; i < numitems; ++i) {
PyObject *obj = PySequence_GetItem($input, i);
if (PyUnicode_Check(obj)) {
PyObject *strobj = PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(obj), PyUnicode_GET_SIZE(obj), "ignore");
if (!strobj) SWIG_fail;
Py_DECREF(obj);
obj = strobj;
}
if (PyString_Check(obj)) {
char * p;
Py_ssize_t len;
/* We know this must be a string, so this call can't fail. */
(void)PyString_AsStringAndSize(obj, &p, &len);
v.push_back(Xapian::Query(string(p, len)));
} else {
Xapian::Query *subqp = Xapian::get_py_query(obj);
if (!subqp) {
PyErr_SetString(PyExc_TypeError, "expected string or query");
SWIG_fail;
}
v.push_back(*subqp);
}
}
$1 = &v;
}
#define XAPIAN_TERMITERATOR_PAIR_OUTPUT_TYPEMAP
%typemap(out) std::pair<Xapian::TermIterator, Xapian::TermIterator> {
$result = PyList_New(0);
if ($result == 0) {
return NULL;
}
for (Xapian::TermIterator i = $1.first; i != $1.second; ++i) {
PyObject * str = PyString_FromStringAndSize((*i).data(), (*i).size());
if (str == 0) return NULL;
if (PyList_Append($result, str) == -1) return NULL;
}
}
%typedef PyObject *LangSpecificListType;
%inline %{
#define MSET_DID 0
#define MSET_WT 1
#define MSET_RANK 2
#define MSET_PERCENT 3
#define MSET_DOCUMENT 4
#define ESET_TNAME 0
#define ESET_WT 1
%}
%feature("nothread") Xapian::MSet::items;
%{
/* The GIL must be held when this is called. */
PyObject *Xapian_MSet_items_get(Xapian::MSet *mset)
{
PyObject *retval = PyList_New(0);
if (retval == 0) {
return NULL;
}
for (Xapian::MSetIterator i = mset->begin(); i != mset->end(); ++i) {
PyObject *t = PyTuple_New(4);
if (!t) return NULL;
PyTuple_SetItem(t, MSET_DID, PyInt_FromLong(*i));
PyTuple_SetItem(t, MSET_WT, PyFloat_FromDouble(i.get_weight()));
PyTuple_SetItem(t, MSET_RANK, PyInt_FromLong(i.get_rank()));
PyTuple_SetItem(t, MSET_PERCENT, PyInt_FromLong(i.get_percent()));
if (PyList_Append(retval, t) == -1) return NULL;
}
return retval;
}
%}
%feature("nothread") Xapian::ESet::items;
%{
/* The GIL must be held when this is called. */
PyObject *Xapian_ESet_items_get(Xapian::ESet *eset)
{
PyObject *retval = PyList_New(0);
if (retval == 0) {
return NULL;
}
for (Xapian::ESetIterator i = eset->begin(); i != eset->end(); ++i) {
PyObject *t = PyTuple_New(2);
if (!t) return NULL;
PyObject * str = PyString_FromStringAndSize((*i).data(), (*i).size());
if (str == 0) return NULL;
PyTuple_SetItem(t, ESET_TNAME, str);
PyTuple_SetItem(t, ESET_WT, PyFloat_FromDouble(i.get_weight()));
if (PyList_Append(retval, t) == -1) return NULL;
}
return retval;
}
%}
%typemap(memberout) PyObject *items {
$result = PyList_New(0);
if ($result == 0) {
return NULL;
}
for (Xapian::MSetIterator i = $1.begin(); i != $1.end(); ++i) {
PyObject *t = PyTuple_New(2);
if (!t) return NULL;
PyTuple_SetItem(t, MSET_DID, PyInt_FromLong(*i));
PyTuple_SetItem(t, MSET_WT, PyFloat_FromDouble(i->get_weight()));
if (PyList_Append($result, t) == -1) return NULL;
}
%}
namespace Xapian {
%extend TermIterator {
bool __eq__(const TermIterator &other) {
return (*self)==other;
}
bool __ne__(const TermIterator &other) {
return (*self)!=other;
}
}
%extend PositionIterator {
bool __eq__(const PositionIterator &other) {
return (*self)==other;
}
bool __ne__(const PositionIterator &other) {
return (*self)!=other;
}
}
%extend PostingIterator {
bool __eq__(const PostingIterator &other) {
return (*self)==other;
}
bool __ne__(const PostingIterator &other) {
return (*self)!=other;
}
}
%extend ValueIterator {
bool __eq__(const ValueIterator &other) {
return (*self)==other;
}
bool __ne__(const ValueIterator &other) {
return (*self)!=other;
}
}
%extend MSetIterator {
bool __eq__(const MSetIterator &other) {
return (*self)==other;
}
bool __ne__(const MSetIterator &other) {
return (*self)!=other;
}
}
%extend ESetIterator {
bool __eq__(const ESetIterator &other) {
return (*self)==other;
}
bool __ne__(const ESetIterator &other) {
return (*self)!=other;
}
}
%extend MSet {
%immutable;
// access to the items array
PyObject *items;
%mutable;
// for comparison
int __cmp__(const MSet &other) {
if (self->get_max_possible() != other.get_max_possible()) {
return (self->get_max_possible() < other.get_max_possible())? -1 : 1;
}
if (self->size() != other.size()) {
return (self->size() < other.size())? -1 : 1;
}
for (size_t i=0; i<self->size(); ++i) {
if (*(*self)[i] != *other[i]) {
return (*(*self)[i] < *other[i])? -1 : 1;
}
if ((*self)[i].get_weight() != other[i].get_weight()) {
return ((*self)[i].get_weight() < other[i].get_weight())? -1 : 1;
}
}
return 0;
}
}
//%apply LangSpecificListType items { PyObject *items }
%extend ESet {
%immutable;
PyObject *items;
%mutable;
}
}
%{
/* Forward declaration. */
SWIGINTERN int
SWIG_AsPtr_std_string (PyObject * obj, std::string **val);
/* Utility function which works like SWIG_AsPtr_std_string, but
* converts unicode strings to UTF-8 simple strings first. */
SWIGINTERN int
SWIG_anystring_as_ptr(PyObject ** obj, std::string **val)
{
if (PyUnicode_Check(*obj)) {
PyObject * strobj = PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(*obj), PyUnicode_GET_SIZE(*obj), "ignore");
if (strobj == NULL) return SWIG_ERROR;
int res = SWIG_AsPtr_std_string(strobj, val);
Py_DECREF(strobj);
return res;
} 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) const std::string &(int res = SWIG_OLDOBJ) {
std::string *ptr = (std::string *)0;
res = SWIG_anystring_as_ptr(&($input), &ptr);
if (!SWIG_IsOK(res)) {
%argument_fail(res,"$type",$symname, $argnum);
}
if (!ptr) {
%argument_nullref("$type",$symname, $argnum);
}
$1 = ptr;
}
%typemap(in) std::string {
std::string *ptr = (std::string *)0;
int res = SWIG_anystring_as_ptr(&($input), &ptr);
if (!SWIG_IsOK(res) || !ptr) {
%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 & {
int res = SWIG_anystring_as_ptr(&($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) std::string {
std::string *swig_optr = 0;
int swig_ores;
{
PyObject * tmp = $input;
Py_INCREF(tmp);
swig_ores = SWIG_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;
}
/* Extend ValueRangeProcessor to have a method with named parameters vrpbegin
* and vrpend. We only have to do this so that we have parameter names which
* aren't used anywhere else, so that we can then write specific typemaps for
* them. If SWIG allowed us to apply a typemap only to a specific method, we
* wouldn't need to do this. */
namespace Xapian {
%extend ValueRangeProcessor {
Xapian::valueno __call(std::string &vrpbegin, std::string &vrpend) {
return (*self)(vrpbegin, vrpend);
}
}
}
/* These typemaps handle ValueRangeProcessors, which take non-const references
* to std::string and modify the strings. They rely on no other methods
* existing which use the parameter names "vrpbegin" and "vrpend". */
%typemap(in) std::string &vrpbegin (std::string temp),
std::string &vrpend (std::string temp) {
std::string *ptr = (std::string *)0;
int res = SWIG_AsPtr_std_string($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 &vrpbegin {
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_SetItem(newresult, 0, $result);
$result = newresult;
str = PyString_FromStringAndSize($1->data(), $1->size());
if (str == 0) {
Py_DECREF($result);
$result = NULL;
SWIG_fail;
}
PyTuple_SetItem($result, 1, str);
}
%typemap(argout) std::string &vrpend {
PyObject * str;
str = PyString_FromStringAndSize($1->data(), $1->size());
if (str == 0) {
Py_DECREF($result);
$result = NULL;
SWIG_fail;
}
PyTuple_SetItem($result, 2, str);
}
/* vim:set syntax=cpp:set noexpandtab: */
|