From 8a7279daea883f86c2a500c368d252394faeea5b Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 13 Dec 2015 19:37:50 +0300 Subject: Move nacl messages related functions into separate file. --- src/utils/process.cpp | 77 +++------------------------------------------------ 1 file changed, 4 insertions(+), 73 deletions(-) (limited to 'src/utils/process.cpp') diff --git a/src/utils/process.cpp b/src/utils/process.cpp index 6da177eb9..a037baef8 100644 --- a/src/utils/process.cpp +++ b/src/utils/process.cpp @@ -39,6 +39,7 @@ const int timeOut = 10; #ifdef WIN32 #include "utils/stringutils.h" + #include int execFileWait(const std::string &pathName, const std::string &name A_UNUSED, @@ -275,6 +276,9 @@ bool openBrowser(std::string url) return execFile("/usr/bin/xdg-open", "/usr/bin/xdg-open", url, ""); } #elif defined __native_client__ + +#include "utils/naclmessages.h" + bool openBrowser(std::string url) { naclPostMessage("open-browser", url); @@ -302,76 +306,3 @@ void setPriority(const bool big A_UNUSED) { } #endif - -#ifdef __native_client__ -#include -#include -#include -#include - -#include -#include - -struct _NaclMessageHandle final -{ - bool handled; - std::string type; - std::string message; - std::condition_variable condv; -}; - -void naclPostMessage(const std::string &type, const std::string &message) -{ - pp::Var msgVar = pp::Var(std::string(type).append(":").append(message)); - pp::Instance(PSGetInstanceId()).PostMessage(msgVar); -} - -static void naclMessageHandlerFunc(struct PP_Var key, - struct PP_Var value, - void* user_data) -{ - NaclMessageHandle *handle = (NaclMessageHandle *)user_data; - - if (key.type != PP_VARTYPE_STRING || value.type != PP_VARTYPE_STRING) - return; - if (pp::Var(key).AsString() != handle->type) - return; - - handle->handled = true; - handle->message = pp::Var(value).AsString(); - - handle->condv.notify_one(); -} - -NaclMessageHandle *naclRegisterMessageHandler(const std::string &type) -{ - NaclMessageHandle *handle = new NaclMessageHandle; - handle->handled = false; - handle->type = type; - - PSEventRegisterMessageHandler(type.c_str(), - naclMessageHandlerFunc, - (void *)handle); - return handle; -} - -void naclUnregisterMessageHandler(NaclMessageHandle *handle) -{ - PSEventRegisterMessageHandler(handle->type.c_str(), - nullptr, - nullptr); - delete handle; -} - -std::string naclWaitForMessage(NaclMessageHandle *handle) -{ - std::mutex mtx; - std::unique_lock lck(mtx); - - while (!handle->handled) - handle->condv.wait(lck); - - handle->handled = false; - return handle->message; -} -#endif -- cgit v1.2.3-60-g2f50