2015-03-02 05:20:00 -08: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
|
|
|
|
|
2015-04-15 00:55:53 -07:00
|
|
|
#include "mozilla/dom/PromiseNativeHandler.h"
|
2015-03-02 05:20:00 -08:00
|
|
|
#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 {
|
|
|
|
|
|
|
|
class CacheChild;
|
2015-04-15 00:55:53 -07:00
|
|
|
class PCacheRequest;
|
|
|
|
class PCacheResponse;
|
|
|
|
class PCacheResponseOrVoid;
|
2015-03-02 05:20:00 -08:00
|
|
|
|
2015-04-15 00:55:53 -07:00
|
|
|
class Cache final : public PromiseNativeHandler
|
2015-03-21 23:52:12 -07:00
|
|
|
, public nsWrapperCache
|
|
|
|
, public TypeUtils
|
2015-03-02 05:20:00 -08: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>
|
|
|
|
Add(const RequestOrUSVString& aRequest, ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise>
|
|
|
|
AddAll(const Sequence<OwningRequestOrUSVString>& aRequests,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
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 09:28:04 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aContext, JS::Handle<JSObject*> aGivenProto) override;
|
2015-03-02 05:20:00 -08:00
|
|
|
|
|
|
|
// Called when CacheChild actor is being destroyed
|
|
|
|
void DestroyInternal(CacheChild* aActor);
|
|
|
|
|
2015-04-15 00:55:53 -07:00
|
|
|
// methods forwarded from CacheChild
|
|
|
|
void RecvMatchResponse(RequestId aRequestId, nsresult aRv,
|
|
|
|
const PCacheResponseOrVoid& aResponse);
|
|
|
|
void RecvMatchAllResponse(RequestId aRequestId, nsresult aRv,
|
|
|
|
const nsTArray<PCacheResponse>& aResponses);
|
2015-04-06 20:56:44 -07:00
|
|
|
void RecvAddAllResponse(RequestId aRequestId,
|
|
|
|
const mozilla::ErrorResult& aError);
|
2015-04-15 00:55:53 -07:00
|
|
|
void RecvPutResponse(RequestId aRequestId, nsresult aRv);
|
|
|
|
|
|
|
|
void RecvDeleteResponse(RequestId aRequestId, nsresult aRv,
|
|
|
|
bool aSuccess);
|
|
|
|
void RecvKeysResponse(RequestId aRequestId, nsresult aRv,
|
|
|
|
const nsTArray<PCacheRequest>& aRequests);
|
|
|
|
|
2015-03-02 05:20:00 -08:00
|
|
|
// TypeUtils methods
|
|
|
|
virtual nsIGlobalObject*
|
2015-03-21 09:28:04 -07:00
|
|
|
GetGlobalObject() const override;
|
2015-03-02 05:20:00 -08:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void AssertOwningThread() const override;
|
2015-03-02 05:20:00 -08:00
|
|
|
#endif
|
|
|
|
|
2015-03-21 23:52:12 -07:00
|
|
|
virtual CachePushStreamChild*
|
|
|
|
CreatePushStream(nsIAsyncInputStream* aStream) override;
|
|
|
|
|
2015-04-15 00:55:53 -07:00
|
|
|
// PromiseNativeHandler methods
|
|
|
|
virtual void
|
|
|
|
ResolvedCallback(JSContext* aCx, JS::Handle<JS::Value> aValue) override;
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
RejectedCallback(JSContext* aCx, JS::Handle<JS::Value> aValue) override;
|
|
|
|
|
2015-03-02 05:20:00 -08:00
|
|
|
private:
|
|
|
|
~Cache();
|
|
|
|
|
2015-04-15 00:55:53 -07:00
|
|
|
// Called when we're destroyed or CCed.
|
|
|
|
void DisconnectFromActor();
|
|
|
|
|
|
|
|
// TODO: Replace with actor-per-request model during refactor (bug 1110485)
|
|
|
|
RequestId AddRequestPromise(Promise* aPromise, ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise> RemoveRequestPromise(RequestId aRequestId);
|
2015-03-02 05:20:00 -08:00
|
|
|
|
|
|
|
nsCOMPtr<nsIGlobalObject> mGlobal;
|
|
|
|
CacheChild* mActor;
|
2015-04-15 00:55:53 -07:00
|
|
|
nsTArray<nsRefPtr<Promise>> mRequestPromises;
|
2015-03-02 05:20:00 -08:00
|
|
|
|
|
|
|
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
|