As far as I understand one has two options to port a C program to Native Client:
- Implement a number of initializing functions like
PPP_InitializeModule
andPPP_GetInterface
. - Simply pass your main function to
PPAPI_SIMPLE_REGISTER_MAIN
.
So the question is how can I implement JS message handling (handle messages emitted by JS code in native code) in the second case?
Take a look at some of the examples in the SDK in examples/demo directory: earth, voronoi, flock, pi_generator, and life all use ppapi_simple.
Here's basically how it works:
When using ppapi_simple, all events (e.g. input events, messages from JavaScript) are added to an event queue. The following code is from the life example (though some of it is modified and untested):
HandleEvent then determines what kind of event it is, and handles it in an application specific way:
To send messages back to JavaScript, use the PostMessage function on the messaging interface:
You can send and receive other JavaScript types too: ints, floats, arrays, array buffers, and dictionaries. See also PPB_VarArray, PPB_VarArrayBuffer and PPB_VarDictionary interfaces.