如何在向NaCl(Chrome Native Client)发送消息后实施回调?

时间:2014-05-22 17:14:17

标签: javascript callback google-nativeclient ppapi

来自NaCl新手的简单问题......

在我的javascript中,我向NaCl模块发布了一条消息 在NaCl模块处理此消息后,如何在javascript中执行回调?

getting-started-tutorial中,给出了以下示例。

 function moduleDidLoad() {
      HelloTutorialModule = document.getElementById('hello_tutorial');
      updateStatus('SUCCESS');
      // Send a message to the Native Client module
      HelloTutorialModule.postMessage('hello');
    }

如何在HelloTutorialModule.postMessage中执行回调函数(' hello'); ?

感谢。

1 个答案:

答案 0 :(得分:7)

没有直接的方法来获取NaCl模块收到特定消息的回调。您可以手动执行此操作,但需要传递ID,并将ID映射到回调。

像这样(未经测试):

var idCallbackHash = {};
var nextId = 0;

function postMessageWithCallback(msg, callback) {
  var id = nextId++;
  idCallbackHash[id] = callback;
  HelloTutorialModule.postMessage({id: id, msg: msg});
}

// Listen for messages from the NaCl module.
embedElement.addEventListener('message', function(event) {
  var id = event.data.id;
  var msg = event.data.msg;
  var callback = idCallbackHash[id];
  callback(msg);
  delete idCallbackHash[id];
}, true);

然后在NaCl模块中:

  virtual void HandleMessage(const pp::Var& var) {
    pp::VarDictionary dict_var(var);
    pp::Var id = dict_var.Get("id");
    pp::Var msg = dict_var.Get("msg");

    // Do something with the message...

    pp::VarDictionary response;
    response.Set("id", id);
    response.Set("msg", ...);
    PostMessage(response);
  }