Skip to content

Commit

Permalink
Added the "SuperRow" object to replace the sqlite3.Row object. This n…
Browse files Browse the repository at this point in the history
…ew row provides slice notation and is written in C.
  • Loading branch information
xapple committed Dec 12, 2011
1 parent 90f9d33 commit 8daca84
Show file tree
Hide file tree
Showing 6 changed files with 365 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@
# IDE files #
/.idea

# Build files #
# Build stuff #
/MANIFEST

# Build directories #
/build/
/dist/

# Compiled files #
/track/pyrow.so

# Git files #
/.gitattributes
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
[nosetests]
with-doctest=1
[build_ext]
inplace=1
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from distutils.core import setup
from distutils.core import setup, Extension

setup(
name = 'track',
Expand All @@ -17,4 +17,5 @@
'track.simple',
'track.test',
],
ext_modules=[Extension('track.pyrow', ['src/pyrow.c'])]
)
313 changes: 313 additions & 0 deletions src/pyrow.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,313 @@
/*
* The sqlite3.Row object was missing the slice functionality.
* So I implemented it and submitted a patch.
*
* http://bugs.python.org/issue13583
*
* In ten or twenty years this patch will have made its
* way into most python distributions. In the mean time,
* I packaged my new Row object with the track package.
* You can use it like this::
*
* import sqlite3
* from pyrow import SuperRow
* con = sqlit3.connect(":memory:")
* con.row_factory = SuperRow
*
* The original banner from the row.c file is below.
*/

/* row.c - an enhanced tuple for database rows
*
* Copyright (C) 2005-2010 Gerhard Haring <[email protected]>
*
* This file is part of pysqlite.
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
*/


#include <Python.h>
#include "structmember.h"

typedef struct {
PyObject_HEAD
PyObject* data;
PyObject* description;
} SuperRow;

extern PyTypeObject SuperRowType;

static void
SuperRow_dealloc(SuperRow* self)
{
Py_XDECREF(self->data);
Py_XDECREF(self->description);
self->ob_type->tp_free((PyObject*)self);
}

static PyObject *
SuperRow_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
SuperRow *self;
self = (SuperRow *)type->tp_alloc(type, 0);
return (PyObject *)self;
}

static int
SuperRow_init(SuperRow *self, PyObject *args, PyObject *kwds)
{
PyObject *data=NULL, *cursor=NULL, *desc=NULL;

if (!PyArg_ParseTuple(args, "OO", &cursor, &data)) {
return -1;
}

if (!PyObject_HasAttrString(cursor, "description")) {
PyErr_SetString(PyExc_TypeError, "instance of cursor required for first argument");
return -1;
}

if (!PyTuple_Check(data)) {
PyErr_SetString(PyExc_TypeError, "tuple required for second argument");
return -1;
}

Py_INCREF(data);
self->data = data;

desc = PyObject_GetAttrString(cursor, "description");
Py_INCREF(desc);
self->description = desc;

return 0;
}

static PyMemberDef SuperRow_members[] = {
{"data", T_OBJECT_EX, offsetof(SuperRow, data), 0,
"A tuple containing the actual row"},
{"description", T_OBJECT_EX, offsetof(SuperRow, description), 0,
"A description giving the name of each column"},
{NULL} /* Sentinel */
};

//############################################################################//
PyObject* SuperRow_subscript(SuperRow* self, PyObject* idx)
{
long _idx;
char* key;
int nitems, i;
char* compare_key;

char* p1;
char* p2;

PyObject* item;

if (PyInt_Check(idx)) {
_idx = PyInt_AsLong(idx);
item = PyTuple_GetItem(self->data, _idx);
Py_XINCREF(item);
return item;
} else if (PyLong_Check(idx)) {
_idx = PyLong_AsLong(idx);
item = PyTuple_GetItem(self->data, _idx);
Py_XINCREF(item);
return item;
} else if (PyString_Check(idx)) {
key = PyString_AsString(idx);
nitems = PyTuple_Size(self->description);
for (i = 0; i < nitems; i++) {
compare_key = PyString_AsString(PyTuple_GET_ITEM(PyTuple_GET_ITEM(self->description, i), 0));
if (!compare_key) {
return NULL;
}
p1 = key;
p2 = compare_key;
while (1) {
if ((*p1 == (char)0) || (*p2 == (char)0)) {
break;
}
if ((*p1 | 0x20) != (*p2 | 0x20)) {
break;
}
p1++;
p2++;
}
if ((*p1 == (char)0) && (*p2 == (char)0)) {
/* found item */
item = PyTuple_GetItem(self->data, i);
Py_INCREF(item);
return item;
}
}
PyErr_SetString(PyExc_IndexError, "No item with that key");
return NULL;
} else if (PySlice_Check(idx)) {
Py_ssize_t start, stop, step, slicelength;
if (PySlice_GetIndicesEx((PySliceObject*)idx,
PyTuple_GET_SIZE(self->data),
&start, &stop, &step, &slicelength) < 0) {
return NULL;
}
return PyTuple_GetSlice(self->data, start, stop);
} else {
PyErr_SetString(PyExc_IndexError, "Index must be int or string");
return NULL;
}
}

Py_ssize_t SuperRow_length(SuperRow* self, PyObject* args, PyObject* kwargs)
{
return PyTuple_GET_SIZE(self->data);
}

static int SuperRow_print(SuperRow* self, FILE *fp, int flags)
{
return (&PyTuple_Type)->tp_print(self->data, fp, flags);
}

static PyObject* SuperRow_iter(SuperRow* self)
{
return PyObject_GetIter(self->data);
}

static long SuperRow_hash(SuperRow *self)
{
return PyObject_Hash(self->description) ^ PyObject_Hash(self->data);
}

static PyObject* SuperRow_richcompare(SuperRow *self, PyObject *_other, int opid)
{
if (opid != Py_EQ && opid != Py_NE) {
Py_INCREF(Py_NotImplemented);
return Py_NotImplemented;
}
if (PyType_IsSubtype(Py_TYPE(_other), &SuperRowType)) {
SuperRow *other = (SuperRow *)_other;
PyObject *res = PyObject_RichCompare(self->description, other->description, opid);
if ((opid == Py_EQ && res == Py_True)
|| (opid == Py_NE && res == Py_False)) {
Py_DECREF(res);
return PyObject_RichCompare(self->data, other->data, opid);
}
}
Py_INCREF(Py_NotImplemented);
return Py_NotImplemented;
}

PyObject* SuperRow_keys(SuperRow* self, PyObject* args, PyObject* kwargs)
{
PyObject* list;
int nitems, i;

list = PyList_New(0);
if (!list) {
return NULL;
}
nitems = PyTuple_Size(self->description);

for (i = 0; i < nitems; i++) {
if (PyList_Append(list, PyTuple_GET_ITEM(PyTuple_GET_ITEM(self->description, i), 0)) != 0) {
Py_DECREF(list);
return NULL;
}
}

return list;
}

//############################################################################//
static PyMethodDef SuperRow_methods[] = {
{"keys", (PyCFunction)SuperRow_keys, METH_NOARGS,
"Returns the keys of the row."
},
{NULL} /* Sentinel */
};

PyMappingMethods SuperRow_as_mapping = {
(lenfunc)SuperRow_length, /*mp_length*/
(binaryfunc)SuperRow_subscript, /*mp_subscript*/
(objobjargproc)0, /*mp_ass_subscript*/
};

PyTypeObject SuperRowType = {
PyObject_HEAD_INIT(NULL)
0, /* ob_size */
"pyrow.SuperRow", /* tp_name */
sizeof(SuperRow), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)SuperRow_dealloc, /* tp_dealloc */
(printfunc)SuperRow_print, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
&SuperRow_as_mapping, /* tp_as_mapping */
(hashfunc)SuperRow_hash, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
"SuperRow objects", /* tp_doc */
(traverseproc)0, /* tp_traverse */
0, /* tp_clear */
(richcmpfunc)SuperRow_richcompare, /* tp_richcompare */
0, /* tp_weaklistoffset */
(getiterfunc)SuperRow_iter, /* tp_iter */
0, /* tp_iternext */
SuperRow_methods, /* tp_methods */
SuperRow_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
(initproc)SuperRow_init, /* tp_init */
0, /* tp_alloc */
SuperRow_new, /* tp_new */
};

static PyMethodDef module_methods[] = {
{NULL} /* Sentinel */
};

#ifndef PyMODINIT_FUNC /* declarations for import and export */
#define PyMODINIT_FUNC void
#endif
PyMODINIT_FUNC
initpyrow(void)
{
PyObject* m;

if (PyType_Ready(&SuperRowType) < 0)
return;

m = Py_InitModule3("pyrow", module_methods,
"Replacement for the sqlite.Row object.");

if (m == NULL)
return;

Py_INCREF(&SuperRowType);
PyModule_AddObject(m, "SuperRow", (PyObject *)&SuperRowType);
}
9 changes: 6 additions & 3 deletions track/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ def invert_strands(data):
from track.common import Color, pick_iterator_elements, get_next_item, is_gzip
from track.common import if_url_then_get_url

# Compiled modules #
from track.pyrow import SuperRow

# Other modules #
import bbcflib.genrep
genrep = bbcflib.genrep.GenRep()
Expand Down Expand Up @@ -303,7 +306,7 @@ def __init__(self, path, readonly=False, autosave=True, orig_path=None, orig_for
self._info = JournaledDict()
# Opening the database #
self._connection = sqlite3.connect(self.path)
self._connection.row_factory = sqlite3.Row
self._connection.row_factory = SuperRow
self._cursor = self._connection.cursor()
# Load some tables #
self._chrmeta_read()
Expand Down Expand Up @@ -636,8 +639,8 @@ def example_generator():
# Check track attributes #
if self.readonly: return
self._modified = True
# Check what the data genertor yields #
if isinstance(data, FeatureStream) and data.kind == sqlite3.Row: data.generator = imap(tuple,data)
# Check what the data generator yields #
if isinstance(data, FeatureStream) and data.kind == SuperRow: data.generator = imap(tuple,data)
# Guess the fields we are getting #
if fields: incoming_fields = fields
elif hasattr(data, 'fields'): incoming_fields = data.fields
Expand Down
Loading

0 comments on commit 8daca84

Please sign in to comment.