Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: services/shell/public/cpp/lib/application_runner.cc

Issue 2156203003: shell::ApplicationRunner -> shell::ServiceRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #include "services/shell/public/cpp/application_runner.h"
6
7 #include "base/at_exit.h"
8 #include "base/bind.h"
9 #include "base/command_line.h"
10 #include "base/message_loop/message_loop.h"
11 #include "base/process/launch.h"
12 #include "base/run_loop.h"
13 #include "services/shell/public/cpp/service.h"
14 #include "services/shell/public/cpp/service_context.h"
15
16 namespace shell {
17
18 int g_application_runner_argc;
19 const char* const* g_application_runner_argv;
20
21 ApplicationRunner::ApplicationRunner(Service* client)
22 : client_(std::unique_ptr<Service>(client)),
23 message_loop_type_(base::MessageLoop::TYPE_DEFAULT),
24 has_run_(false) {}
25
26 ApplicationRunner::~ApplicationRunner() {}
27
28 void ApplicationRunner::InitBaseCommandLine() {
29 base::CommandLine::Init(g_application_runner_argc, g_application_runner_argv);
30 }
31
32 void ApplicationRunner::set_message_loop_type(base::MessageLoop::Type type) {
33 DCHECK_NE(base::MessageLoop::TYPE_CUSTOM, type);
34 DCHECK(!has_run_);
35
36 message_loop_type_ = type;
37 }
38
39 MojoResult ApplicationRunner::Run(MojoHandle service_request_handle,
40 bool init_base) {
41 DCHECK(!has_run_);
42 has_run_ = true;
43
44 std::unique_ptr<base::AtExitManager> at_exit;
45 if (init_base) {
46 InitBaseCommandLine();
47 at_exit.reset(new base::AtExitManager);
48 }
49
50 {
51 std::unique_ptr<base::MessageLoop> loop;
52 loop.reset(new base::MessageLoop(message_loop_type_));
53
54 context_.reset(new ServiceContext(
55 client_.get(),
56 mojo::MakeRequest<mojom::Service>(mojo::MakeScopedHandle(
57 mojo::MessagePipeHandle(service_request_handle)))));
58 base::RunLoop run_loop;
59 context_->SetConnectionLostClosure(run_loop.QuitClosure());
60 run_loop.Run();
61 // It's very common for the client to cache the app and terminate on errors.
62 // If we don't delete the client before the app we run the risk of the
63 // client having a stale reference to the app and trying to use it.
64 // Note that we destruct the message loop first because that might trigger
65 // connection error handlers and they might access objects created by the
66 // client.
67 loop.reset();
68 client_.reset();
69 context_.reset();
70 }
71 return MOJO_RESULT_OK;
72 }
73
74 MojoResult ApplicationRunner::Run(MojoHandle service_request_handle) {
75 bool init_base = true;
76 if (base::CommandLine::InitializedForCurrentProcess()) {
77 init_base =
78 !base::CommandLine::ForCurrentProcess()->HasSwitch("single-process");
79 }
80 return Run(service_request_handle, init_base);
81 }
82
83 void ApplicationRunner::DestroyServiceContext() {
84 context_.reset();
85 }
86
87 void ApplicationRunner::Quit() {
88 base::MessageLoop::current()->QuitWhenIdle();
89 }
90
91 } // namespace shell
OLDNEW
« no previous file with comments | « services/shell/public/cpp/application_runner.h ('k') | services/shell/public/cpp/lib/init_commandline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698