Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a python dictionary stored in a file which I need to access from a c++ program. What is the best way of doing this?

Thanks

share|improve this question
"python dictionary stored in a file" - how did you store it? cPickle, json? – eumiro Oct 19 '10 at 7:48
neither, it is written using a print statement to a file – mikip Oct 19 '10 at 9:54
Without any examples or sample code showing how you wrote it, we have nothing much to say. Please post your code. – S.Lott Oct 19 '10 at 10:16

3 Answers

up vote 2 down vote accepted

How to do this depends on the python types you've serialised. Basically, python prints something like...

{1: 'one', 2: 'two'}

...so you need code to parse this. The simplest case is a flat map from one simple type to another, say int to int:

int key, value;

if (s >> c && c == '{')
    while (s >> key)
    {
        if (s >> c && c == ':' && s >> value)
            my_map[key] = value;
        if (s >> c && c != ',')
            break;
    }

You can build on this, adding parsing error messages, supporting embedded containers, string types etc..

You may be able to find some existing implementation - I'm not sure. Anyway, this gives you a very rough idea of what they must do internally.

share|improve this answer
Thanks for that Tony – mikip Oct 19 '10 at 11:47
You're welcome. Happy coding. – Tony D Oct 19 '10 at 11:57

There are umpteen Python/C++ bindings (including the one in Boost) but I suggest KISS: not a Python/C++ binding but the principle "Keep It Simple, Stupid".

Use a Python program to access the dictionary. :-)

You can access the Python program(s) from C++ by running them, or you can do more fancy things such as communicating between Python and C++ via sockets or e.g. Windows "mailslots" or even some more full-fledged interprocess communication scheme.

Cheers & hth.

share|improve this answer

I assume your Python dict is using simple data types and no objects (so strings/numbers/lists/nested dicts), since you want to use it in C++.

I would suggest using json library (http://docs.python.org/library/json.html) to deserialize it and then use a C++ equivalent to serialize it to a C++ object.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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