Add long running gmail memory benchmark for background tab.
[chromium-blink-merge.git] / mojo / runner / in_process_native_runner.cc
blob36895af46e127f40e847b0acbb75318cb33f7982
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"
7 #include "base/bind.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"
14 namespace mojo {
15 namespace runner {
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.
26 if (thread_) {
27 DCHECK(thread_->HasBeenStarted());
28 DCHECK(!thread_->HasBeenJoined());
29 thread_->Join();
33 void InProcessNativeRunner::Start(
34 const base::FilePath& app_path,
35 bool start_sandboxed,
36 shell::NativeApplicationCleanup cleanup,
37 InterfaceRequest<Application> application_request,
38 const base::Closure& app_completed_callback) {
39 app_path_ = app_path;
40 cleanup_ = cleanup;
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);
50 DCHECK(!thread_);
51 thread_.reset(new base::DelegateSimpleThread(this, "app_thread"));
52 thread_->Start();
55 void InProcessNativeRunner::Run() {
56 DVLOG(2) << "Loading/running Mojo app in process from library: "
57 << app_path_.value()
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_));
73 } // namespace runner
74 } // namespace mojo