* if an open_cursor operation fails, don't attempt to modify the cursor * the cursor iteration code has to stop on WT_NOTFOUND * some config strings have been renamed (internal_* rather than intl_*)
233 lines
6.6 KiB
OpenEdge ABL
233 lines
6.6 KiB
OpenEdge ABL
/*
|
|
* See the file LICENSE for redistribution information.
|
|
*
|
|
* Copyright (c) 2011 WiredTiger, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* wiredtiger.i
|
|
* The SWIG interface file defining the wiredtiger python API.
|
|
*
|
|
*/
|
|
|
|
%module wiredtiger
|
|
|
|
%pythoncode %{
|
|
from packing import pack, unpack
|
|
%}
|
|
|
|
/* Set the input argument to point to a temporary variable */
|
|
%typemap(in, numinputs=0) WT_CONNECTION ** (WT_CONNECTION *temp = NULL) {
|
|
$1 = &temp;
|
|
}
|
|
%typemap(in, numinputs=0) WT_SESSION ** (WT_SESSION *temp = NULL) {
|
|
$1 = &temp;
|
|
}
|
|
%typemap(in, numinputs=0) WT_CURSOR ** (WT_CURSOR *temp = NULL) {
|
|
$1 = &temp;
|
|
}
|
|
|
|
/* Set the return value to the returned connection, session, or cursor */
|
|
%typemap(argout) WT_CONNECTION ** {
|
|
$result = SWIG_NewPointerObj(SWIG_as_voidptr(*$1),
|
|
SWIGTYPE_p_wt_connection, 0);
|
|
}
|
|
%typemap(argout) WT_SESSION ** {
|
|
$result = SWIG_NewPointerObj(SWIG_as_voidptr(*$1),
|
|
SWIGTYPE_p_wt_session, 0);
|
|
}
|
|
|
|
%typemap(argout) WT_CURSOR ** {
|
|
$result = SWIG_NewPointerObj(SWIG_as_voidptr(*$1),
|
|
SWIGTYPE_p_wt_cursor, 0);
|
|
if (*$1 != NULL) {
|
|
(*$1)->flags |= WT_CURSTD_RAW;
|
|
PyObject_SetAttrString($result, "is_column",
|
|
PyBool_FromLong(strcmp((*$1)->key_format, "r") == 0));
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Error returns other than WT_NOTFOUND generate an exception.
|
|
* Use our own exception type, in future tailored to the kind
|
|
* of error.
|
|
*/
|
|
%header %{
|
|
static PyObject *wtError;
|
|
%}
|
|
|
|
%init %{
|
|
/*
|
|
* Create an exception type and put it into the _wiredtiger module.
|
|
* First increment the reference count because PyModule_AddObject
|
|
* decrements it. Then note that "m" is the local variable for the
|
|
* module in the SWIG generated code. If there is a SWIG variable for
|
|
* this, I haven't found it.
|
|
*/
|
|
wtError =
|
|
PyErr_NewException("_wiredtiger.WiredTigerError", NULL, NULL);
|
|
Py_INCREF(wtError);
|
|
PyModule_AddObject(m, "WiredTigerError", wtError);
|
|
%}
|
|
|
|
%pythoncode %{
|
|
WiredTigerError = _wiredtiger.WiredTigerError
|
|
%}
|
|
|
|
%typemap(out) int {
|
|
if ($1 != 0 && $1 != WT_NOTFOUND) {
|
|
/* We could use PyErr_SetObject for more complex reporting. */
|
|
PyErr_SetString(wtError, wiredtiger_strerror($1));
|
|
SWIG_fail;
|
|
}
|
|
$result = SWIG_From_int((int)($1));
|
|
}
|
|
|
|
/*
|
|
* Extra 'self' elimination.
|
|
* The methods we're wrapping look like this:
|
|
* struct wt_xxx {
|
|
* int method(WT_XXX *, ...otherargs...);
|
|
* };
|
|
* To SWIG, that is equivalent to:
|
|
* int method(wt_xxx *self, WT_XXX *, ...otherargs...);
|
|
* and we use consecutive argument matching of typemaps to convert two args to
|
|
* one.
|
|
*/
|
|
%define SELFHELPER(type)
|
|
%typemap(in) (type *self, type *) (void *argp = 0, int res = 0) %{
|
|
res = SWIG_ConvertPtr($input, &argp, $descriptor, $disown | 0);
|
|
if (!SWIG_IsOK(res)) {
|
|
SWIG_exception_fail(SWIG_ArgError(res),
|
|
"in method '" "$symname" "', argument " "$argnum"
|
|
" of type '" "$type" "'");
|
|
}
|
|
$2 = $1 = ($ltype)(argp);
|
|
%}
|
|
%enddef
|
|
|
|
SELFHELPER(struct wt_connection)
|
|
SELFHELPER(struct wt_session)
|
|
SELFHELPER(struct wt_cursor)
|
|
|
|
/* WT_CURSOR customization. */
|
|
/* First, replace the varargs get / set methods with Python equivalents. */
|
|
%ignore wt_cursor::get_key;
|
|
%ignore wt_cursor::set_key;
|
|
%ignore wt_cursor::get_value;
|
|
%ignore wt_cursor::set_value;
|
|
|
|
/* SWIG magic to turn Python byte strings into data / size. */
|
|
%apply (char *STRING, int LENGTH) { (char *data, int size) };
|
|
|
|
%extend wt_cursor {
|
|
/* Get / set keys and values */
|
|
void _set_key(char *data, int size) {
|
|
WT_ITEM k;
|
|
k.data = data;
|
|
k.size = (uint32_t)size;
|
|
$self->set_key($self, &k);
|
|
}
|
|
|
|
void _set_recno(wiredtiger_recno_t recno) {
|
|
$self->set_key($self, recno);
|
|
}
|
|
|
|
void _set_value(char *data, int size) {
|
|
WT_ITEM v;
|
|
v.data = data;
|
|
v.size = (uint32_t)size;
|
|
$self->set_value($self, &v);
|
|
}
|
|
|
|
PyObject *_get_key() {
|
|
WT_ITEM k;
|
|
$self->get_key($self, &k);
|
|
return SWIG_FromCharPtrAndSize(k.data, k.size);
|
|
}
|
|
|
|
wiredtiger_recno_t _get_recno() {
|
|
wiredtiger_recno_t r;
|
|
$self->get_key($self, &r);
|
|
return r;
|
|
}
|
|
|
|
PyObject *_get_value() {
|
|
WT_ITEM v;
|
|
$self->get_value($self, &v);
|
|
return SWIG_FromCharPtrAndSize(v.data, v.size);
|
|
}
|
|
|
|
%pythoncode %{
|
|
def get_key(self):
|
|
return self.get_keys()[0]
|
|
|
|
def get_keys(self):
|
|
if self.is_column:
|
|
return (self._get_recno(),)
|
|
else:
|
|
return unpack(self.key_format, self._get_key())
|
|
|
|
def get_value(self):
|
|
return self.get_values()[0]
|
|
|
|
def get_values(self):
|
|
return unpack(self.value_format, self._get_value())
|
|
|
|
def set_key(self, *args):
|
|
if self.is_column:
|
|
self._set_recno(args[0])
|
|
else:
|
|
# Keep the Python string pinned
|
|
self._key = pack(self.key_format, *args)
|
|
self._set_key(self._key)
|
|
|
|
def set_value(self, *args):
|
|
# Keep the Python string pinned
|
|
self._value = pack(self.value_format, *args)
|
|
self._set_value(self._value)
|
|
|
|
# Implement the iterable contract for wt_cursor
|
|
def __iter__(self):
|
|
return self
|
|
|
|
def next(self):
|
|
if self._next() == WT_NOTFOUND:
|
|
raise StopIteration
|
|
return self.get_keys() + self.get_values()
|
|
%}
|
|
};
|
|
|
|
/*
|
|
* We want our own 'next' function for wt_cursor to implement iterable.
|
|
*/
|
|
%rename(_next) next(WT_CURSOR *);
|
|
|
|
/* Remove / rename parts of the C API that we don't want in Python. */
|
|
%immutable wt_cursor::key_format;
|
|
%immutable wt_cursor::value_format;
|
|
|
|
%ignore WT_BUF;
|
|
%ignore wt_collator;
|
|
%ignore wt_connection::add_collator;
|
|
%ignore wt_cursor_type;
|
|
%ignore wt_connection::add_cursor_type;
|
|
%ignore wt_event_handler;
|
|
%ignore wt_extractor;
|
|
%ignore wt_connection::add_extractor;
|
|
%ignore wt_item;
|
|
|
|
%ignore wiredtiger_struct_pack;
|
|
%ignore wiredtiger_struct_packv;
|
|
%ignore wiredtiger_struct_size;
|
|
%ignore wiredtiger_struct_sizev;
|
|
%ignore wiredtiger_struct_unpack;
|
|
%ignore wiredtiger_struct_unpackv;
|
|
|
|
%ignore wiredtiger_extension_init;
|
|
|
|
%rename(Cursor) wt_cursor;
|
|
%rename(Session) wt_session;
|
|
%rename(Connection) wt_connection;
|
|
|
|
%include "wiredtiger.h"
|