diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /dom/webtransport/shared | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/webtransport/shared')
-rw-r--r-- | dom/webtransport/shared/PWebTransport.ipdl | 96 | ||||
-rw-r--r-- | dom/webtransport/shared/WebTransportLog.cpp | 13 | ||||
-rw-r--r-- | dom/webtransport/shared/WebTransportLog.h | 25 | ||||
-rw-r--r-- | dom/webtransport/shared/moz.build | 21 |
4 files changed, 155 insertions, 0 deletions
diff --git a/dom/webtransport/shared/PWebTransport.ipdl b/dom/webtransport/shared/PWebTransport.ipdl new file mode 100644 index 0000000000..56033ec189 --- /dev/null +++ b/dom/webtransport/shared/PWebTransport.ipdl @@ -0,0 +1,96 @@ +/* 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 PBackgroundSharedTypes; + +[RefCounted] using class mozilla::ipc::DataPipeReceiver from "mozilla/ipc/DataPipe.h"; +[RefCounted] using class mozilla::ipc::DataPipeSender from "mozilla/ipc/DataPipe.h"; +using mozilla::TimeStamp from "mozilla/TimeStamp.h"; + +namespace mozilla { +namespace dom { + +struct UnidirectionalStream { + uint64_t streamId; + nullable DataPipeSender outStream; +}; + +union UnidirectionalStreamResponse { + nsresult; + UnidirectionalStream; +}; + +struct BidirectionalStream { + uint64_t streamId; + nullable DataPipeReceiver inStream; + nullable DataPipeSender outStream; +}; + +union BidirectionalStreamResponse { + nsresult; + BidirectionalStream; +}; + +struct ResetError { + nsresult error; +}; + +struct StopSendingError { + nsresult error; +}; + +union StreamResetOrStopSendingError { + ResetError; + StopSendingError; +}; + +async protocol PWebTransport +{ + parent: + /** + * TODO: documentation + */ + async Close(uint32_t code, nsCString reason); + async CreateUnidirectionalStream(int64_t? sendOrder) + returns(UnidirectionalStreamResponse response); + async CreateBidirectionalStream(int64_t? sendOrder) + returns(BidirectionalStreamResponse response); + + /** + * IPC for sending webtransport datagrams + * @param expirationTime time at which the datagram expires + * @param data represents the datagram to be transferred + */ + async OutgoingDatagram(uint8_t[] data, TimeStamp expirationTime) + returns(nsresult response); + + /** + * Get the maximum supported datagram size from necko stack + */ + async GetMaxDatagramSize() + returns(uint64_t maxDatagramSize); + + child: + + async IncomingUnidirectionalStream(uint64_t streamId, nullable DataPipeReceiver receive); + async IncomingBidirectionalStream(uint64_t streamId, nullable DataPipeReceiver receive, nullable DataPipeSender send); + + /** + * IPC for receiving webtransport datagrams + * @param receivedTime is the time at which the parent received the datagram + * @param data is the datagram received + */ + async IncomingDatagram(uint8_t[] data, TimeStamp receivedTime); + + async RemoteClosed(bool cleanly, uint32_t code, nsCString reason); + + async OnStreamResetOrStopSending(uint64_t streamId, + StreamResetOrStopSendingError error); + + async CloseAll() + returns(nsresult rv); +}; + +} // namespace dom +} // namespace mozilla diff --git a/dom/webtransport/shared/WebTransportLog.cpp b/dom/webtransport/shared/WebTransportLog.cpp new file mode 100644 index 0000000000..0193921fec --- /dev/null +++ b/dom/webtransport/shared/WebTransportLog.cpp @@ -0,0 +1,13 @@ +/* -*- 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/. */ + +#include "WebTransportLog.h" + +namespace mozilla { + +LazyLogModule gWebTransportLog("WebTransport"); + +} diff --git a/dom/webtransport/shared/WebTransportLog.h b/dom/webtransport/shared/WebTransportLog.h new file mode 100644 index 0000000000..5bd6da29bd --- /dev/null +++ b/dom/webtransport/shared/WebTransportLog.h @@ -0,0 +1,25 @@ +/* -*- 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 DOM_WEBTRANSPORT_SHARED_WEBTRANSPORTLOG_H_ +#define DOM_WEBTRANSPORT_SHARED_WEBTRANSPORTLOG_H_ + +#include "mozilla/Logging.h" + +namespace mozilla { +extern LazyLogModule gWebTransportLog; +} + +#define LOG(args) \ + MOZ_LOG(mozilla::gWebTransportLog, mozilla::LogLevel::Debug, args) + +#define LOG_VERBOSE(args) \ + MOZ_LOG(mozilla::gWebTransportLog, mozilla::LogLevel::Verbose, args) + +#define LOG_ENABLED() \ + MOZ_LOG_TEST(mozilla::gWebTransportLog, mozilla::LogLevel::Debug) + +#endif // DOM_WEBTRANSPORT_SHARED_WEBTRANSPORTLOG_H diff --git a/dom/webtransport/shared/moz.build b/dom/webtransport/shared/moz.build new file mode 100644 index 0000000000..2992b7dbeb --- /dev/null +++ b/dom/webtransport/shared/moz.build @@ -0,0 +1,21 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# 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/. + +EXPORTS.mozilla.dom += [ + "WebTransportLog.h", +] + +UNIFIED_SOURCES += [ + "WebTransportLog.cpp", +] + +FINAL_LIBRARY = "xul" + +IPDL_SOURCES += [ + "PWebTransport.ipdl", +] + +include("/ipc/chromium/chromium-config.mozbuild") |