2015-03-02 16:20:00 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_cache_Cache_h
|
|
|
|
#define mozilla_dom_cache_Cache_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/cache/Types.h"
|
|
|
|
#include "mozilla/dom/cache/TypeUtils.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
|
|
|
|
class nsIGlobalObject;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class OwningRequestOrUSVString;
|
|
|
|
class Promise;
|
|
|
|
struct CacheQueryOptions;
|
|
|
|
class RequestOrUSVString;
|
|
|
|
class Response;
|
|
|
|
template<typename T> class Optional;
|
|
|
|
template<typename T> class Sequence;
|
|
|
|
|
|
|
|
namespace cache {
|
|
|
|
|
2015-04-16 22:00:15 +03:00
|
|
|
class AutoChildOpArgs;
|
2015-03-02 16:20:00 +03:00
|
|
|
class CacheChild;
|
|
|
|
|
2015-04-16 22:00:15 +03:00
|
|
|
class Cache final : public nsISupports
|
2015-03-22 09:52:12 +03:00
|
|
|
, public nsWrapperCache
|
|
|
|
, public TypeUtils
|
2015-03-02 16:20:00 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Cache(nsIGlobalObject* aGlobal, CacheChild* aActor);
|
|
|
|
|
|
|
|
// webidl interface methods
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
Match(const RequestOrUSVString& aRequest, const CacheQueryOptions& aOptions,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
MatchAll(const Optional<RequestOrUSVString>& aRequest,
|
|
|
|
const CacheQueryOptions& aOptions, ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise>
|
2015-04-29 18:59:43 +03:00
|
|
|
Add(JSContext* aContext, const RequestOrUSVString& aRequest,
|
|
|
|
ErrorResult& aRv);
|
2015-03-02 16:20:00 +03:00
|
|
|
already_AddRefed<Promise>
|
2015-04-29 18:59:43 +03:00
|
|
|
AddAll(JSContext* aContext,
|
|
|
|
const Sequence<OwningRequestOrUSVString>& aRequests, ErrorResult& aRv);
|
2015-03-02 16:20:00 +03:00
|
|
|
already_AddRefed<Promise>
|
|
|
|
Put(const RequestOrUSVString& aRequest, Response& aResponse,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
Delete(const RequestOrUSVString& aRequest, const CacheQueryOptions& aOptions,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
Keys(const Optional<RequestOrUSVString>& aRequest,
|
|
|
|
const CacheQueryOptions& aParams, ErrorResult& aRv);
|
|
|
|
|
|
|
|
// binding methods
|
|
|
|
static bool PrefEnabled(JSContext* aCx, JSObject* aObj);
|
|
|
|
|
|
|
|
nsISupports* GetParentObject() const;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* aContext, JS::Handle<JSObject*> aGivenProto) override;
|
2015-03-02 16:20:00 +03:00
|
|
|
|
|
|
|
// Called when CacheChild actor is being destroyed
|
|
|
|
void DestroyInternal(CacheChild* aActor);
|
|
|
|
|
|
|
|
// TypeUtils methods
|
|
|
|
virtual nsIGlobalObject*
|
2015-03-21 19:28:04 +03:00
|
|
|
GetGlobalObject() const override;
|
2015-03-02 16:20:00 +03:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void AssertOwningThread() const override;
|
2015-03-02 16:20:00 +03:00
|
|
|
#endif
|
|
|
|
|
2016-05-15 20:32:09 +03:00
|
|
|
virtual mozilla::ipc::PBackgroundChild*
|
|
|
|
GetIPCManager() override;
|
2015-03-22 09:52:12 +03:00
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
private:
|
2015-04-29 18:59:43 +03:00
|
|
|
class FetchHandler;
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
~Cache();
|
|
|
|
|
2015-04-15 10:55:53 +03:00
|
|
|
// Called when we're destroyed or CCed.
|
|
|
|
void DisconnectFromActor();
|
|
|
|
|
2015-04-16 22:00:15 +03:00
|
|
|
already_AddRefed<Promise>
|
|
|
|
ExecuteOp(AutoChildOpArgs& aOpArgs, ErrorResult& aRv);
|
2015-03-02 16:20:00 +03:00
|
|
|
|
2015-04-29 18:59:43 +03:00
|
|
|
already_AddRefed<Promise>
|
2015-10-18 08:24:48 +03:00
|
|
|
AddAll(const GlobalObject& aGlobal, nsTArray<RefPtr<Request>>&& aRequestList,
|
2015-04-29 18:59:43 +03:00
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
already_AddRefed<Promise>
|
2015-10-18 08:24:48 +03:00
|
|
|
PutAll(const nsTArray<RefPtr<Request>>& aRequestList,
|
|
|
|
const nsTArray<RefPtr<Response>>& aResponseList,
|
2015-04-29 18:59:43 +03:00
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
nsCOMPtr<nsIGlobalObject> mGlobal;
|
|
|
|
CacheChild* mActor;
|
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(Cache)
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace cache
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_Cache_h
|