Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include <fcntl.h> | |
| 6 #include <pthread.h> | |
| 7 #include <stdarg.h> | |
| 8 #include <stdio.h> | |
| 9 #include <stdlib.h> | |
| 10 #include <sys/types.h> | |
| 11 #include <sys/stat.h> | |
| 12 | |
| 13 #include <cstdlib> | |
| 14 #include <cstring> | |
| 15 #include <map> | |
| 16 #include <string> | |
| 17 #include <vector> | |
| 18 | |
| 19 #include "nacl_io/kernel_wrap.h" | |
| 20 #include "nacl_io/nacl_io.h" | |
| 21 | |
| 22 #include "ppapi/c/ppb_var.h" | |
| 23 | |
| 24 #include "ppapi/cpp/input_event.h" | |
| 25 #include "ppapi/cpp/message_loop.h" | |
| 26 #include "ppapi/cpp/module.h" | |
| 27 #include "ppapi/cpp/rect.h" | |
| 28 #include "ppapi/cpp/size.h" | |
| 29 #include "ppapi/cpp/touch_point.h" | |
| 30 #include "ppapi/cpp/var.h" | |
| 31 | |
| 32 #include "ppapi_simple/ppapi_event.h" | |
| 33 #include "ppapi_simple/ppapi_simple_instance.h" | |
| 34 #include "ppapi_simple/ppapi_simple_main.h" | |
| 35 | |
| 36 static PSInstance* s_InstanceObject = NULL; | |
| 37 | |
| 38 PSInstance* PSInstance::GetInstance() { | |
| 39 return s_InstanceObject; | |
| 40 } | |
| 41 | |
| 42 struct StartInfo { | |
| 43 PSInstance* inst_; | |
| 44 uint32_t argc_; | |
| 45 const char** argv_; | |
| 46 }; | |
| 47 | |
| 48 | |
| 49 // The starting point for 'main'. We create this thread to hide the real | |
| 50 // main pepper thread which must never be blocked. | |
| 51 void* PSInstance::MainThreadThunk(void *info) { | |
| 52 s_InstanceObject->Log("Got MainThreadThunk.\n"); | |
| 53 StartInfo* si = static_cast<StartInfo*>(info); | |
| 54 si->inst_->main_loop_ = new pp::MessageLoop(si->inst_); | |
| 55 si->inst_->main_loop_->AttachToCurrentThread(); | |
| 56 | |
| 57 int ret = si->inst_->MainThread(si->argc_, si->argv_); | |
|
Sam Clegg
2013/05/29 04:48:25
Should we try to propagate main()'s return value b
noelallen_use_chromium
2013/05/30 00:25:07
Until it's legal for a NEXE to exit... The main
| |
| 58 for (uint32_t i = 0; i < si->argc_; i++) { | |
| 59 delete[] si->argv_[i]; | |
| 60 } | |
| 61 delete[] si->argv_; | |
| 62 delete si; | |
| 63 | |
| 64 return NULL; | |
| 65 } | |
| 66 | |
| 67 // | |
| 68 // The default implementation supports running a 'C' main. | |
| 69 // | |
| 70 int PSInstance::MainThread(int argc, const char *argv[]) { | |
| 71 if (main_cb_) { | |
| 72 Log("Starting MAIN.\n"); | |
| 73 int ret = main_cb_(argc, argv); | |
| 74 Log("Main thread returned with %d.\n", ret); | |
| 75 return ret; | |
| 76 } | |
| 77 | |
| 78 Error("No main defined.\n"); | |
| 79 return 0; | |
| 80 } | |
| 81 | |
| 82 PSInstance::PSInstance(PP_Instance instance, const char *argv[]) | |
| 83 : pp::Instance(instance), | |
| 84 main_loop_(NULL), | |
| 85 verbosity_(PS_LOG_VERBOSITY), | |
| 86 events_enabled_(PS_NO_EVENTS) { | |
| 87 // Set the single Instance object | |
| 88 s_InstanceObject = this; | |
| 89 | |
| 90 #ifdef DEBUG | |
| 91 SetVerbosity(PS_LOG_VERBOSITY); | |
| 92 #endif | |
| 93 | |
| 94 // Place PPAPI_MAIN_USE arguments into properties map | |
| 95 while (*argv) { | |
| 96 std::string key = *argv++; | |
| 97 std::string val = *argv++; | |
| 98 properties_[key] = val; | |
| 99 } | |
| 100 | |
| 101 RequestInputEvents(PP_INPUTEVENT_CLASS_MOUSE | | |
| 102 PP_INPUTEVENT_CLASS_KEYBOARD | | |
| 103 PP_INPUTEVENT_CLASS_WHEEL | | |
| 104 PP_INPUTEVENT_CLASS_TOUCH); | |
| 105 | |
| 106 ppb_core_ = static_cast<const PPB_Core*>( | |
| 107 pp::Module::Get()->GetBrowserInterface(PPB_CORE_INTERFACE)); | |
| 108 | |
| 109 ppb_var_ = static_cast<const PPB_Var*>( | |
| 110 pp::Module::Get()->GetBrowserInterface(PPB_VAR_INTERFACE)); | |
| 111 | |
| 112 ppb_view_ = static_cast<const PPB_View*>( | |
| 113 pp::Module::Get()->GetBrowserInterface(PPB_VIEW_INTERFACE)); | |
| 114 } | |
| 115 | |
| 116 PSInstance::~PSInstance() {} | |
| 117 | |
| 118 void PSInstance::SetMain(PSMainFunc_t main) { | |
| 119 main_cb_ = main; | |
| 120 } | |
| 121 | |
| 122 bool PSInstance::Init(uint32_t arg, | |
| 123 const char* argn[], | |
| 124 const char* argv[]) { | |
| 125 StartInfo* si = new StartInfo; | |
| 126 | |
| 127 si->inst_ = this; | |
| 128 si->argc_ = 1; | |
| 129 si->argv_ = new const char *[arg*2+1]; | |
| 130 si->argv_[0] = NULL; | |
| 131 | |
| 132 // Process arguments passed into Module INIT from JavaScript | |
| 133 for (uint32_t i=0; i < arg; i++) { | |
| 134 if (argv[i]) { | |
| 135 Log("ARG %s=%s\n", argn[i], argv[i]); | |
| 136 } else { | |
| 137 Log("ARG %s\n", argn[i]); | |
| 138 } | |
| 139 | |
| 140 // If we start with PM prefix set the instance argument map | |
|
Sam Clegg
2013/05/29 04:48:25
PS prefix?
| |
| 141 if (0 == strncmp(argn[i], "ps_", 3)) { | |
| 142 std::string key = argn[i]; | |
| 143 std::string val = argv[i]; | |
| 144 properties_[key] = val; | |
| 145 continue; | |
| 146 } | |
| 147 | |
| 148 // If this is the 'src' tag, then get the NMF name. | |
| 149 if (!strcmp("src", argn[i])) { | |
| 150 char *name = new char[strlen(argv[i]) + 1]; | |
| 151 strcpy(name, argv[i]); | |
| 152 si->argv_[0] = name; | |
| 153 } | |
| 154 else { | |
| 155 // Otherwise turn it into arguments | |
| 156 char *key = new char[strlen(argn[i]) + 3]; | |
| 157 key[0] = '-'; | |
| 158 key[1] = '-'; | |
| 159 strcpy(&key[2], argn[i]); | |
| 160 | |
| 161 si->argv_[si->argc_++] = key; | |
| 162 if (argv[i] && argv[i][0]) { | |
| 163 char *val = new char[strlen(argv[i]) + 1]; | |
| 164 strcpy(val, argv[i]); | |
| 165 si->argv_[si->argc_++] = val; | |
| 166 } | |
| 167 } | |
| 168 } | |
| 169 | |
| 170 // If src was not found, set the first arg to something | |
| 171 if (NULL == si->argv_[0]) { | |
| 172 char *name = new char[5]; | |
| 173 strcpy(name, "NMF?"); | |
| 174 si->argv_[0] = name; | |
| 175 } | |
| 176 | |
| 177 if (ProcessProperties()) { | |
| 178 pthread_t main_thread; | |
| 179 int ret = pthread_create(&main_thread, NULL, MainThreadThunk, | |
| 180 static_cast<void*>(si)); | |
| 181 Log("Created thread: %d.\n", ret); | |
| 182 return ret == 0; | |
| 183 } | |
| 184 | |
| 185 Log("Skipping create thread.\n"); | |
| 186 return false; | |
| 187 } | |
| 188 | |
| 189 const char* PSInstance::GetProperty(const char* key, const char* def) { | |
| 190 PropertyMap_t::iterator it = properties_.find(key); | |
| 191 if (it != properties_.end()) { | |
| 192 return it->second.c_str(); | |
| 193 } | |
| 194 return def; | |
| 195 } | |
| 196 | |
| 197 bool PSInstance::ProcessProperties() { | |
| 198 const char* stdin_path = GetProperty("ps_stdin", "/dev/stdin"); | |
| 199 const char* stdout_path = GetProperty("ps_stdout", "/dev/stdout"); | |
| 200 const char* stderr_path = GetProperty("ps_stderr", "/dev/console3"); | |
| 201 const char* verbosity = GetProperty("ps_verbosity", NULL); | |
| 202 | |
| 203 // Reset verbosity if passed in | |
| 204 if (verbosity) SetVerbosity(static_cast<Verbosity>(atoi(verbosity))); | |
| 205 | |
| 206 // Enable NaCl IO to map STDIN, STDOUT, and STDERR | |
| 207 nacl_io_init_ppapi(PSGetInstanceId(), PSGetInterface); | |
| 208 int fd0 = open(stdin_path, O_RDONLY); | |
| 209 dup2(fd0, 0); | |
| 210 | |
| 211 int fd1 = open(stdout_path, O_WRONLY); | |
| 212 dup2(fd1, 1); | |
| 213 | |
| 214 int fd2 = open(stderr_path, O_WRONLY); | |
| 215 dup2(fd2, 2); | |
| 216 | |
| 217 setvbuf(stderr, NULL, _IOLBF, 0); | |
| 218 setvbuf(stdout, NULL, _IOLBF, 0); | |
| 219 | |
| 220 return true; | |
| 221 } | |
| 222 | |
| 223 // | |
| 224 // Logging Functions | |
| 225 // | |
| 226 void PSInstance::SetVerbosity(Verbosity verbosity) { | |
| 227 verbosity_ = verbosity; | |
| 228 } | |
| 229 | |
| 230 void PSInstance::Log(const char *fmt, ...) { | |
| 231 if (verbosity_ >= PS_LOG_VERBOSITY) { | |
| 232 va_list ap; | |
| 233 va_start(ap, fmt); | |
| 234 vfprintf(stdout, fmt, ap); | |
|
Sam Clegg
2013/05/29 04:48:25
Normally all logging goes to stderr, and stdout wo
| |
| 235 } | |
| 236 } | |
| 237 | |
| 238 void PSInstance::Warn(const char *fmt, ...) { | |
| 239 if (verbosity_ >= PS_WARN_VERBOSITY) { | |
| 240 va_list ap; | |
| 241 va_start(ap, fmt); | |
| 242 vfprintf(stdout, fmt, ap); | |
|
Sam Clegg
2013/05/29 04:48:25
Ditto.
| |
| 243 } | |
| 244 } | |
| 245 | |
| 246 void PSInstance::Error(const char *fmt, ...) { | |
| 247 if (verbosity_ >= PS_ERROR_VERBOSITY) { | |
| 248 va_list ap; | |
| 249 va_start(ap, fmt); | |
| 250 vfprintf(stderr, fmt, ap); | |
|
Sam Clegg
2013/05/29 04:48:25
Maybe factor these 3 logging function into a singl
| |
| 251 } | |
| 252 } | |
| 253 | |
| 254 // | |
| 255 // Event Functions | |
| 256 // | |
| 257 void PSInstance::SetEnabledEvents(uint32_t mask) { | |
| 258 events_enabled_ = mask; | |
| 259 } | |
| 260 | |
| 261 void PSInstance::PostEvent(PSEventType type) { | |
| 262 assert(PS_3D_LOST_EVENT == type); | |
| 263 | |
| 264 if (events_enabled_ & type) { | |
| 265 PSEvent *env = (PSEvent *) malloc(sizeof(PSEvent)); | |
| 266 memset(env, 0, sizeof(*env)); | |
| 267 env->type = type; | |
| 268 event_queue_.Enqueue(env); | |
| 269 } | |
| 270 } | |
| 271 | |
| 272 void PSInstance::PostEvent(PSEventType type, PP_Bool bool_value) { | |
| 273 assert(PS_FOCUS_EVENT == type); | |
| 274 | |
| 275 if (events_enabled_ & type) { | |
| 276 PSEvent *env = (PSEvent *) malloc(sizeof(PSEvent)); | |
| 277 env->type = type; | |
| 278 env->as_bool = bool_value; | |
| 279 event_queue_.Enqueue(env); | |
| 280 } | |
| 281 } | |
| 282 | |
| 283 void PSInstance::PostEvent(PSEventType type, PP_Resource resource) { | |
| 284 assert(PS_INPUT_EVENT == type || PS_VIEW_EVENT == type); | |
| 285 | |
| 286 if (events_enabled_ & type) { | |
| 287 if (resource) { | |
| 288 ppb_core_->AddRefResource(resource); | |
| 289 } | |
| 290 PSEvent *env = (PSEvent *) malloc(sizeof(PSEvent)); | |
| 291 env->type = type; | |
| 292 env->as_resource = resource; | |
| 293 event_queue_.Enqueue(env); | |
| 294 } | |
| 295 } | |
| 296 | |
| 297 void PSInstance::PostEvent(PSEventType type, const PP_Var& var) { | |
| 298 assert(PS_MESSAGE_EVENT == type); | |
| 299 | |
| 300 if (events_enabled_ & type) { | |
| 301 ppb_var_->AddRef(var); | |
| 302 PSEvent *env = (PSEvent *) malloc(sizeof(PSEvent)); | |
| 303 env->type = type; | |
| 304 env->as_var = var; | |
| 305 event_queue_.Enqueue(env); | |
| 306 } | |
| 307 } | |
| 308 | |
| 309 PSEvent* PSInstance::TryAcquireEvent() { | |
| 310 return event_queue_.Dequeue(false); | |
| 311 } | |
| 312 | |
| 313 PSEvent* PSInstance::WaitAcquireEvent() { | |
| 314 return event_queue_.Dequeue(true); | |
| 315 } | |
| 316 | |
| 317 void PSInstance::ReleaseEvent(PSEvent* event) { | |
| 318 if (event) { | |
| 319 switch(event->type) { | |
| 320 case PS_MESSAGE_EVENT: | |
| 321 ppb_var_->Release(event->as_var); | |
| 322 break; | |
| 323 case PS_INPUT_EVENT: | |
| 324 case PS_VIEW_EVENT: | |
| 325 if (event->as_resource) { | |
| 326 ppb_core_->ReleaseResource(event->as_resource); | |
| 327 } | |
| 328 break; | |
| 329 default: | |
| 330 break; | |
| 331 } | |
| 332 free(event); | |
| 333 } | |
| 334 } | |
| 335 | |
| 336 void PSInstance::HandleMessage(const pp::Var& message) { | |
| 337 Log("Got Message: \n"); | |
| 338 PSPostVarEvent(PS_MESSAGE_EVENT, message.pp_var()); | |
| 339 } | |
| 340 | |
| 341 bool PSInstance::HandleInputEvent(const pp::InputEvent& event) { | |
| 342 Log("Got Input\n"); | |
| 343 PostEvent(PS_INPUT_EVENT, event.pp_resource()); | |
| 344 return true; | |
| 345 } | |
| 346 | |
| 347 void PSInstance::DidChangeView(const pp::View& view) { | |
| 348 pp::Size new_size = view.GetRect().size(); | |
| 349 Log("Got View change: %d,%d\n", new_size.width(), new_size.height()); | |
| 350 PostEvent(PS_VIEW_EVENT, view.pp_resource()); | |
| 351 } | |
| 352 | |
| 353 void PSInstance::DidChangeFocus(bool focus) { | |
| 354 Log("Got Focus change: %s\n", focus ? "FOCUS ON" : "FOCUS OFF"); | |
| 355 PostEvent(PS_FOCUS_EVENT, focus ? PP_TRUE : PP_FALSE); | |
| 356 } | |
| 357 | |
| OLD | NEW |