~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_static_tuple_pyx.pxd

Things are ~ working again.

Man this is getting messy, I may have to change my mind again.

I tried to export the StaticTuple type only through _static_tuple_pyx.pyx
by using a little bit of trickery. However, you end up with a circular
import issue, and also I forgot to track down one place where I needed
to rename '_static_tuple_c' => '_static_tuple_type_c'.

The idea was that _static_tuple_type.c would *only* define the type,
and not any extra info. This way the code could be compiled with either
cython or pyrex and still get the 'better' StaticTuple object.

It ended up, overall, just being a multi-hour mess trying to get the
dependencies sorted out. By using a .pxd file, at least the basic
circular import problem was sorted out.

However at this point, you *have* to import _static_tuple_pyx before
_static_tuple_type_c or you get a segfault, and you have to import the
latter if you want to get direct access to the class.

So at this point I feel like I either need to:
 1) Go back to the way it was, and get rid of the circular import
 2) Finish the rest of the steps, bring everything into Cython
    and say 'if you want the memory improvements, then you have
    to compile with cython.'

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Interface definition of a class to intern StaticTuple objects."""
18
18
 
19
 
cdef extern from "python-compat.h":
20
 
    ctypedef long Py_ssize_t
21
 
 
22
19
cdef extern from "Python.h":
23
20
    ctypedef struct PyObject:
24
21
        pass
25
22
 
 
23
 
 
24
from bzrlib._static_tuple_type_c cimport StaticTuple, StaticTuple_SET_ITEM, \
 
25
    StaticTuple_GET_ITEM, STATIC_TUPLE_INTERNED_FLAG, STATIC_TUPLE_ALL_STRING
 
26
 
26
27
cdef public api class StaticTupleInterner [object StaticTupleInternerObject,
27
28
                                           type StaticTupleInterner_type]:
28
29
 
38
39
    cpdef int discard(self, key) except -1
39
40
    cdef int _insert_clean(self, PyObject *key) except -1
40
41
    cpdef Py_ssize_t _resize(self, Py_ssize_t min_unused) except -1
41
 
 
42
42
# TODO: might want to export the C api here, though it is all available from
43
43
#       the class object...
44
44
cdef api object StaticTupleInterner_Add(object self, object key)
 
45
 
 
46
cdef api StaticTuple StaticTuple_New(Py_ssize_t)
 
47
cdef api StaticTuple StaticTuple_Intern(StaticTuple)
 
48
cdef api int StaticTuple_CheckExact(object)
 
49