Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / mojo / shell / run.cc
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
3 // found in the LICENSE file.
4
5 #include "mojo/shell/run.h"
6
7 #include "base/command_line.h"
8 #include "base/logging.h"
9 #include "base/message_loop/message_loop.h"
10 #include "mojo/shell/context.h"
11 #include "mojo/shell/service_manager.h"
12 #include "mojo/shell/switches.h"
13 #include "url/gurl.h"
14
15 namespace mojo {
16 namespace shell {
17
18 void Run(Context* context) {
19   const CommandLine& command_line = *CommandLine::ForCurrentProcess();
20   CommandLine::StringVector args = command_line.GetArgs();
21
22   if (args.empty()) {
23     LOG(ERROR) << "No app path specified.";
24     base::MessageLoop::current()->Quit();
25     return;
26   }
27
28   for (CommandLine::StringVector::const_iterator it = args.begin();
29        it != args.end(); ++it) {
30     GURL url(*it);
31     if (url.scheme() == "mojo" && !command_line.HasSwitch(switches::kOrigin)) {
32       LOG(ERROR) << "mojo: url passed with no --origin specified.";
33       base::MessageLoop::current()->Quit();
34       return;
35     }
36     ScopedMessagePipeHandle no_handle;
37     context->service_manager()->Connect(GURL(*it), no_handle.Pass());
38   }
39   // TODO(davemoore): Currently we leak |service_manager|.
40 }
41
42 }  // namespace shell
43 }  // namespace mojo