Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   Auto free Buffer objects in C API? (http://www.velocityreviews.com/forums/t319211-auto-free-buffer-objects-in-c-api.html)

Stuart D. Gathman 07-03-2003 08:20 PM

Auto free Buffer objects in C API?
 
I have a Python C module (dspam.c - http://bmsi.com/python/milter.html).
It needs to return some large buffers allocated by the library I am
wrapping. The buffers must be freed by the caller when finished. At
present, I do the following to copy, then free the buffer:

PyObject *
toBuffer(char *buf;int len) {
PyObject *sig = PyBuffer_New(len);
if (sig) {
void *data;
int dlen;
if (!PyObject_AsWriteBuffer(sig,&data,&dlen))
memcpy(data,buf,dlen);
else {
Py_DECREF(sig);
sig = 0;
}
}
free(buf);
return sig;
}

Now, I would like to use PyBuffer_FromMemory(buf,len), but then I have no
way of knowing when to free(buf). Or do I? Am I missing something? Is
there a way for me to know when the Buffer object is being deleted so
that I can free the underlying C data?

David M. Cooke 07-04-2003 01:44 AM

Re: Auto free Buffer objects in C API?
 
At some point, "Stuart D. Gathman" <stuart@bmsi.com> wrote:

> I have a Python C module (dspam.c - http://bmsi.com/python/milter.html).
> It needs to return some large buffers allocated by the library I am
> wrapping. The buffers must be freed by the caller when finished. At
> present, I do the following to copy, then free the buffer:
>
> PyObject *
> toBuffer(char *buf;int len) {
> PyObject *sig = PyBuffer_New(len);
> if (sig) {
> void *data;
> int dlen;
> if (!PyObject_AsWriteBuffer(sig,&data,&dlen))
> memcpy(data,buf,dlen);
> else {
> Py_DECREF(sig);
> sig = 0;
> }
> }
> free(buf);
> return sig;
> }
>
> Now, I would like to use PyBuffer_FromMemory(buf,len), but then I have no
> way of knowing when to free(buf). Or do I? Am I missing something? Is
> there a way for me to know when the Buffer object is being deleted so
> that I can free the underlying C data?


Staring at the definition of PyBufferObject in bufferobject.c, I see
it has a member 'b_base' of type PyObject *, which is DECREF'd when
the buffer is destroyed (by the buffer dealloc function). Looks to me
like you could do something using a CObject with a passed destructor:

/**********/
/* WARNING: UNTESTED CODE */

/* the contents of PyBufferObject are supposed to be private, so you
need to include this */
typedef struct {
PyObject_HEAD
PyObject *b_base;
void *b_ptr;
int b_size;
int b_readonly;
long b_hash;
} PyBufferObject;

PyObject *
toBuffer(char *buf, int len) {
PyObject *sig = PyBuffer_FromMemory(buf, len);
if (sig) {
/* pass 'free' as the destructor for the passed memory */
(PyBufferObject *)sig->b_base = PyCObject_FromVoidPtr(buf, free);
}
return sig;
}
/**********/

Now, when the buffer is deallocated, the CObject at b_base will be
DECREF'd, which will free your memory.

This is a bit ugly, as it depends on internal details. Another,
cleaner, method is to define an object which obeys the buffer
protocol, and handles destruction like you want. (This is annoying, as
you'll end up copying all the code in bufferobject.c).

--
|>|\/|<
/--------------------------------------------------------------------------\
|David M. Cooke
|cookedm(at)physics(dot)mcmaster(dot)ca

Stuart D. Gathman 07-07-2003 02:04 PM

Re: Auto free Buffer objects in C API?
 
On Thu, 03 Jul 2003 21:44:27 -0400, David M. Cooke wrote:

> This is a bit ugly, as it depends on internal details. Another, cleaner,
> method is to define an object which obeys the buffer protocol, and
> handles destruction like you want. (This is annoying, as you'll end up
> copying all the code in bufferobject.c).


So annoying, in fact, that I will continue to make extra copies of the
buffer until such time as:

a) Python gets a PyBuffer_FromCObject(PyObject *,int len) method.

b) Profiling reveals the extra copies to be a major bottle neck. The
extra memory allocation is not a problem because the library spends most
of its time moving the data between two buffers while processing it.

BTW, the application is wrapping DSpam for Python. You can download the
dspam module from:

http://bmsi.com/python/milter.html


All times are GMT. The time now is 01:37 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


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