1 // Copyright 2014 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.
5 #include "mojo/runner/in_process_native_runner.h"
8 #include "base/callback_helpers.h"
9 #include "base/location.h"
10 #include "base/thread_task_runner_handle.h"
11 #include "base/threading/platform_thread.h"
12 #include "mojo/runner/native_application_support.h"
17 InProcessNativeRunner::InProcessNativeRunner(Context
* context
)
18 : cleanup_(shell::NativeApplicationCleanup::DONT_DELETE
),
19 app_library_(nullptr) {
22 InProcessNativeRunner::~InProcessNativeRunner() {
23 // It is important to let the thread exit before unloading the DSO (when
24 // app_library_ is destructed), because the library may have registered
25 // thread-local data and destructors to run on thread termination.
27 DCHECK(thread_
->HasBeenStarted());
28 DCHECK(!thread_
->HasBeenJoined());
33 void InProcessNativeRunner::Start(
34 const base::FilePath
& app_path
,
36 shell::NativeApplicationCleanup cleanup
,
37 InterfaceRequest
<Application
> application_request
,
38 const base::Closure
& app_completed_callback
) {
42 DCHECK(!application_request_
.is_pending());
43 application_request_
= application_request
.Pass();
45 DCHECK(app_completed_callback_runner_
.is_null());
46 app_completed_callback_runner_
= base::Bind(
47 &base::TaskRunner::PostTask
, base::ThreadTaskRunnerHandle::Get(),
48 FROM_HERE
, app_completed_callback
);
51 thread_
.reset(new base::DelegateSimpleThread(this, "app_thread"));
55 void InProcessNativeRunner::Run() {
56 DVLOG(2) << "Loading/running Mojo app in process from library: "
58 << " thread id=" << base::PlatformThread::CurrentId();
60 // TODO(vtl): ScopedNativeLibrary doesn't have a .get() method!
61 base::NativeLibrary app_library
= LoadNativeApplication(app_path_
, cleanup_
);
62 app_library_
.Reset(app_library
);
63 RunNativeApplication(app_library
, application_request_
.Pass());
64 app_completed_callback_runner_
.Run();
65 app_completed_callback_runner_
.Reset();
68 scoped_ptr
<shell::NativeRunner
> InProcessNativeRunnerFactory::Create(
69 const Options
& options
) {
70 return make_scoped_ptr(new InProcessNativeRunner(context_
));