blob: 1dd54cb5484f51b2497b7e776f145c76ee3fa56c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MOJO_RUNNER_CONTEXT_H_
#define MOJO_RUNNER_CONTEXT_H_
#include <string>
#include "base/macros.h"
#include "mojo/edk/embedder/process_delegate.h"
#include "mojo/runner/task_runners.h"
#include "mojo/runner/url_resolver.h"
#include "mojo/shell/application_manager.h"
namespace mojo {
namespace runner {
class NativeApplicationLoader;
// The "global" context for the shell's main process.
class Context : public shell::ApplicationManager::Delegate,
public embedder::ProcessDelegate {
public:
Context();
~Context() override;
static void EnsureEmbedderIsInitialized();
// Point to the directory containing installed services, such as the network
// service. By default this directory is used as the base URL for resolving
// unknown mojo: URLs. The network service will be loaded from this directory,
// even when the base URL for unknown mojo: URLs is overridden.
void SetShellFileRoot(const base::FilePath& path);
// Resolve an URL relative to the shell file root. This is a nop for
// everything but relative file URLs or URLs without a scheme.
GURL ResolveShellFileURL(const std::string& path);
// Override the CWD, which is used for resolving file URLs passed in from the
// command line.
void SetCommandLineCWD(const base::FilePath& path);
// Resolve an URL relative to the CWD mojo_shell was invoked from. This is a
// nop for everything but relative file URLs or URLs without a scheme.
GURL ResolveCommandLineURL(const std::string& path);
// This must be called with a message loop set up for the current thread,
// which must remain alive until after Shutdown() is called. Returns true on
// success.
bool Init();
// If Init() was called and succeeded, this must be called before destruction.
void Shutdown();
void Run(const GURL& url);
TaskRunners* task_runners() { return task_runners_.get(); }
shell::ApplicationManager* application_manager() {
return &application_manager_;
}
URLResolver* url_resolver() { return &url_resolver_; }
private:
class NativeViewportApplicationLoader;
// ApplicationManager::Delegate overrides.
GURL ResolveMappings(const GURL& url) override;
GURL ResolveMojoURL(const GURL& url) override;
bool CreateFetcher(
const GURL& url,
const shell::Fetcher::FetchCallback& loader_callback) override;
// ProcessDelegate implementation.
void OnShutdownComplete() override;
void OnApplicationEnd(const GURL& url);
std::set<GURL> app_urls_;
scoped_ptr<TaskRunners> task_runners_;
shell::ApplicationManager application_manager_;
URLResolver url_resolver_;
GURL shell_file_root_;
GURL command_line_cwd_;
DISALLOW_COPY_AND_ASSIGN(Context);
};
} // namespace runner
} // namespace mojo
#endif // MOJO_RUNNER_CONTEXT_H_
|