Since NaCl uses a messaging system between the browser and the module I thought that serializing objects to / from JSON would be a good way to communicate with the javascript. I am using this library: http://code.google.com/p/pjson/ because it was the only one that I found that I could get to compile along with Pepper15.

It seems to work, however with really large messages (>20K) it seems to crash. I'm trying to use NaCl for a WebGL project which won't have the actual opengl being done in NaCl, I just wanted to do the vertex processing. This ends up having huge amounts of data passed back and forth. I don't think it's a limit on the NaCl/Pepper postMessage method.

Anyone else using JSON in NaCl that might have a better library or some insight?

link|improve this question
Well I haven't, I know that for NaCl boost would have to be converted (I think some version might be). Also I was hoping for more of a specific JSON lib, but I'll see if I can give this a try. – Warspawn Jan 5 at 15:56
Convert boost? In what way? – Geoffroy Jan 5 at 16:18
in order to compile any lib for NaCl it has to be converted into usable for the Pepper toolchain. code.google.com/p/naclports looks like they have a conversion, sadly my primary OS is Windows so I'm going to have to do it the hard way. – Warspawn Jan 5 at 16:52
Boost property tree is a header-only lib, so you don't have to compile anything before using it. – Geoffroy Jan 5 at 17:41
show 2 more comments
feedback

1 Answer

NaCl ports contains a port of jsoncpp library.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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