-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathjcef_helper.cpp
217 lines (184 loc) · 6.96 KB
/
jcef_helper.cpp
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#include <fstream>
#include "include/cef_app.h"
#include "include/wrapper/cef_message_router.h"
#include "util.h"
#if defined(OS_MACOSX)
// When generating projects with CMake the CEF_USE_SANDBOX value will be defined
// automatically. Pass -DUSE_SANDBOX=OFF to the CMake command-line to disable
// use of the sandbox.
#if defined(CEF_USE_SANDBOX)
#include "include/cef_sandbox_mac.h"
#endif
#include "include/wrapper/cef_library_loader.h"
#endif // defined(OS_MACOSX)
#if defined(OS_WIN)
#include <windows.h>
#endif
namespace {
// comparator to check if configuration values are the same
struct cmpCfg {
bool operator()(const CefMessageRouterConfig& lValue,
const CefMessageRouterConfig& rValue) const {
std::less<std::string> comp;
return comp(lValue.js_query_function.ToString(),
rValue.js_query_function.ToString());
}
};
class CefHelperApp : public CefApp, public CefRenderProcessHandler {
public:
CefHelperApp() {}
void OnRegisterCustomSchemes(
CefRawPtr<CefSchemeRegistrar> registrar) override {
std::fstream fStream;
std::string fName = util::GetTempFileName("scheme", true);
char schemeName[512] = "";
int options;
fStream.open(fName.c_str(), std::fstream::in);
while (fStream.is_open() && !fStream.eof()) {
fStream.getline(schemeName, 512, ',');
if (strlen(schemeName) == 0)
break;
fStream >> options;
registrar->AddCustomScheme(schemeName, options);
}
fStream.close();
}
virtual CefRefPtr<CefRenderProcessHandler> GetRenderProcessHandler()
override {
return this;
}
void OnBrowserCreated(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefDictionaryValue> extra_info) override {
if (!extra_info) {
return;
}
auto router_configs = extra_info->GetList("router_configs");
if (router_configs) {
// Configuration from BrowserProcessHandler::GetMessageRouterConfigs.
for (size_t idx = 0; idx < router_configs->GetSize(); idx++) {
CefRefPtr<CefDictionaryValue> dict =
router_configs->GetDictionary((int)idx);
// Create the renderer-side router for query handling.
CefMessageRouterConfig config;
config.js_query_function = dict->GetString("js_query_function");
config.js_cancel_function = dict->GetString("js_cancel_function");
CefRefPtr<CefMessageRouterRendererSide> router =
CefMessageRouterRendererSide::Create(config);
message_router_.insert(std::make_pair(config, router));
}
}
}
void OnContextCreated(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
CefRefPtr<CefV8Context> context) override {
std::map<CefMessageRouterConfig, CefRefPtr<CefMessageRouterRendererSide>,
cmpCfg>::iterator iter;
for (iter = message_router_.begin(); iter != message_router_.end();
iter++) {
iter->second->OnContextCreated(browser, frame, context);
}
}
void OnContextReleased(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
CefRefPtr<CefV8Context> context) override {
std::map<CefMessageRouterConfig, CefRefPtr<CefMessageRouterRendererSide>,
cmpCfg>::iterator iter;
for (iter = message_router_.begin(); iter != message_router_.end();
iter++) {
iter->second->OnContextReleased(browser, frame, context);
}
}
bool OnProcessMessageReceived(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
CefProcessId source_process,
CefRefPtr<CefProcessMessage> message) override {
if (message->GetName() == "AddMessageRouter") {
CefRefPtr<CefListValue> args = message->GetArgumentList();
CefMessageRouterConfig config;
config.js_query_function = args->GetString(0);
config.js_cancel_function = args->GetString(1);
// only add a new message router if it wasn't already created
if (message_router_.find(config) != message_router_.end()) {
return true;
}
CefRefPtr<CefMessageRouterRendererSide> router =
CefMessageRouterRendererSide::Create(config);
message_router_.insert(std::make_pair(config, router));
return true;
} else if (message->GetName() == "RemoveMessageRouter") {
CefRefPtr<CefListValue> args = message->GetArgumentList();
CefMessageRouterConfig config;
config.js_query_function = args->GetString(0);
config.js_cancel_function = args->GetString(1);
message_router_.erase(config);
return true;
}
bool handled = false;
std::map<CefMessageRouterConfig, CefRefPtr<CefMessageRouterRendererSide>,
cmpCfg>::iterator iter;
for (iter = message_router_.begin(); iter != message_router_.end();
iter++) {
handled = iter->second->OnProcessMessageReceived(browser, frame,
source_process, message);
if (handled)
break;
}
return handled;
}
private:
std::map<CefMessageRouterConfig,
CefRefPtr<CefMessageRouterRendererSide>,
cmpCfg>
message_router_;
IMPLEMENT_REFCOUNTING(CefHelperApp);
};
} // namespace
#if defined(OS_WIN)
int CALLBACK WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow) {
CefMainArgs main_args(hInstance);
#else // !defined(OS_WIN)
int main(int argc, char* argv[]) {
#if defined(OS_MACOSX)
#if defined(CEF_USE_SANDBOX)
// Initialize the macOS sandbox for this helper process.
CefScopedSandboxContext sandbox_context;
if (!sandbox_context.Initialize(argc, argv))
return 1;
#endif // defined(CEF_USE_SANDBOX)
// Check for the path on the command-line.
std::string framework_path;
const std::string switchPrefix = "--framework-dir-path=";
for (int i = 0; i < argc; ++i) {
std::string arg = argv[i];
if (arg.find(switchPrefix) == 0) {
framework_path = arg.substr(switchPrefix.length());
break;
}
}
// Load the CEF framework library at runtime instead of linking directly
// as required by the macOS sandbox implementation.
CefScopedLibraryLoader library_loader;
if (!framework_path.empty()) {
framework_path += "/Chromium Embedded Framework";
if (!cef_load_library(framework_path.c_str()))
return 1;
} else if (!library_loader.LoadInHelper()) {
return 1;
}
#endif // defined(OS_MACOSX)
CefMainArgs main_args(argc, argv);
#endif // !defined(OS_WIN)
CefRefPtr<CefHelperApp> app = new CefHelperApp();
const int result = CefExecuteProcess(main_args, app.get(), nullptr);
#if defined(OS_MACOSX)
if (!framework_path.empty())
cef_unload_library();
#endif
return result;
}