vote up 0 vote down star

I'm currently writing python bindings for a c++ library I'm working on. The library reads some binary file format and reading speed is very important. While optimizing the library for speed, I noticed that std::vector (used in the instances I'm reading) was eating up a lot of processing time, so I replaced those with simple arrays allocated with new[] (whether this was a good/wise thing to do is another question probably).

Now I'm stuck with the problem of how to give python access to these arrays. There seems to be no solution built into boost::python (I haven't been able to find one at least).

Example code to illustrate the situation:

// Instance.cpp
class Instance
{
    int * data;
    int dataLength;
    Foo ()
    {
        data = new int[10];
        dataLength = 10;
    }
};

// Class pythonBindings.cpp
BOOST_PYTHON_MODULE(db)
{
    class_<Instance>("Instance", init<>())
        .add_property("data", ........)
    ;
}

I guess I could use a wrapper function that constructs a boost::python::list out of the arrays whenever python wants to access them. Since I am quite new to boost::python, I figured I should ask if there are any nice, standard or built-in solutions to this problem before I start hacking away though.

So, how would you recommend wrapping Instance's data array using boost::python?

flag

Vector shouldn't be noticeable slower than array if you give it a size hint. Are you sure you've turned the optimizer on? (It's an easy mistake to make.) – chrispy Sep 11 at 12:41
Good point, while inspecting my initial versions I notice that I wasn't specifying initial size and using push_back instead. I'll see how fast it runs with std::vector used properly. Thanks! – TC Sep 11 at 12:49
It turned out that changing to c style arrays was premature: using std::vector turned out to be just as fast provided that you use reserve() and compiler optimizations appropriately. (Not sure if this should be a comment or an answer to my own question) – TC Dec 11 at 11:24

1 Answer

vote up 1 vote down

I will recomend a wrap data and dataLength with proxy class and returns from Instance this proxy. In our project we use this way to export data from our app to python.

If you want I can give you few links to our implementation and explain how it works.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.