Autogenerated with:
cp dom/.clang-format netwerk/ && mach format netwerk/**.{cpp,h,mm}
Manual fixes:
* mozurl/cbindgen.toml (including headers earlier)
* NetlinkService.h (forward-declaring a necessary struct)
* nsIWebSocketChannel.idl (forward-declaring OriginAttributes).
* nsAsyncRedirectVerifyHelper.h (forward-declaring nsIEventTarget)
* CapsuleEncoder.h gets a missing Capsule forward-decl.
* WebSocketConnectionBase.h gets some missing includes.
* HappyEyeballsConnectionAttempt gets some missing includes.
* nsUDPSocket missed nsSocketTransportService2.h for OnSocketThread().
* HttpInfo missed a forward declaration.
* MockHttpAuth missed an nsCOMPtr include.
* nsHttpAuthManager missed a forward declaration for nsIHttpAuthCache.
* WebTransportSessionProxy was using mozilla::Mutex in a member without
including it.
* win32 fixes to keep include order because windows headers suck.
* nsInputStreamPump needs an Atomics.h include.
Differential Revision: https://phabricator.services.mozilla.com/D311696
98 lines
3.2 KiB
C++
98 lines
3.2 KiB
C++
/* 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/. */
|
|
|
|
#include "SocketProcessBridgeParent.h"
|
|
|
|
#include "SocketProcessLogging.h"
|
|
|
|
#ifdef MOZ_WEBRTC
|
|
# include "mozilla/dom/MediaTransportParent.h"
|
|
#endif
|
|
#include "SocketProcessChild.h"
|
|
#include "mozilla/ipc/BackgroundParent.h"
|
|
#include "mozilla/ipc/Endpoint.h"
|
|
#include "mozilla/net/BackgroundDataBridgeParent.h"
|
|
#include "nsThreadUtils.h"
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
SocketProcessBridgeParent::SocketProcessBridgeParent(ProcessId aId) : mId(aId) {
|
|
LOG(
|
|
("CONSTRUCT SocketProcessBridgeParent::SocketProcessBridgeParent "
|
|
"mId=%" PRIPID "\n",
|
|
mId));
|
|
}
|
|
|
|
SocketProcessBridgeParent::~SocketProcessBridgeParent() {
|
|
LOG(("DESTRUCT SocketProcessBridgeParent::SocketProcessBridgeParent\n"));
|
|
}
|
|
|
|
mozilla::ipc::IPCResult SocketProcessBridgeParent::RecvInitBackgroundDataBridge(
|
|
mozilla::ipc::Endpoint<PBackgroundDataBridgeParent>&& aEndpoint,
|
|
uint64_t aChannelID) {
|
|
LOG(("SocketProcessBridgeParent::RecvInitBackgroundDataBridge\n"));
|
|
|
|
nsCOMPtr<nsISerialEventTarget> transportQueue;
|
|
if (NS_FAILED(NS_CreateBackgroundTaskQueue("BackgroundDataBridge",
|
|
getter_AddRefs(transportQueue)))) {
|
|
return IPC_FAIL(this, "NS_CreateBackgroundTaskQueue failed");
|
|
}
|
|
|
|
if (!aEndpoint.IsValid()) {
|
|
return IPC_FAIL(this, "Invalid endpoint");
|
|
}
|
|
|
|
transportQueue->Dispatch(NS_NewRunnableFunction(
|
|
"BackgroundDataBridgeParent::Bind",
|
|
[endpoint = std::move(aEndpoint), aChannelID]() mutable {
|
|
RefPtr<BackgroundDataBridgeParent> actor =
|
|
BackgroundDataBridgeParent::Create(aChannelID);
|
|
endpoint.Bind(actor);
|
|
}));
|
|
return IPC_OK();
|
|
}
|
|
|
|
#ifdef MOZ_WEBRTC
|
|
mozilla::ipc::IPCResult SocketProcessBridgeParent::RecvInitMediaTransport(
|
|
mozilla::ipc::Endpoint<mozilla::dom::PMediaTransportParent>&& aEndpoint) {
|
|
LOG(("SocketProcessBridgeParent::RecvInitMediaTransport\n"));
|
|
|
|
if (!aEndpoint.IsValid()) {
|
|
return IPC_FAIL(this, "Invalid endpoint");
|
|
}
|
|
|
|
if (!mMediaTransportTaskQueue) {
|
|
nsCOMPtr<nsISerialEventTarget> transportQueue;
|
|
if (NS_FAILED(NS_CreateBackgroundTaskQueue(
|
|
"MediaTransport", getter_AddRefs(transportQueue)))) {
|
|
return IPC_FAIL(this, "NS_CreateBackgroundTaskQueue failed");
|
|
}
|
|
|
|
mMediaTransportTaskQueue = std::move(transportQueue);
|
|
}
|
|
|
|
mMediaTransportTaskQueue->Dispatch(NS_NewRunnableFunction(
|
|
"BackgroundDataBridgeParent::Bind",
|
|
[endpoint = std::move(aEndpoint)]() mutable {
|
|
RefPtr<MediaTransportParent> actor = new MediaTransportParent();
|
|
endpoint.Bind(actor);
|
|
}));
|
|
return IPC_OK();
|
|
}
|
|
#endif
|
|
|
|
void SocketProcessBridgeParent::ActorDestroy(ActorDestroyReason aReason) {
|
|
// See bug 1846478. We might be able to remove this dispatch.
|
|
GetCurrentSerialEventTarget()->Dispatch(NS_NewRunnableFunction(
|
|
"SocketProcessBridgeParent::ActorDestroy", [id = mId] {
|
|
if (SocketProcessChild* child = SocketProcessChild::GetSingleton()) {
|
|
child->DestroySocketProcessBridgeParent(id);
|
|
}
|
|
}));
|
|
}
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|