OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "mojo/apps/js/mojo_runner_delegate.h" | 5 #include "mojo/apps/js/mojo_runner_delegate.h" |
6 | 6 |
| 7 #include "base/bind.h" |
7 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "gin/converter.h" |
8 #include "gin/modules/console.h" | 10 #include "gin/modules/console.h" |
9 #include "gin/modules/module_registry.h" | 11 #include "gin/modules/module_registry.h" |
10 #include "gin/try_catch.h" | 12 #include "gin/try_catch.h" |
11 #include "mojo/apps/js/bootstrap.h" | 13 #include "mojo/apps/js/threading.h" |
12 #include "mojo/public/bindings/js/core.h" | 14 #include "mojo/public/bindings/js/core.h" |
13 #include "mojo/public/bindings/js/support.h" | 15 #include "mojo/public/bindings/js/support.h" |
14 | 16 |
15 namespace mojo { | 17 namespace mojo { |
16 namespace apps { | 18 namespace apps { |
17 | 19 |
18 namespace { | 20 namespace { |
19 | 21 |
20 // TODO(abarth): Rather than loading these modules from the file system, we | 22 // TODO(abarth): Rather than loading these modules from the file system, we |
21 // should load them from the network via Mojo IPC. | 23 // should load them from the network via Mojo IPC. |
22 std::vector<base::FilePath> GetModuleSearchPaths() { | 24 std::vector<base::FilePath> GetModuleSearchPaths() { |
23 std::vector<base::FilePath> search_paths(2); | 25 std::vector<base::FilePath> search_paths(2); |
24 PathService::Get(base::DIR_SOURCE_ROOT, &search_paths[0]); | 26 PathService::Get(base::DIR_SOURCE_ROOT, &search_paths[0]); |
25 PathService::Get(base::DIR_EXE, &search_paths[1]); | 27 PathService::Get(base::DIR_EXE, &search_paths[1]); |
26 search_paths[1] = search_paths[1].AppendASCII("gen"); | 28 search_paths[1] = search_paths[1].AppendASCII("gen"); |
27 return search_paths; | 29 return search_paths; |
28 } | 30 } |
29 | 31 |
| 32 void StartCallback(base::WeakPtr<gin::Runner> runner, |
| 33 MojoHandle pipe, |
| 34 v8::Handle<v8::Value> module) { |
| 35 v8::Isolate* isolate = runner->isolate(); |
| 36 v8::Handle<v8::Function> start; |
| 37 CHECK(gin::ConvertFromV8(isolate, module, &start)); |
| 38 |
| 39 v8::Handle<v8::Value> args[] = { gin::ConvertToV8(isolate, pipe) }; |
| 40 runner->Call(start, runner->global(), 1, args); |
| 41 } |
| 42 |
30 } // namespace | 43 } // namespace |
31 | 44 |
32 MojoRunnerDelegate::MojoRunnerDelegate() | 45 MojoRunnerDelegate::MojoRunnerDelegate() |
33 : ModuleRunnerDelegate(GetModuleSearchPaths()) { | 46 : ModuleRunnerDelegate(GetModuleSearchPaths()) { |
34 AddBuiltinModule(Bootstrap::kModuleName, Bootstrap::GetTemplate); | 47 AddBuiltinModule(Threading::kModuleName, Threading::GetTemplate); |
35 AddBuiltinModule(gin::Console::kModuleName, gin::Console::GetTemplate); | 48 AddBuiltinModule(gin::Console::kModuleName, gin::Console::GetTemplate); |
36 AddBuiltinModule(js::Core::kModuleName, js::Core::GetTemplate); | 49 AddBuiltinModule(js::Core::kModuleName, js::Core::GetTemplate); |
37 AddBuiltinModule(js::Support::kModuleName, js::Support::GetTemplate); | 50 AddBuiltinModule(js::Support::kModuleName, js::Support::GetTemplate); |
38 } | 51 } |
39 | 52 |
40 MojoRunnerDelegate::~MojoRunnerDelegate() { | 53 MojoRunnerDelegate::~MojoRunnerDelegate() { |
41 } | 54 } |
42 | 55 |
| 56 void MojoRunnerDelegate::Start(gin::Runner* runner, |
| 57 MojoHandle pipe, |
| 58 const std::string& module) { |
| 59 gin::Runner::Scope scope(runner); |
| 60 gin::ModuleRegistry* registry = gin::ModuleRegistry::From(runner->context()); |
| 61 registry->LoadModule(runner->isolate(), module, |
| 62 base::Bind(StartCallback, runner->GetWeakPtr(), pipe)); |
| 63 AttemptToLoadMoreModules(runner); |
| 64 } |
| 65 |
43 void MojoRunnerDelegate::UnhandledException(gin::Runner* runner, | 66 void MojoRunnerDelegate::UnhandledException(gin::Runner* runner, |
44 gin::TryCatch& try_catch) { | 67 gin::TryCatch& try_catch) { |
45 gin::ModuleRunnerDelegate::UnhandledException(runner, try_catch); | 68 gin::ModuleRunnerDelegate::UnhandledException(runner, try_catch); |
46 LOG(ERROR) << try_catch.GetStackTrace(); | 69 LOG(ERROR) << try_catch.GetStackTrace(); |
47 } | 70 } |
48 | 71 |
49 } // namespace apps | 72 } // namespace apps |
50 } // namespace mojo | 73 } // namespace mojo |
OLD | NEW |