This repository has been archived by the owner on Aug 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBackgroundChildImpl.h
318 lines (216 loc) · 11.1 KB
/
BackgroundChildImpl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/* -*- 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_ipc_backgroundchildimpl_h__
#define mozilla_ipc_backgroundchildimpl_h__
#include "mozilla/Attributes.h"
#include "mozilla/ipc/InputStreamUtils.h"
#include "mozilla/ipc/PBackgroundChild.h"
#include "nsRefPtrHashtable.h"
#include "nsAutoPtr.h"
namespace mozilla {
namespace dom {
class IDBFileHandle;
namespace indexedDB {
class ThreadLocal;
} // namespace indexedDB
} // namespace dom
namespace ipc {
// Instances of this class should never be created directly. This class is meant
// to be inherited in BackgroundImpl.
class BackgroundChildImpl : public PBackgroundChild,
public ChildToParentStreamActorManager {
public:
class ThreadLocal;
// Get the ThreadLocal for the current thread if
// BackgroundChild::GetOrCreateForCurrentThread() has been called and true was
// returned (e.g. a valid PBackgroundChild actor has been created or is in the
// process of being created). Otherwise this function returns null.
// This functions is implemented in BackgroundImpl.cpp.
static ThreadLocal* GetThreadLocalForCurrentThread();
PChildToParentStreamChild* SendPChildToParentStreamConstructor(
PChildToParentStreamChild* aActor) override;
PFileDescriptorSetChild* SendPFileDescriptorSetConstructor(
const FileDescriptor& aFD) override;
protected:
BackgroundChildImpl();
virtual ~BackgroundChildImpl();
virtual void ProcessingError(Result aCode, const char* aReason) override;
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
virtual PBackgroundTestChild* AllocPBackgroundTestChild(
const nsCString& aTestArg) override;
virtual bool DeallocPBackgroundTestChild(
PBackgroundTestChild* aActor) override;
virtual PBackgroundIDBFactoryChild* AllocPBackgroundIDBFactoryChild(
const LoggingInfo& aLoggingInfo) override;
virtual bool DeallocPBackgroundIDBFactoryChild(
PBackgroundIDBFactoryChild* aActor) override;
virtual PBackgroundIndexedDBUtilsChild* AllocPBackgroundIndexedDBUtilsChild()
override;
virtual bool DeallocPBackgroundIndexedDBUtilsChild(
PBackgroundIndexedDBUtilsChild* aActor) override;
virtual PBackgroundSDBConnectionChild* AllocPBackgroundSDBConnectionChild(
const PrincipalInfo& aPrincipalInfo) override;
virtual bool DeallocPBackgroundSDBConnectionChild(
PBackgroundSDBConnectionChild* aActor) override;
virtual PBackgroundLSDatabaseChild* AllocPBackgroundLSDatabaseChild(
const PrincipalInfo& aPrincipalInfo, const uint32_t& aPrivateBrowsingId,
const uint64_t& aDatastoreId) override;
virtual bool DeallocPBackgroundLSDatabaseChild(
PBackgroundLSDatabaseChild* aActor) override;
virtual PBackgroundLSObserverChild* AllocPBackgroundLSObserverChild(
const uint64_t& aObserverId) override;
virtual bool DeallocPBackgroundLSObserverChild(
PBackgroundLSObserverChild* aActor) override;
virtual PBackgroundLSRequestChild* AllocPBackgroundLSRequestChild(
const LSRequestParams& aParams) override;
virtual bool DeallocPBackgroundLSRequestChild(
PBackgroundLSRequestChild* aActor) override;
virtual PBackgroundLSSimpleRequestChild* AllocPBackgroundLSSimpleRequestChild(
const LSSimpleRequestParams& aParams) override;
virtual bool DeallocPBackgroundLSSimpleRequestChild(
PBackgroundLSSimpleRequestChild* aActor) override;
virtual PBackgroundLocalStorageCacheChild*
AllocPBackgroundLocalStorageCacheChild(
const PrincipalInfo& aPrincipalInfo, const nsCString& aOriginKey,
const uint32_t& aPrivateBrowsingId) override;
virtual bool DeallocPBackgroundLocalStorageCacheChild(
PBackgroundLocalStorageCacheChild* aActor) override;
virtual PBackgroundStorageChild* AllocPBackgroundStorageChild(
const nsString& aProfilePath) override;
virtual bool DeallocPBackgroundStorageChild(
PBackgroundStorageChild* aActor) override;
virtual PPendingIPCBlobChild* AllocPPendingIPCBlobChild(
const IPCBlob& aBlob) override;
virtual bool DeallocPPendingIPCBlobChild(
PPendingIPCBlobChild* aActor) override;
virtual already_AddRefed<PIPCBlobInputStreamChild>
AllocPIPCBlobInputStreamChild(const nsID& aID,
const uint64_t& aSize) override;
virtual PTemporaryIPCBlobChild* AllocPTemporaryIPCBlobChild() override;
virtual bool DeallocPTemporaryIPCBlobChild(
PTemporaryIPCBlobChild* aActor) override;
virtual PFileCreatorChild* AllocPFileCreatorChild(
const nsString& aFullPath, const nsString& aType, const nsString& aName,
const Maybe<int64_t>& aLastModified, const bool& aExistenceCheck,
const bool& aIsFromNsIFile) override;
virtual bool DeallocPFileCreatorChild(PFileCreatorChild* aActor) override;
virtual mozilla::dom::PRemoteWorkerChild* AllocPRemoteWorkerChild(
const RemoteWorkerData& aData) override;
virtual mozilla::ipc::IPCResult RecvPRemoteWorkerConstructor(
PRemoteWorkerChild* aActor, const RemoteWorkerData& aData) override;
virtual bool DeallocPRemoteWorkerChild(
mozilla::dom::PRemoteWorkerChild* aActor) override;
virtual mozilla::dom::PRemoteWorkerControllerChild*
AllocPRemoteWorkerControllerChild(
const mozilla::dom::RemoteWorkerData& aRemoteWorkerData) override;
virtual bool DeallocPRemoteWorkerControllerChild(
mozilla::dom::PRemoteWorkerControllerChild* aActor) override;
virtual mozilla::dom::PRemoteWorkerServiceChild*
AllocPRemoteWorkerServiceChild() override;
virtual bool DeallocPRemoteWorkerServiceChild(
mozilla::dom::PRemoteWorkerServiceChild* aActor) override;
virtual mozilla::dom::PSharedWorkerChild* AllocPSharedWorkerChild(
const mozilla::dom::RemoteWorkerData& aData, const uint64_t& aWindowID,
const mozilla::dom::MessagePortIdentifier& aPortIdentifier) override;
virtual bool DeallocPSharedWorkerChild(
mozilla::dom::PSharedWorkerChild* aActor) override;
virtual PFileDescriptorSetChild* AllocPFileDescriptorSetChild(
const FileDescriptor& aFileDescriptor) override;
virtual bool DeallocPFileDescriptorSetChild(
PFileDescriptorSetChild* aActor) override;
virtual PCamerasChild* AllocPCamerasChild() override;
virtual bool DeallocPCamerasChild(PCamerasChild* aActor) override;
virtual PVsyncChild* AllocPVsyncChild() override;
virtual bool DeallocPVsyncChild(PVsyncChild* aActor) override;
virtual PUDPSocketChild* AllocPUDPSocketChild(
const Maybe<PrincipalInfo>& aPrincipalInfo,
const nsCString& aFilter) override;
virtual bool DeallocPUDPSocketChild(PUDPSocketChild* aActor) override;
virtual PBroadcastChannelChild* AllocPBroadcastChannelChild(
const PrincipalInfo& aPrincipalInfo, const nsCString& aOrigin,
const nsString& aChannel) override;
virtual bool DeallocPBroadcastChannelChild(
PBroadcastChannelChild* aActor) override;
virtual PServiceWorkerManagerChild* AllocPServiceWorkerManagerChild()
override;
virtual bool DeallocPServiceWorkerManagerChild(
PServiceWorkerManagerChild* aActor) override;
virtual dom::cache::PCacheStorageChild* AllocPCacheStorageChild(
const dom::cache::Namespace& aNamespace,
const PrincipalInfo& aPrincipalInfo) override;
virtual bool DeallocPCacheStorageChild(
dom::cache::PCacheStorageChild* aActor) override;
virtual dom::cache::PCacheChild* AllocPCacheChild() override;
virtual bool DeallocPCacheChild(dom::cache::PCacheChild* aActor) override;
virtual dom::cache::PCacheStreamControlChild* AllocPCacheStreamControlChild()
override;
virtual bool DeallocPCacheStreamControlChild(
dom::cache::PCacheStreamControlChild* aActor) override;
virtual PMessagePortChild* AllocPMessagePortChild(
const nsID& aUUID, const nsID& aDestinationUUID,
const uint32_t& aSequenceID) override;
virtual bool DeallocPMessagePortChild(PMessagePortChild* aActor) override;
virtual PChildToParentStreamChild* AllocPChildToParentStreamChild() override;
virtual bool DeallocPChildToParentStreamChild(
PChildToParentStreamChild* aActor) override;
virtual PParentToChildStreamChild* AllocPParentToChildStreamChild() override;
virtual bool DeallocPParentToChildStreamChild(
PParentToChildStreamChild* aActor) override;
virtual PQuotaChild* AllocPQuotaChild() override;
virtual bool DeallocPQuotaChild(PQuotaChild* aActor) override;
// Gamepad API Background IPC
virtual PGamepadEventChannelChild* AllocPGamepadEventChannelChild() override;
virtual bool DeallocPGamepadEventChannelChild(
PGamepadEventChannelChild* aActor) override;
virtual PGamepadTestChannelChild* AllocPGamepadTestChannelChild() override;
virtual bool DeallocPGamepadTestChannelChild(
PGamepadTestChannelChild* aActor) override;
virtual PClientManagerChild* AllocPClientManagerChild() override;
virtual bool DeallocPClientManagerChild(PClientManagerChild* aActor) override;
#ifdef EARLY_BETA_OR_EARLIER
virtual void OnChannelReceivedMessage(const Message& aMsg) override;
#endif
virtual PWebAuthnTransactionChild* AllocPWebAuthnTransactionChild() override;
virtual bool DeallocPWebAuthnTransactionChild(
PWebAuthnTransactionChild* aActor) override;
virtual PMIDIPortChild* AllocPMIDIPortChild(
const MIDIPortInfo& aPortInfo, const bool& aSysexEnabled) override;
virtual bool DeallocPMIDIPortChild(PMIDIPortChild*) override;
virtual PMIDIManagerChild* AllocPMIDIManagerChild() override;
virtual bool DeallocPMIDIManagerChild(PMIDIManagerChild*) override;
virtual PServiceWorkerChild* AllocPServiceWorkerChild(
const IPCServiceWorkerDescriptor&) override;
virtual bool DeallocPServiceWorkerChild(PServiceWorkerChild*) override;
virtual PServiceWorkerContainerChild* AllocPServiceWorkerContainerChild()
override;
virtual bool DeallocPServiceWorkerContainerChild(
PServiceWorkerContainerChild*) override;
virtual PServiceWorkerRegistrationChild* AllocPServiceWorkerRegistrationChild(
const IPCServiceWorkerRegistrationDescriptor&) override;
virtual bool DeallocPServiceWorkerRegistrationChild(
PServiceWorkerRegistrationChild*) override;
virtual PEndpointForReportChild* AllocPEndpointForReportChild(
const nsString& aGroupName, const PrincipalInfo& aPrincipalInfo) override;
virtual bool DeallocPEndpointForReportChild(
PEndpointForReportChild* aActor) override;
virtual dom::PMediaTransportChild* AllocPMediaTransportChild() override;
virtual bool DeallocPMediaTransportChild(
dom::PMediaTransportChild* aActor) override;
};
class BackgroundChildImpl::ThreadLocal final {
friend class nsAutoPtr<ThreadLocal>;
public:
nsAutoPtr<mozilla::dom::indexedDB::ThreadLocal> mIndexedDBThreadLocal;
mozilla::dom::IDBFileHandle* mCurrentFileHandle;
public:
ThreadLocal();
private:
// Only destroyed by nsAutoPtr<ThreadLocal>.
~ThreadLocal();
};
} // namespace ipc
} // namespace mozilla
#endif // mozilla_ipc_backgroundchildimpl_h__