2015-11-22 12:43:55 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2017-10-27 01:08:41 +03:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2015-11-22 12:43:55 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "QuotaManagerService.h"
|
|
|
|
|
|
|
|
#include "ActorsChild.h"
|
|
|
|
#include "mozilla/BasePrincipal.h"
|
|
|
|
#include "mozilla/ClearOnShutdown.h"
|
|
|
|
#include "mozilla/Hal.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
2019-08-01 09:00:35 +03:00
|
|
|
#include "mozilla/StaticPrefs_dom.h"
|
2016-08-23 07:09:32 +03:00
|
|
|
#include "mozilla/Unused.h"
|
2015-11-22 12:43:55 +03:00
|
|
|
#include "mozilla/ipc/BackgroundChild.h"
|
|
|
|
#include "mozilla/ipc/BackgroundParent.h"
|
|
|
|
#include "mozilla/ipc/BackgroundUtils.h"
|
|
|
|
#include "mozilla/ipc/PBackgroundChild.h"
|
2020-07-20 19:06:59 +03:00
|
|
|
#include "nsIUserIdleService.h"
|
2015-11-22 12:43:55 +03:00
|
|
|
#include "nsIObserverService.h"
|
|
|
|
#include "nsXULAppAPI.h"
|
|
|
|
#include "QuotaManager.h"
|
|
|
|
#include "QuotaRequests.h"
|
|
|
|
|
2016-06-15 13:49:04 +03:00
|
|
|
#define PROFILE_BEFORE_CHANGE_QM_OBSERVER_ID "profile-before-change-qm"
|
2015-11-22 12:43:55 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace quota {
|
|
|
|
|
|
|
|
using namespace mozilla::ipc;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2020-07-20 19:06:59 +03:00
|
|
|
const char kIdleServiceContractId[] = "@mozilla.org/widget/useridleservice;1";
|
2015-11-22 12:43:55 +03:00
|
|
|
|
|
|
|
// The number of seconds we will wait after receiving the idle-daily
|
|
|
|
// notification before beginning maintenance.
|
|
|
|
const uint32_t kIdleObserverTimeSec = 1;
|
|
|
|
|
|
|
|
mozilla::StaticRefPtr<QuotaManagerService> gQuotaManagerService;
|
|
|
|
|
|
|
|
mozilla::Atomic<bool> gInitialized(false);
|
|
|
|
mozilla::Atomic<bool> gClosed(false);
|
|
|
|
|
2016-08-25 05:19:31 +03:00
|
|
|
nsresult CheckedPrincipalToPrincipalInfo(nsIPrincipal* aPrincipal,
|
|
|
|
PrincipalInfo& aPrincipalInfo) {
|
|
|
|
MOZ_ASSERT(aPrincipal);
|
|
|
|
|
|
|
|
nsresult rv = PrincipalToPrincipalInfo(aPrincipal, &aPrincipalInfo);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2019-02-23 19:37:25 +03:00
|
|
|
if (NS_WARN_IF(!QuotaManager::IsPrincipalInfoValid(aPrincipalInfo))) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2016-08-25 05:19:31 +03:00
|
|
|
if (aPrincipalInfo.type() != PrincipalInfo::TContentPrincipalInfo &&
|
|
|
|
aPrincipalInfo.type() != PrincipalInfo::TSystemPrincipalInfo) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2018-11-29 23:48:11 +03:00
|
|
|
nsresult GetClearResetOriginParams(nsIPrincipal* aPrincipal,
|
|
|
|
const nsACString& aPersistenceType,
|
2020-03-17 16:01:38 +03:00
|
|
|
const nsAString& aClientType,
|
2018-11-29 23:48:11 +03:00
|
|
|
ClearResetOriginParams& aParams) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aPrincipal);
|
|
|
|
|
|
|
|
nsresult rv =
|
|
|
|
CheckedPrincipalToPrincipalInfo(aPrincipal, aParams.principalInfo());
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2020-03-13 15:55:20 +03:00
|
|
|
if (aPersistenceType.IsVoid()) {
|
2018-11-29 23:48:11 +03:00
|
|
|
aParams.persistenceTypeIsExplicit() = false;
|
|
|
|
} else {
|
2020-03-13 15:55:20 +03:00
|
|
|
const auto maybePersistenceType =
|
|
|
|
PersistenceTypeFromString(aPersistenceType, fallible);
|
|
|
|
if (NS_WARN_IF(maybePersistenceType.isNothing())) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
aParams.persistenceType() = maybePersistenceType.value();
|
2018-11-29 23:48:11 +03:00
|
|
|
aParams.persistenceTypeIsExplicit() = true;
|
|
|
|
}
|
|
|
|
|
2019-08-23 07:49:14 +03:00
|
|
|
if (aClientType.IsVoid()) {
|
2018-11-29 23:48:11 +03:00
|
|
|
aParams.clientTypeIsExplicit() = false;
|
|
|
|
} else {
|
2019-08-23 07:49:14 +03:00
|
|
|
Client::Type clientType;
|
|
|
|
bool ok = Client::TypeFromText(aClientType, clientType, fallible);
|
|
|
|
if (NS_WARN_IF(!ok)) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
aParams.clientType() = clientType;
|
2018-11-29 23:48:11 +03:00
|
|
|
aParams.clientTypeIsExplicit() = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-11-22 12:43:55 +03:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
class QuotaManagerService::PendingRequestInfo {
|
|
|
|
protected:
|
|
|
|
RefPtr<RequestBase> mRequest;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit PendingRequestInfo(RequestBase* aRequest) : mRequest(aRequest) {}
|
|
|
|
|
2020-02-12 13:25:22 +03:00
|
|
|
virtual ~PendingRequestInfo() = default;
|
2015-11-22 12:43:55 +03:00
|
|
|
|
|
|
|
RequestBase* GetRequest() const { return mRequest; }
|
|
|
|
|
|
|
|
virtual nsresult InitiateRequest(QuotaChild* aActor) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QuotaManagerService::UsageRequestInfo : public PendingRequestInfo {
|
|
|
|
UsageRequestParams mParams;
|
|
|
|
|
|
|
|
public:
|
|
|
|
UsageRequestInfo(UsageRequest* aRequest, const UsageRequestParams& aParams)
|
|
|
|
: PendingRequestInfo(aRequest), mParams(aParams) {
|
|
|
|
MOZ_ASSERT(aRequest);
|
|
|
|
MOZ_ASSERT(aParams.type() != UsageRequestParams::T__None);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual nsresult InitiateRequest(QuotaChild* aActor) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QuotaManagerService::RequestInfo : public PendingRequestInfo {
|
|
|
|
RequestParams mParams;
|
|
|
|
|
|
|
|
public:
|
|
|
|
RequestInfo(Request* aRequest, const RequestParams& aParams)
|
|
|
|
: PendingRequestInfo(aRequest), mParams(aParams) {
|
|
|
|
MOZ_ASSERT(aRequest);
|
|
|
|
MOZ_ASSERT(aParams.type() != RequestParams::T__None);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual nsresult InitiateRequest(QuotaChild* aActor) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QuotaManagerService::IdleMaintenanceInfo : public PendingRequestInfo {
|
|
|
|
const bool mStart;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit IdleMaintenanceInfo(bool aStart)
|
|
|
|
: PendingRequestInfo(nullptr), mStart(aStart) {}
|
|
|
|
|
|
|
|
virtual nsresult InitiateRequest(QuotaChild* aActor) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
QuotaManagerService::QuotaManagerService()
|
|
|
|
: mBackgroundActor(nullptr),
|
|
|
|
mBackgroundActorFailed(false),
|
|
|
|
mIdleObserverRegistered(false) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
}
|
|
|
|
|
|
|
|
QuotaManagerService::~QuotaManagerService() {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(!mIdleObserverRegistered);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
QuotaManagerService* QuotaManagerService::GetOrCreate() {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
if (gClosed) {
|
|
|
|
MOZ_ASSERT(false, "Calling GetOrCreate() after shutdown!");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gQuotaManagerService) {
|
|
|
|
RefPtr<QuotaManagerService> instance(new QuotaManagerService());
|
|
|
|
|
|
|
|
nsresult rv = instance->Init();
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gInitialized.exchange(true)) {
|
|
|
|
MOZ_ASSERT(false, "Initialized more than once?!");
|
|
|
|
}
|
|
|
|
|
|
|
|
gQuotaManagerService = instance;
|
|
|
|
|
|
|
|
ClearOnShutdown(&gQuotaManagerService);
|
|
|
|
}
|
|
|
|
|
|
|
|
return gQuotaManagerService;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
QuotaManagerService* QuotaManagerService::Get() {
|
|
|
|
// Does not return an owning reference.
|
|
|
|
return gQuotaManagerService;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2017-10-17 07:08:42 +03:00
|
|
|
already_AddRefed<QuotaManagerService> QuotaManagerService::FactoryCreate() {
|
|
|
|
RefPtr<QuotaManagerService> quotaManagerService = GetOrCreate();
|
|
|
|
return quotaManagerService.forget();
|
2015-11-22 12:43:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void QuotaManagerService::ClearBackgroundActor() {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
mBackgroundActor = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QuotaManagerService::AbortOperationsForProcess(
|
|
|
|
ContentParentId aContentParentId) {
|
|
|
|
MOZ_ASSERT(XRE_IsParentProcess());
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2019-02-23 19:17:21 +03:00
|
|
|
nsresult rv = EnsureBackgroundActor();
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
2015-11-22 12:43:55 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-23 19:17:21 +03:00
|
|
|
if (NS_WARN_IF(
|
|
|
|
!mBackgroundActor->SendAbortOperationsForProcess(aContentParentId))) {
|
|
|
|
return;
|
|
|
|
}
|
2015-11-22 12:43:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult QuotaManagerService::Init() {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
if (XRE_IsParentProcess()) {
|
|
|
|
nsCOMPtr<nsIObserverService> observerService =
|
|
|
|
mozilla::services::GetObserverService();
|
|
|
|
if (NS_WARN_IF(!observerService)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2016-06-15 13:49:04 +03:00
|
|
|
nsresult rv = observerService->AddObserver(
|
|
|
|
this, PROFILE_BEFORE_CHANGE_QM_OBSERVER_ID, false);
|
2015-11-22 12:43:55 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QuotaManagerService::Destroy() {
|
|
|
|
// Setting the closed flag prevents the service from being recreated.
|
|
|
|
// Don't set it though if there's no real instance created.
|
|
|
|
if (gInitialized && gClosed.exchange(true)) {
|
|
|
|
MOZ_ASSERT(false, "Shutdown more than once?!");
|
|
|
|
}
|
|
|
|
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2019-02-23 19:17:21 +03:00
|
|
|
nsresult QuotaManagerService::EnsureBackgroundActor() {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2015-11-22 12:43:55 +03:00
|
|
|
// Nothing can be done here if we have previously failed to create a
|
|
|
|
// background actor.
|
|
|
|
if (mBackgroundActorFailed) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2017-10-24 13:02:41 +03:00
|
|
|
if (!mBackgroundActor) {
|
|
|
|
PBackgroundChild* backgroundActor =
|
|
|
|
BackgroundChild::GetOrCreateForCurrentThread();
|
|
|
|
if (NS_WARN_IF(!backgroundActor)) {
|
|
|
|
mBackgroundActorFailed = true;
|
|
|
|
return NS_ERROR_FAILURE;
|
2015-11-22 12:43:55 +03:00
|
|
|
}
|
|
|
|
|
2017-10-24 13:02:41 +03:00
|
|
|
{
|
|
|
|
QuotaChild* actor = new QuotaChild(this);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
2017-10-24 13:02:41 +03:00
|
|
|
mBackgroundActor = static_cast<QuotaChild*>(
|
|
|
|
backgroundActor->SendPQuotaConstructor(actor));
|
|
|
|
}
|
2015-11-22 12:43:55 +03:00
|
|
|
}
|
|
|
|
|
2017-10-24 13:02:41 +03:00
|
|
|
if (!mBackgroundActor) {
|
|
|
|
mBackgroundActorFailed = true;
|
2015-11-22 12:43:55 +03:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2019-02-23 19:17:21 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
nsresult QuotaManagerService::InitiateRequest(PendingRequestInfo& aInfo) {
|
2019-02-23 19:17:21 +03:00
|
|
|
nsresult rv = EnsureBackgroundActor();
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
rv = aInfo.InitiateRequest(mBackgroundActor);
|
2017-10-24 13:02:41 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
2015-11-22 12:43:55 +03:00
|
|
|
}
|
|
|
|
|
2017-10-24 13:02:41 +03:00
|
|
|
return NS_OK;
|
2015-11-22 12:43:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void QuotaManagerService::PerformIdleMaintenance() {
|
|
|
|
using namespace mozilla::hal;
|
|
|
|
|
|
|
|
MOZ_ASSERT(XRE_IsParentProcess());
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
// If we're running on battery power then skip all idle maintenance since we
|
|
|
|
// would otherwise be doing lots of disk I/O.
|
|
|
|
BatteryInformation batteryInfo;
|
|
|
|
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
// Android XPCShell doesn't load the AndroidBridge that is needed to make
|
|
|
|
// GetCurrentBatteryInformation work...
|
2016-12-01 06:48:32 +03:00
|
|
|
if (!QuotaManager::IsRunningXPCShellTests())
|
2015-11-22 12:43:55 +03:00
|
|
|
#endif
|
|
|
|
{
|
2016-11-29 00:22:51 +03:00
|
|
|
// In order to give the correct battery level, hal must have registered
|
|
|
|
// battery observers.
|
|
|
|
RegisterBatteryObserver(this);
|
2015-11-22 12:43:55 +03:00
|
|
|
GetCurrentBatteryInformation(&batteryInfo);
|
2016-11-29 00:22:51 +03:00
|
|
|
UnregisterBatteryObserver(this);
|
2015-11-22 12:43:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we're running XPCShell because we always want to be able to test this
|
|
|
|
// code so pretend that we're always charging.
|
2016-12-01 06:48:32 +03:00
|
|
|
if (QuotaManager::IsRunningXPCShellTests()) {
|
2015-11-22 12:43:55 +03:00
|
|
|
batteryInfo.level() = 100;
|
|
|
|
batteryInfo.charging() = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NS_WARN_IF(!batteryInfo.charging())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-01 06:48:32 +03:00
|
|
|
if (QuotaManager::IsRunningXPCShellTests()) {
|
2015-11-22 12:43:55 +03:00
|
|
|
// We don't want user activity to impact this code if we're running tests.
|
|
|
|
Unused << Observe(nullptr, OBSERVER_TOPIC_IDLE, nullptr);
|
|
|
|
} else if (!mIdleObserverRegistered) {
|
2020-07-20 19:06:59 +03:00
|
|
|
nsCOMPtr<nsIUserIdleService> idleService =
|
2015-11-22 12:43:55 +03:00
|
|
|
do_GetService(kIdleServiceContractId);
|
|
|
|
MOZ_ASSERT(idleService);
|
|
|
|
|
2016-03-28 20:28:15 +03:00
|
|
|
MOZ_ALWAYS_SUCCEEDS(
|
|
|
|
idleService->AddIdleObserver(this, kIdleObserverTimeSec));
|
2015-11-22 12:43:55 +03:00
|
|
|
|
|
|
|
mIdleObserverRegistered = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QuotaManagerService::RemoveIdleObserver() {
|
|
|
|
MOZ_ASSERT(XRE_IsParentProcess());
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
if (mIdleObserverRegistered) {
|
2020-07-20 19:06:59 +03:00
|
|
|
nsCOMPtr<nsIUserIdleService> idleService =
|
2015-11-22 12:43:55 +03:00
|
|
|
do_GetService(kIdleServiceContractId);
|
|
|
|
MOZ_ASSERT(idleService);
|
|
|
|
|
2017-07-12 19:19:49 +03:00
|
|
|
// Ignore the return value of RemoveIdleObserver, it may fail if the
|
|
|
|
// observer has already been unregistered during shutdown.
|
|
|
|
Unused << idleService->RemoveIdleObserver(this, kIdleObserverTimeSec);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
|
|
|
mIdleObserverRegistered = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(QuotaManagerService)
|
|
|
|
NS_IMPL_RELEASE_WITH_DESTROY(QuotaManagerService, Destroy())
|
|
|
|
NS_IMPL_QUERY_INTERFACE(QuotaManagerService, nsIQuotaManagerService,
|
|
|
|
nsIObserver)
|
|
|
|
|
2020-05-05 09:25:18 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::StorageName(nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(nsContentUtils::IsCallerChrome());
|
|
|
|
|
|
|
|
if (NS_WARN_IF(!StaticPrefs::dom_quotaManager_testing())) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<Request> request = new Request();
|
|
|
|
|
|
|
|
StorageNameParams params;
|
|
|
|
|
|
|
|
RequestInfo info(request, params);
|
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2020-02-22 10:57:28 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::StorageInitialized(nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(nsContentUtils::IsCallerChrome());
|
|
|
|
|
|
|
|
if (NS_WARN_IF(!StaticPrefs::dom_quotaManager_testing())) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<Request> request = new Request();
|
|
|
|
|
|
|
|
StorageInitializedParams params;
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2020-02-22 10:57:28 +03:00
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::TemporaryStorageInitialized(nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(nsContentUtils::IsCallerChrome());
|
|
|
|
|
|
|
|
if (NS_WARN_IF(!StaticPrefs::dom_quotaManager_testing())) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<Request> request = new Request();
|
|
|
|
|
|
|
|
TemporaryStorageInitializedParams params;
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2020-02-22 10:57:28 +03:00
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-03-06 20:39:21 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::Init(nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(nsContentUtils::IsCallerChrome());
|
|
|
|
|
2019-08-01 09:00:35 +03:00
|
|
|
if (NS_WARN_IF(!StaticPrefs::dom_quotaManager_testing())) {
|
2017-03-06 20:39:21 +03:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<Request> request = new Request();
|
|
|
|
|
|
|
|
InitParams params;
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2017-03-06 20:39:21 +03:00
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2018-10-02 17:08:43 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::InitTemporaryStorage(nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(nsContentUtils::IsCallerChrome());
|
|
|
|
|
2019-08-01 09:00:35 +03:00
|
|
|
if (NS_WARN_IF(!StaticPrefs::dom_quotaManager_testing())) {
|
2018-10-02 17:08:43 +03:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<Request> request = new Request();
|
|
|
|
|
|
|
|
InitTemporaryStorageParams params;
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2018-10-02 17:08:43 +03:00
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-03-06 20:39:33 +03:00
|
|
|
NS_IMETHODIMP
|
2019-11-25 18:04:43 +03:00
|
|
|
QuotaManagerService::InitStorageAndOrigin(nsIPrincipal* aPrincipal,
|
|
|
|
const nsACString& aPersistenceType,
|
|
|
|
const nsAString& aClientType,
|
|
|
|
nsIQuotaRequest** _retval) {
|
2017-03-06 20:39:33 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(nsContentUtils::IsCallerChrome());
|
|
|
|
|
2019-08-01 09:00:35 +03:00
|
|
|
if (NS_WARN_IF(!StaticPrefs::dom_quotaManager_testing())) {
|
2017-03-06 20:39:33 +03:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<Request> request = new Request();
|
|
|
|
|
2019-11-25 18:04:43 +03:00
|
|
|
InitStorageAndOriginParams params;
|
2017-03-06 20:39:33 +03:00
|
|
|
|
2016-08-25 05:19:31 +03:00
|
|
|
nsresult rv =
|
|
|
|
CheckedPrincipalToPrincipalInfo(aPrincipal, params.principalInfo());
|
2017-03-06 20:39:33 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2020-03-13 15:55:20 +03:00
|
|
|
const auto maybePersistenceType =
|
|
|
|
PersistenceTypeFromString(aPersistenceType, fallible);
|
|
|
|
if (NS_WARN_IF(maybePersistenceType.isNothing())) {
|
2017-03-06 20:39:33 +03:00
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
2020-03-13 15:55:20 +03:00
|
|
|
params.persistenceType() = maybePersistenceType.value();
|
2017-03-06 20:39:33 +03:00
|
|
|
|
2019-11-25 18:04:43 +03:00
|
|
|
if (aClientType.IsVoid()) {
|
|
|
|
params.clientTypeIsExplicit() = false;
|
|
|
|
} else {
|
|
|
|
Client::Type clientType;
|
|
|
|
bool ok = Client::TypeFromText(aClientType, clientType, fallible);
|
|
|
|
if (NS_WARN_IF(!ok)) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
params.clientType() = clientType;
|
|
|
|
params.clientTypeIsExplicit() = true;
|
|
|
|
}
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2017-03-06 20:39:33 +03:00
|
|
|
|
|
|
|
rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-03-22 14:14:04 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::GetUsage(nsIQuotaUsageCallback* aCallback, bool aGetAll,
|
|
|
|
nsIQuotaUsageRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aCallback);
|
|
|
|
|
|
|
|
RefPtr<UsageRequest> request = new UsageRequest(aCallback);
|
|
|
|
|
|
|
|
AllUsageParams params;
|
|
|
|
|
|
|
|
params.getAll() = aGetAll;
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
UsageRequestInfo info(request, params);
|
2017-03-22 14:14:04 +03:00
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-11-22 12:43:55 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::GetUsageForPrincipal(nsIPrincipal* aPrincipal,
|
|
|
|
nsIQuotaUsageCallback* aCallback,
|
2019-08-22 23:51:09 +03:00
|
|
|
bool aFromMemory,
|
2015-11-22 12:43:55 +03:00
|
|
|
nsIQuotaUsageRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aPrincipal);
|
|
|
|
MOZ_ASSERT(aCallback);
|
|
|
|
|
|
|
|
RefPtr<UsageRequest> request = new UsageRequest(aPrincipal, aCallback);
|
|
|
|
|
2017-03-22 14:13:48 +03:00
|
|
|
OriginUsageParams params;
|
2015-11-22 12:43:55 +03:00
|
|
|
|
2016-08-25 05:19:31 +03:00
|
|
|
nsresult rv =
|
|
|
|
CheckedPrincipalToPrincipalInfo(aPrincipal, params.principalInfo());
|
2015-11-22 12:43:55 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2019-08-22 23:51:09 +03:00
|
|
|
params.fromMemory() = aFromMemory;
|
2016-06-24 05:24:06 +03:00
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
UsageRequestInfo info(request, params);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
|
|
|
rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::Clear(nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2019-08-01 09:00:35 +03:00
|
|
|
if (NS_WARN_IF(!StaticPrefs::dom_quotaManager_testing())) {
|
2015-11-22 12:43:55 +03:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<Request> request = new Request();
|
|
|
|
|
|
|
|
ClearAllParams params;
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2018-11-29 23:49:52 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::ClearStoragesForOriginAttributesPattern(
|
|
|
|
const nsAString& aPattern, nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2019-02-23 19:39:49 +03:00
|
|
|
OriginAttributesPattern pattern;
|
|
|
|
MOZ_ALWAYS_TRUE(pattern.Init(aPattern));
|
|
|
|
|
2018-11-29 23:49:52 +03:00
|
|
|
RefPtr<Request> request = new Request();
|
|
|
|
|
|
|
|
ClearDataParams params;
|
|
|
|
|
2019-02-23 19:39:49 +03:00
|
|
|
params.pattern() = pattern;
|
2018-11-29 23:49:52 +03:00
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2018-11-29 23:49:52 +03:00
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-11-22 12:43:55 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::ClearStoragesForPrincipal(
|
|
|
|
nsIPrincipal* aPrincipal, const nsACString& aPersistenceType,
|
2018-11-29 23:47:58 +03:00
|
|
|
const nsAString& aClientType, bool aClearAll, nsIQuotaRequest** _retval) {
|
2015-11-22 12:43:55 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aPrincipal);
|
|
|
|
|
2016-08-17 09:46:16 +03:00
|
|
|
nsCString suffix;
|
2016-12-19 13:30:29 +03:00
|
|
|
aPrincipal->OriginAttributesRef().CreateSuffix(suffix);
|
2016-08-17 09:46:16 +03:00
|
|
|
|
|
|
|
if (NS_WARN_IF(aClearAll && !suffix.IsEmpty())) {
|
|
|
|
// The originAttributes should be default originAttributes when the
|
|
|
|
// aClearAll flag is set.
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
2015-11-22 12:43:55 +03:00
|
|
|
RefPtr<Request> request = new Request(aPrincipal);
|
|
|
|
|
2018-11-29 23:48:11 +03:00
|
|
|
ClearResetOriginParams commonParams;
|
2015-11-22 12:43:55 +03:00
|
|
|
|
2018-11-29 23:48:11 +03:00
|
|
|
nsresult rv = GetClearResetOriginParams(aPrincipal, aPersistenceType,
|
2020-03-17 16:01:38 +03:00
|
|
|
aClientType, commonParams);
|
2015-11-22 12:43:55 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2020-03-17 16:01:38 +03:00
|
|
|
ClearOriginParams params;
|
|
|
|
params.commonParams() = std::move(commonParams);
|
|
|
|
params.matchAll() = aClearAll;
|
2015-11-22 12:43:55 +03:00
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
2018-11-29 23:48:11 +03:00
|
|
|
rv = InitiateRequest(info);
|
2018-11-29 23:47:58 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
2018-11-29 23:48:11 +03:00
|
|
|
return rv;
|
2018-11-29 23:47:58 +03:00
|
|
|
}
|
|
|
|
|
2018-11-29 23:48:11 +03:00
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::Reset(nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2019-08-01 09:00:35 +03:00
|
|
|
if (NS_WARN_IF(!StaticPrefs::dom_quotaManager_testing())) {
|
2018-11-29 23:48:11 +03:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
2018-11-29 23:47:58 +03:00
|
|
|
}
|
|
|
|
|
2018-11-29 23:48:11 +03:00
|
|
|
RefPtr<Request> request = new Request();
|
|
|
|
|
|
|
|
ResetAllParams params;
|
2016-08-17 09:46:16 +03:00
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
2018-11-29 23:48:11 +03:00
|
|
|
nsresult rv = InitiateRequest(info);
|
2015-11-22 12:43:55 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2018-11-29 23:48:11 +03:00
|
|
|
QuotaManagerService::ResetStoragesForPrincipal(
|
|
|
|
nsIPrincipal* aPrincipal, const nsACString& aPersistenceType,
|
2020-03-17 16:01:38 +03:00
|
|
|
const nsAString& aClientType, nsIQuotaRequest** _retval) {
|
2015-11-22 12:43:55 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2018-11-29 23:48:11 +03:00
|
|
|
MOZ_ASSERT(aPrincipal);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
2019-08-01 09:00:35 +03:00
|
|
|
if (NS_WARN_IF(!StaticPrefs::dom_quotaManager_testing())) {
|
2015-11-22 12:43:55 +03:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
2018-11-29 23:48:11 +03:00
|
|
|
RefPtr<Request> request = new Request(aPrincipal);
|
|
|
|
|
|
|
|
ClearResetOriginParams commonParams;
|
|
|
|
|
|
|
|
nsresult rv = GetClearResetOriginParams(aPrincipal, aPersistenceType,
|
2020-03-17 16:01:38 +03:00
|
|
|
aClientType, commonParams);
|
2018-11-29 23:48:11 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
RequestParams params;
|
|
|
|
params = ResetOriginParams(commonParams);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
2018-11-29 23:48:11 +03:00
|
|
|
rv = InitiateRequest(info);
|
2015-11-22 12:43:55 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2016-08-25 05:19:31 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::Persisted(nsIPrincipal* aPrincipal,
|
|
|
|
nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aPrincipal);
|
|
|
|
MOZ_ASSERT(_retval);
|
|
|
|
|
|
|
|
RefPtr<Request> request = new Request(aPrincipal);
|
|
|
|
|
|
|
|
PersistedParams params;
|
|
|
|
|
|
|
|
nsresult rv =
|
|
|
|
CheckedPrincipalToPrincipalInfo(aPrincipal, params.principalInfo());
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2016-08-25 05:19:31 +03:00
|
|
|
|
|
|
|
rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::Persist(nsIPrincipal* aPrincipal,
|
|
|
|
nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aPrincipal);
|
|
|
|
MOZ_ASSERT(_retval);
|
|
|
|
|
|
|
|
RefPtr<Request> request = new Request(aPrincipal);
|
|
|
|
|
|
|
|
PersistParams params;
|
|
|
|
|
|
|
|
nsresult rv =
|
|
|
|
CheckedPrincipalToPrincipalInfo(aPrincipal, params.principalInfo());
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2016-08-25 05:19:31 +03:00
|
|
|
|
|
|
|
rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2019-08-22 23:51:09 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::Estimate(nsIPrincipal* aPrincipal,
|
|
|
|
nsIQuotaRequest** _retval) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(aPrincipal);
|
|
|
|
|
|
|
|
RefPtr<Request> request = new Request(aPrincipal);
|
|
|
|
|
|
|
|
EstimateParams params;
|
|
|
|
|
|
|
|
nsresult rv =
|
|
|
|
CheckedPrincipalToPrincipalInfo(aPrincipal, params.principalInfo());
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2019-08-22 23:51:09 +03:00
|
|
|
|
|
|
|
rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2019-03-20 20:54:08 +03:00
|
|
|
NS_IMETHODIMP
|
2020-02-22 04:03:26 +03:00
|
|
|
QuotaManagerService::ListOrigins(nsIQuotaRequest** _retval) {
|
2019-03-20 20:54:08 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2020-02-22 04:03:26 +03:00
|
|
|
RefPtr<Request> request = new Request();
|
2019-03-20 20:54:08 +03:00
|
|
|
|
2019-10-02 10:57:52 +03:00
|
|
|
ListOriginsParams params;
|
2019-03-20 20:54:08 +03:00
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
RequestInfo info(request, params);
|
2019-03-20 20:54:08 +03:00
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
request.forget(_retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-11-22 12:43:55 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
QuotaManagerService::Observe(nsISupports* aSubject, const char* aTopic,
|
|
|
|
const char16_t* aData) {
|
|
|
|
MOZ_ASSERT(XRE_IsParentProcess());
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2016-06-15 13:49:04 +03:00
|
|
|
if (!strcmp(aTopic, PROFILE_BEFORE_CHANGE_QM_OBSERVER_ID)) {
|
2015-11-22 12:43:55 +03:00
|
|
|
RemoveIdleObserver();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(aTopic, OBSERVER_TOPIC_IDLE_DAILY)) {
|
|
|
|
PerformIdleMaintenance();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(aTopic, OBSERVER_TOPIC_IDLE)) {
|
2020-02-26 02:14:57 +03:00
|
|
|
IdleMaintenanceInfo info(/* aStart */ true);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(aTopic, OBSERVER_TOPIC_ACTIVE)) {
|
|
|
|
RemoveIdleObserver();
|
|
|
|
|
2020-02-26 02:14:57 +03:00
|
|
|
IdleMaintenanceInfo info(/* aStart */ false);
|
2015-11-22 12:43:55 +03:00
|
|
|
|
|
|
|
nsresult rv = InitiateRequest(info);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT_UNREACHABLE("Should never get here!");
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2016-11-29 00:22:51 +03:00
|
|
|
void QuotaManagerService::Notify(const hal::BatteryInformation& aBatteryInfo) {
|
|
|
|
// This notification is received when battery data changes. We don't need to
|
|
|
|
// deal with this notification.
|
|
|
|
}
|
|
|
|
|
2015-11-22 12:43:55 +03:00
|
|
|
nsresult QuotaManagerService::UsageRequestInfo::InitiateRequest(
|
|
|
|
QuotaChild* aActor) {
|
|
|
|
MOZ_ASSERT(aActor);
|
|
|
|
|
|
|
|
auto request = static_cast<UsageRequest*>(mRequest.get());
|
|
|
|
|
|
|
|
auto actor = new QuotaUsageRequestChild(request);
|
|
|
|
|
|
|
|
if (!aActor->SendPQuotaUsageRequestConstructor(actor, mParams)) {
|
|
|
|
request->SetError(NS_ERROR_FAILURE);
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
request->SetBackgroundActor(actor);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult QuotaManagerService::RequestInfo::InitiateRequest(QuotaChild* aActor) {
|
|
|
|
MOZ_ASSERT(aActor);
|
|
|
|
|
|
|
|
auto request = static_cast<Request*>(mRequest.get());
|
|
|
|
|
|
|
|
auto actor = new QuotaRequestChild(request);
|
|
|
|
|
|
|
|
if (!aActor->SendPQuotaRequestConstructor(actor, mParams)) {
|
|
|
|
request->SetError(NS_ERROR_FAILURE);
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult QuotaManagerService::IdleMaintenanceInfo::InitiateRequest(
|
|
|
|
QuotaChild* aActor) {
|
|
|
|
MOZ_ASSERT(aActor);
|
|
|
|
|
|
|
|
bool result;
|
|
|
|
|
|
|
|
if (mStart) {
|
|
|
|
result = aActor->SendStartIdleMaintenance();
|
|
|
|
} else {
|
|
|
|
result = aActor->SendStopIdleMaintenance();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!result) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace quota
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|