зеркало из https://github.com/electron/electron.git
168 строки
5.8 KiB
C++
168 строки
5.8 KiB
C++
// Copyright (c) 2019 Slack Technologies, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/browser/api/electron_api_service_worker_context.h"
|
|
|
|
#include <string_view>
|
|
#include <utility>
|
|
|
|
#include "base/strings/string_number_conversions.h"
|
|
#include "chrome/browser/browser_process.h"
|
|
#include "content/public/browser/console_message.h"
|
|
#include "content/public/browser/storage_partition.h"
|
|
#include "gin/data_object_builder.h"
|
|
#include "gin/handle.h"
|
|
#include "gin/object_template_builder.h"
|
|
#include "shell/browser/electron_browser_context.h"
|
|
#include "shell/browser/javascript_environment.h"
|
|
#include "shell/common/gin_converters/gurl_converter.h"
|
|
#include "shell/common/gin_converters/value_converter.h"
|
|
#include "shell/common/gin_helper/dictionary.h"
|
|
#include "shell/common/gin_helper/function_template_extensions.h"
|
|
#include "shell/common/node_includes.h"
|
|
|
|
namespace electron::api {
|
|
|
|
namespace {
|
|
|
|
constexpr std::string_view MessageSourceToString(
|
|
const blink::mojom::ConsoleMessageSource source) {
|
|
switch (source) {
|
|
case blink::mojom::ConsoleMessageSource::kXml:
|
|
return "xml";
|
|
case blink::mojom::ConsoleMessageSource::kJavaScript:
|
|
return "javascript";
|
|
case blink::mojom::ConsoleMessageSource::kNetwork:
|
|
return "network";
|
|
case blink::mojom::ConsoleMessageSource::kConsoleApi:
|
|
return "console-api";
|
|
case blink::mojom::ConsoleMessageSource::kStorage:
|
|
return "storage";
|
|
case blink::mojom::ConsoleMessageSource::kRendering:
|
|
return "rendering";
|
|
case blink::mojom::ConsoleMessageSource::kSecurity:
|
|
return "security";
|
|
case blink::mojom::ConsoleMessageSource::kDeprecation:
|
|
return "deprecation";
|
|
case blink::mojom::ConsoleMessageSource::kWorker:
|
|
return "worker";
|
|
case blink::mojom::ConsoleMessageSource::kViolation:
|
|
return "violation";
|
|
case blink::mojom::ConsoleMessageSource::kIntervention:
|
|
return "intervention";
|
|
case blink::mojom::ConsoleMessageSource::kRecommendation:
|
|
return "recommendation";
|
|
default:
|
|
return "other";
|
|
}
|
|
}
|
|
|
|
v8::Local<v8::Value> ServiceWorkerRunningInfoToDict(
|
|
v8::Isolate* isolate,
|
|
const content::ServiceWorkerRunningInfo& info) {
|
|
return gin::DataObjectBuilder(isolate)
|
|
.Set("scriptUrl", info.script_url.spec())
|
|
.Set("scope", info.scope.spec())
|
|
.Set("renderProcessId", info.render_process_id)
|
|
.Build();
|
|
}
|
|
|
|
} // namespace
|
|
|
|
gin::WrapperInfo ServiceWorkerContext::kWrapperInfo = {gin::kEmbedderNativeGin};
|
|
|
|
ServiceWorkerContext::ServiceWorkerContext(
|
|
v8::Isolate* isolate,
|
|
ElectronBrowserContext* browser_context) {
|
|
service_worker_context_ =
|
|
browser_context->GetDefaultStoragePartition()->GetServiceWorkerContext();
|
|
service_worker_context_->AddObserver(this);
|
|
}
|
|
|
|
ServiceWorkerContext::~ServiceWorkerContext() {
|
|
service_worker_context_->RemoveObserver(this);
|
|
}
|
|
|
|
void ServiceWorkerContext::OnReportConsoleMessage(
|
|
int64_t version_id,
|
|
const GURL& scope,
|
|
const content::ConsoleMessage& message) {
|
|
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
|
v8::HandleScope handle_scope(isolate);
|
|
Emit("console-message",
|
|
gin::DataObjectBuilder(isolate)
|
|
.Set("versionId", version_id)
|
|
.Set("source", MessageSourceToString(message.source))
|
|
.Set("level", static_cast<int32_t>(message.message_level))
|
|
.Set("message", message.message)
|
|
.Set("lineNumber", message.line_number)
|
|
.Set("sourceUrl", message.source_url.spec())
|
|
.Build());
|
|
}
|
|
|
|
void ServiceWorkerContext::OnRegistrationCompleted(const GURL& scope) {
|
|
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
|
v8::HandleScope handle_scope(isolate);
|
|
Emit("registration-completed",
|
|
gin::DataObjectBuilder(isolate).Set("scope", scope).Build());
|
|
}
|
|
|
|
void ServiceWorkerContext::OnDestruct(content::ServiceWorkerContext* context) {
|
|
if (context == service_worker_context_) {
|
|
delete this;
|
|
}
|
|
}
|
|
|
|
v8::Local<v8::Value> ServiceWorkerContext::GetAllRunningWorkerInfo(
|
|
v8::Isolate* isolate) {
|
|
gin::DataObjectBuilder builder(isolate);
|
|
const base::flat_map<int64_t, content::ServiceWorkerRunningInfo>& info_map =
|
|
service_worker_context_->GetRunningServiceWorkerInfos();
|
|
for (const auto& iter : info_map) {
|
|
builder.Set(
|
|
base::NumberToString(iter.first),
|
|
ServiceWorkerRunningInfoToDict(isolate, std::move(iter.second)));
|
|
}
|
|
return builder.Build();
|
|
}
|
|
|
|
v8::Local<v8::Value> ServiceWorkerContext::GetWorkerInfoFromID(
|
|
gin_helper::ErrorThrower thrower,
|
|
int64_t version_id) {
|
|
const base::flat_map<int64_t, content::ServiceWorkerRunningInfo>& info_map =
|
|
service_worker_context_->GetRunningServiceWorkerInfos();
|
|
auto iter = info_map.find(version_id);
|
|
if (iter == info_map.end()) {
|
|
thrower.ThrowError("Could not find service worker with that version_id");
|
|
return v8::Local<v8::Value>();
|
|
}
|
|
return ServiceWorkerRunningInfoToDict(thrower.isolate(),
|
|
std::move(iter->second));
|
|
}
|
|
|
|
// static
|
|
gin::Handle<ServiceWorkerContext> ServiceWorkerContext::Create(
|
|
v8::Isolate* isolate,
|
|
ElectronBrowserContext* browser_context) {
|
|
return gin::CreateHandle(isolate,
|
|
new ServiceWorkerContext(isolate, browser_context));
|
|
}
|
|
|
|
// static
|
|
gin::ObjectTemplateBuilder ServiceWorkerContext::GetObjectTemplateBuilder(
|
|
v8::Isolate* isolate) {
|
|
return gin_helper::EventEmitterMixin<
|
|
ServiceWorkerContext>::GetObjectTemplateBuilder(isolate)
|
|
.SetMethod("getAllRunning",
|
|
&ServiceWorkerContext::GetAllRunningWorkerInfo)
|
|
.SetMethod("getFromVersionID",
|
|
&ServiceWorkerContext::GetWorkerInfoFromID);
|
|
}
|
|
|
|
const char* ServiceWorkerContext::GetTypeName() {
|
|
return "ServiceWorkerContext";
|
|
}
|
|
|
|
} // namespace electron::api
|