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
|
|
|
|
|
|
|
|
#include "mozilla/dom/PromiseNativeHandler.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 {
|
|
|
|
|
|
|
|
class CacheChild;
|
|
|
|
class PCacheRequest;
|
|
|
|
class PCacheResponse;
|
|
|
|
class PCacheResponseOrVoid;
|
|
|
|
|
|
|
|
class Cache MOZ_FINAL : public PromiseNativeHandler
|
|
|
|
, public nsWrapperCache
|
|
|
|
, public TypeUtils
|
|
|
|
{
|
|
|
|
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;
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 07:13:33 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aContext, JS::Handle<JSObject*> aGivenProto) MOZ_OVERRIDE;
|
2015-03-02 05:20:00 -08:00
|
|
|
|
|
|
|
// Called when CacheChild actor is being destroyed
|
|
|
|
void DestroyInternal(CacheChild* aActor);
|
|
|
|
|
|
|
|
// methods forwarded from CacheChild
|
|
|
|
void RecvMatchResponse(RequestId aRequestId, nsresult aRv,
|
|
|
|
const PCacheResponseOrVoid& aResponse);
|
|
|
|
void RecvMatchAllResponse(RequestId aRequestId, nsresult aRv,
|
|
|
|
const nsTArray<PCacheResponse>& aResponses);
|
|
|
|
void RecvAddAllResponse(RequestId aRequestId, nsresult aRv);
|
|
|
|
void RecvPutResponse(RequestId aRequestId, nsresult aRv);
|
|
|
|
|
|
|
|
void RecvDeleteResponse(RequestId aRequestId, nsresult aRv,
|
|
|
|
bool aSuccess);
|
|
|
|
void RecvKeysResponse(RequestId aRequestId, nsresult aRv,
|
|
|
|
const nsTArray<PCacheRequest>& aRequests);
|
|
|
|
|
|
|
|
// TypeUtils methods
|
|
|
|
virtual nsIGlobalObject*
|
|
|
|
GetGlobalObject() const MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
virtual void AssertOwningThread() const MOZ_OVERRIDE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// PromiseNativeHandler methods
|
|
|
|
virtual void
|
|
|
|
ResolvedCallback(JSContext* aCx, JS::Handle<JS::Value> aValue) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
RejectedCallback(JSContext* aCx, JS::Handle<JS::Value> aValue) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
private:
|
|
|
|
~Cache();
|
|
|
|
|
2015-03-19 12:31:02 -07:00
|
|
|
// Called when we're destroyed or CCed.
|
|
|
|
void DisconnectFromActor();
|
|
|
|
|
2015-03-02 05:20:00 -08:00
|
|
|
// TODO: Replace with actor-per-request model during refactor (bug 1110485)
|
|
|
|
RequestId AddRequestPromise(Promise* aPromise, ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise> RemoveRequestPromise(RequestId aRequestId);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIGlobalObject> mGlobal;
|
|
|
|
CacheChild* mActor;
|
|
|
|
nsTArray<nsRefPtr<Promise>> mRequestPromises;
|
|
|
|
|
|
|
|
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
|