1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_cache_CacheChild_h
8 #define mozilla_dom_cache_CacheChild_h
10 #include "mozilla/dom/cache/ActorChild.h"
11 #include "mozilla/dom/cache/PCacheChild.h"
13 class nsIAsyncInputStream
;
14 class nsIGlobalObject
;
16 namespace mozilla::dom
{
25 class CacheChild final
: public PCacheChild
, public ActorChild
{
26 friend class PCacheChild
;
29 friend class mozilla::detail::BaseAutoLock
<CacheChild
&>;
30 using AutoLock
= mozilla::detail::BaseAutoLock
<CacheChild
&>;
34 void SetListener(Cache
* aListener
);
36 // Must be called by the associated Cache listener in its DestroyInternal()
37 // method. Also, Cache must call StartDestroyFromListener() on the actor in
38 // its destructor to trigger ActorDestroy() if it has not been called yet.
41 void ExecuteOp(nsIGlobalObject
* aGlobal
, Promise
* aPromise
,
42 nsISupports
* aParent
, const CacheOpArgs
& aArgs
);
44 // Our parent Listener object has gone out of scope and is being destroyed.
45 void StartDestroyFromListener();
46 void NoteDeletedActor() override
;
48 NS_INLINE_DECL_REFCOUNTING(CacheChild
, override
);
53 void DestroyInternal();
55 // WorkerRef is trying to destroy due to worker shutdown.
56 virtual void StartDestroy() override
;
58 // PCacheChild methods
59 virtual void ActorDestroy(ActorDestroyReason aReason
) override
;
61 already_AddRefed
<PCacheOpChild
> AllocPCacheOpChild(
62 const CacheOpArgs
& aOpArgs
);
65 inline uint32_t NumChildActors() { return ManagedPCacheOpChild().Count(); }
67 // Methods used to temporarily force the actor alive. Only called from
73 // Use a weak ref so actor does not hold DOM object alive past content use.
74 // The Cache object must call ClearListener() to null this before its
76 Cache
* MOZ_NON_OWNING_REF mListener
;
82 } // namespace mozilla::dom
84 #endif // mozilla_dom_cache_CacheChild_h