diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /dom/media/webrtc/WebrtcIPCTraits.h | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/media/webrtc/WebrtcIPCTraits.h')
-rw-r--r-- | dom/media/webrtc/WebrtcIPCTraits.h | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/dom/media/webrtc/WebrtcIPCTraits.h b/dom/media/webrtc/WebrtcIPCTraits.h new file mode 100644 index 0000000000..b076745608 --- /dev/null +++ b/dom/media/webrtc/WebrtcIPCTraits.h @@ -0,0 +1,89 @@ +/* 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 _WEBRTC_IPC_TRAITS_H_ +#define _WEBRTC_IPC_TRAITS_H_ + +#include "ipc/EnumSerializer.h" +#include "ipc/IPCMessageUtils.h" +#include "ipc/IPCMessageUtilsSpecializations.h" +#include "mozilla/dom/BindingDeclarations.h" +#include "mozilla/dom/RTCConfigurationBinding.h" +#include "mozilla/media/webrtc/WebrtcGlobal.h" +#include "mozilla/dom/CandidateInfo.h" +#include "mozilla/MacroForEach.h" +#include "transport/dtlsidentity.h" +#include <vector> + +namespace mozilla { +typedef std::vector<std::string> StringVector; +} + +namespace IPC { + +template <> +struct ParamTraits<mozilla::dom::OwningStringOrStringSequence> { + typedef mozilla::dom::OwningStringOrStringSequence paramType; + + // Ugh. OwningStringOrStringSequence already has this enum, but it is + // private generated code. So we have to re-create it. + enum Type { kUninitialized, kString, kStringSequence }; + + static void Write(MessageWriter* aWriter, const paramType& aParam) { + if (aParam.IsString()) { + aWriter->WriteInt16(kString); + WriteParam(aWriter, aParam.GetAsString()); + } else if (aParam.IsStringSequence()) { + aWriter->WriteInt16(kStringSequence); + WriteParam(aWriter, aParam.GetAsStringSequence()); + } else { + aWriter->WriteInt16(kUninitialized); + } + } + + static bool Read(MessageReader* aReader, paramType* aResult) { + int16_t type; + if (!aReader->ReadInt16(&type)) { + return false; + } + + switch (type) { + case kUninitialized: + aResult->Uninit(); + return true; + case kString: + return ReadParam(aReader, &aResult->SetAsString()); + case kStringSequence: + return ReadParam(aReader, &aResult->SetAsStringSequence()); + } + + return false; + } +}; + +template <typename T> +struct WebidlEnumSerializer + : public ContiguousEnumSerializer<T, T(0), T::EndGuard_> {}; + +template <> +struct ParamTraits<mozilla::dom::RTCIceCredentialType> + : public WebidlEnumSerializer<mozilla::dom::RTCIceCredentialType> {}; + +template <> +struct ParamTraits<mozilla::dom::RTCIceTransportPolicy> + : public WebidlEnumSerializer<mozilla::dom::RTCIceTransportPolicy> {}; + +DEFINE_IPC_SERIALIZER_WITH_FIELDS(mozilla::dom::RTCIceServer, mCredential, + mCredentialType, mUrl, mUrls, mUsername) + +DEFINE_IPC_SERIALIZER_WITH_FIELDS(mozilla::CandidateInfo, mCandidate, mUfrag, + mDefaultHostRtp, mDefaultPortRtp, + mDefaultHostRtcp, mDefaultPortRtcp, + mMDNSAddress, mActualAddress) + +DEFINE_IPC_SERIALIZER_WITH_FIELDS(mozilla::DtlsDigest, algorithm_, value_) + +} // namespace IPC + +#endif // _WEBRTC_IPC_TRAITS_H_ |