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
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/background_fetch/background_fetch_bridge.h"
#include <utility>
#include "third_party/blink/public/platform/browser_interface_broker_proxy.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_background_fetch_options.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_image_resource.h"
#include "third_party/blink/renderer/modules/background_fetch/background_fetch_registration.h"
#include "third_party/blink/renderer/modules/background_fetch/background_fetch_type_converters.h"
namespace blink {
// static
BackgroundFetchBridge* BackgroundFetchBridge::From(
ServiceWorkerRegistration* service_worker_registration) {
DCHECK(service_worker_registration);
BackgroundFetchBridge* bridge =
Supplement<ServiceWorkerRegistration>::From<BackgroundFetchBridge>(
service_worker_registration);
if (!bridge) {
bridge = MakeGarbageCollected<BackgroundFetchBridge>(
*service_worker_registration);
ProvideTo(*service_worker_registration, bridge);
}
return bridge;
}
// static
const char BackgroundFetchBridge::kSupplementName[] = "BackgroundFetchBridge";
BackgroundFetchBridge::BackgroundFetchBridge(
ServiceWorkerRegistration& registration)
: Supplement<ServiceWorkerRegistration>(registration),
background_fetch_service_(registration.GetExecutionContext()) {}
BackgroundFetchBridge::~BackgroundFetchBridge() = default;
void BackgroundFetchBridge::Trace(Visitor* visitor) const {
visitor->Trace(background_fetch_service_);
Supplement::Trace(visitor);
}
void BackgroundFetchBridge::GetIconDisplaySize(
GetIconDisplaySizeCallback callback) {
GetService()->GetIconDisplaySize(std::move(callback));
}
void BackgroundFetchBridge::Fetch(
const String& developer_id,
Vector<mojom::blink::FetchAPIRequestPtr> requests,
mojom::blink::BackgroundFetchOptionsPtr options,
const SkBitmap& icon,
mojom::blink::BackgroundFetchUkmDataPtr ukm_data,
RegistrationCallback callback) {
GetService()->Fetch(GetSupplementable()->RegistrationId(), developer_id,
std::move(requests), std::move(options), icon,
std::move(ukm_data),
WTF::BindOnce(&BackgroundFetchBridge::DidGetRegistration,
WrapPersistent(this), std::move(callback)));
}
void BackgroundFetchBridge::GetRegistration(const String& developer_id,
RegistrationCallback callback) {
GetService()->GetRegistration(
GetSupplementable()->RegistrationId(), developer_id,
WTF::BindOnce(&BackgroundFetchBridge::DidGetRegistration,
WrapPersistent(this), std::move(callback)));
}
void BackgroundFetchBridge::DidGetRegistration(
RegistrationCallback callback,
mojom::blink::BackgroundFetchError error,
mojom::blink::BackgroundFetchRegistrationPtr registration_ptr) {
if (!registration_ptr || !registration_ptr->registration_data) {
DCHECK_NE(error, mojom::blink::BackgroundFetchError::NONE);
std::move(callback).Run(error, nullptr);
return;
}
DCHECK_EQ(error, mojom::blink::BackgroundFetchError::NONE);
BackgroundFetchRegistration* registration =
MakeGarbageCollected<blink::BackgroundFetchRegistration>(
GetSupplementable(), std::move(registration_ptr));
std::move(callback).Run(error, registration);
}
void BackgroundFetchBridge::GetDeveloperIds(GetDeveloperIdsCallback callback) {
GetService()->GetDeveloperIds(GetSupplementable()->RegistrationId(),
std::move(callback));
}
mojom::blink::BackgroundFetchService* BackgroundFetchBridge::GetService() {
if (!background_fetch_service_.is_bound()) {
auto receiver = background_fetch_service_.BindNewPipeAndPassReceiver(
GetSupplementable()->GetExecutionContext()->GetTaskRunner(
TaskType::kBackgroundFetch));
GetSupplementable()
->GetExecutionContext()
->GetBrowserInterfaceBroker()
.GetInterface(std::move(receiver));
}
return background_fetch_service_.get();
}
} // namespace blink
|