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 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
|
/* -*- 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 __IPC_GLUE_IPCMESSAGEUTILSSPECIALIZATIONS_H__
#define __IPC_GLUE_IPCMESSAGEUTILSSPECIALIZATIONS_H__
#include <cstdint>
#include <cstdlib>
#include <limits>
#include <set>
#include <type_traits>
#include <unordered_map>
#include <utility>
#include <vector>
#include "chrome/common/ipc_message.h"
#include "chrome/common/ipc_message_utils.h"
#include "ipc/EnumSerializer.h"
#include "ipc/IPCMessageUtils.h"
#include "mozilla/Assertions.h"
#include "mozilla/BitSet.h"
#include "mozilla/EnumSet.h"
#include "mozilla/EnumTypeTraits.h"
#include "mozilla/IntegerRange.h"
#include "mozilla/Maybe.h"
#include "mozilla/TimeStamp.h"
#include "mozilla/UniquePtr.h"
#include "mozilla/Vector.h"
#include "mozilla/dom/ipc/StructuredCloneData.h"
#include "mozilla/dom/UserActivation.h"
#include "gfxPlatform.h"
#include "NonCustomCSSPropertyId.h"
#include "nsContentPermissionHelper.h"
#include "nsDebug.h"
#include "nsIContentPolicy.h"
#include "nsID.h"
#include "nsILoadInfo.h"
#include "nsIThread.h"
#include "nsLiteralString.h"
#include "nsNetUtil.h"
#include "nsString.h"
#include "nsTArray.h"
#include "nsTHashSet.h"
// XXX Includes that are only required by implementations which could be moved
// to the cpp file.
#include "base/string_util.h" // for StringPrintf
#ifdef _MSC_VER
# pragma warning(disable : 4800)
#endif
namespace mozilla {
template <typename... Ts>
class Variant;
namespace detail {
template <typename... Ts>
struct VariantTag;
}
} // namespace mozilla
namespace mozilla::dom {
template <typename T>
class Optional;
}
class nsAtom;
namespace IPC {
template <class T>
struct ParamTraits<nsTSubstring<T>> {
typedef nsTSubstring<T> paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
bool isVoid = aParam.IsVoid();
aWriter->WriteBool(isVoid);
if (isVoid) {
// represents a nullptr pointer
return;
}
WriteSequenceParam<const T&>(aWriter, aParam.BeginReading(),
aParam.Length());
}
static bool Read(MessageReader* aReader, paramType* aResult) {
bool isVoid;
if (!aReader->ReadBool(&isVoid)) {
return false;
}
if (isVoid) {
aResult->SetIsVoid(true);
return true;
}
return ReadSequenceParam<T>(aReader, [&](uint32_t aLength) -> T* {
T* data = nullptr;
aResult->GetMutableData(&data, aLength);
return data;
});
}
};
template <class T>
struct ParamTraits<nsTString<T>> : ParamTraits<nsTSubstring<T>> {};
template <class T>
struct ParamTraits<nsTLiteralString<T>> : ParamTraits<nsTSubstring<T>> {};
template <class T, size_t N>
struct ParamTraits<nsTAutoStringN<T, N>> : ParamTraits<nsTSubstring<T>> {};
template <class T>
struct ParamTraits<nsTDependentString<T>> : ParamTraits<nsTSubstring<T>> {};
// Key type must be a type with ParamTraits, a default constructor and a move
// constructor.
template <
typename KeyClass,
typename ConstructableKeyType = typename std::remove_const<
typename std::remove_reference<typename KeyClass::KeyType>::type>::type>
struct ParamTraitsforHashSet {
typedef nsTBaseHashSet<KeyClass> paramType;
using KeyType = typename KeyClass::KeyType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
uint32_t count = aParam.Count();
WriteParam(aWriter, count);
for (const auto& key : aParam) {
WriteParam(aWriter, key);
}
}
static bool Read(MessageReader* aReader, paramType* aResult) {
uint32_t count;
if (!ReadParam(aReader, &count)) {
return false;
}
paramType table(count);
for (uint32_t i = 0; i < count; ++i) {
ConstructableKeyType key;
if (!ReadParam(aReader, &key)) {
return false;
}
table.Insert(std::move(key));
}
*aResult = std::move(table);
return true;
}
};
template <typename KeyClass>
struct ParamTraits<nsTBaseHashSet<KeyClass>> : ParamTraitsforHashSet<KeyClass> {
};
template <>
struct ParamTraits<nsTBaseHashSet<nsStringHashKey>>
: ParamTraitsforHashSet<nsStringHashKey, nsString> {};
template <typename E>
struct ParamTraits<nsTArray<E>> {
typedef nsTArray<E> paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
WriteSequenceParam<const E&>(aWriter, aParam.Elements(), aParam.Length());
}
static void Write(MessageWriter* aWriter, paramType&& aParam) {
WriteSequenceParam<E&&>(aWriter, aParam.Elements(), aParam.Length());
}
static bool Read(MessageReader* aReader, paramType* aResult) {
return ReadSequenceParam<E>(aReader, [&](uint32_t aLength) {
if constexpr (std::is_trivially_default_constructible_v<E>) {
return aResult->AppendElements(aLength);
} else {
aResult->SetCapacity(aLength);
return mozilla::Some(MakeBackInserter(*aResult));
}
});
}
};
template <typename E>
struct ParamTraits<CopyableTArray<E>> : ParamTraits<nsTArray<E>> {};
template <typename E>
struct ParamTraits<FallibleTArray<E>> {
typedef FallibleTArray<E> paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
WriteSequenceParam<const E&>(aWriter, aParam.Elements(), aParam.Length());
}
static void Write(MessageWriter* aWriter, paramType&& aParam) {
WriteSequenceParam<E&&>(aWriter, aParam.Elements(), aParam.Length());
}
static bool Read(MessageReader* aReader, paramType* aResult) {
return ReadSequenceParam<E>(aReader, [&](uint32_t aLength) {
if constexpr (std::is_trivially_default_constructible_v<E>) {
return aResult->AppendElements(aLength, mozilla::fallible);
} else {
if (!aResult->SetCapacity(aLength, mozilla::fallible)) {
return mozilla::Maybe<BackInserter>{};
}
return mozilla::Some(BackInserter{.mArray = aResult});
}
});
}
private:
struct BackInserter {
using iterator_category = std::output_iterator_tag;
using value_type = void;
using difference_type = void;
using pointer = void;
using reference = void;
struct Proxy {
paramType& mArray;
template <typename U>
void operator=(U&& aValue) {
// This won't fail because we've reserved capacity earlier.
MOZ_ALWAYS_TRUE(mArray.AppendElement(aValue, mozilla::fallible));
}
};
Proxy operator*() { return Proxy{.mArray = *mArray}; }
BackInserter& operator++() { return *this; }
BackInserter& operator++(int) { return *this; }
paramType* mArray = nullptr;
};
};
template <typename E, size_t N>
struct ParamTraits<AutoTArray<E, N>> : ParamTraits<nsTArray<E>> {
typedef AutoTArray<E, N> paramType;
};
template <typename E, size_t N>
struct ParamTraits<CopyableAutoTArray<E, N>> : ParamTraits<AutoTArray<E, N>> {};
template <typename T>
struct ParamTraits<mozilla::dom::Sequence<T>> : ParamTraits<FallibleTArray<T>> {
};
template <typename E, size_t N, typename AP>
struct ParamTraits<mozilla::Vector<E, N, AP>> {
typedef mozilla::Vector<E, N, AP> paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
WriteSequenceParam<const E&>(aWriter, aParam.Elements(), aParam.Length());
}
static void Write(MessageWriter* aWriter, paramType&& aParam) {
WriteSequenceParam<E&&>(aWriter, aParam.Elements(), aParam.Length());
}
static bool Read(MessageReader* aReader, paramType* aResult) {
return ReadSequenceParam<E>(aReader, [&](uint32_t aLength) -> E* {
if (!aResult->resize(aLength)) {
// So that OOM failure shows up as OOM crash instead of IPC FatalError.
NS_ABORT_OOM(aLength * sizeof(E));
}
return aResult->begin();
});
}
};
template <typename E>
struct ParamTraits<std::vector<E>> {
typedef std::vector<E> paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
WriteSequenceParam<const E&>(aWriter, aParam.data(), aParam.size());
}
static void Write(MessageWriter* aWriter, paramType&& aParam) {
WriteSequenceParam<E&&>(aWriter, aParam.data(), aParam.size());
}
static bool Read(MessageReader* aReader, paramType* aResult) {
return ReadSequenceParam<E>(aReader, [&](uint32_t aLength) {
if constexpr (std::is_trivially_default_constructible_v<E>) {
aResult->resize(aLength);
return aResult->data();
} else {
aResult->reserve(aLength);
return mozilla::Some(std::back_inserter(*aResult));
}
});
}
};
template <typename V, typename Compare, typename Allocator>
struct ParamTraits<std::set<V, Compare, Allocator>> final {
using T = std::set<V, Compare, Allocator>;
static void Write(MessageWriter* const writer, const T& in) {
WriteParam(writer, in.size());
for (const auto& value : in) {
WriteParam(writer, value);
}
}
static bool Read(MessageReader* const reader, T* const out) {
size_t size = 0;
if (!ReadParam(reader, &size)) return false;
T set;
for (const auto i : mozilla::IntegerRange(size)) {
V value;
(void)i;
if (!ReadParam(reader, &(value))) {
return false;
}
set.insert(std::move(value));
}
*out = std::move(set);
return true;
}
};
template <typename K, typename V>
struct ParamTraits<std::unordered_map<K, V>> final {
using T = std::unordered_map<K, V>;
static void Write(MessageWriter* const writer, const T& in) {
WriteParam(writer, in.size());
for (const auto& pair : in) {
WriteParam(writer, pair.first);
WriteParam(writer, pair.second);
}
}
static bool Read(MessageReader* const reader, T* const out) {
size_t size = 0;
if (!ReadParam(reader, &size)) return false;
T map;
map.reserve(size);
for (const auto i : mozilla::IntegerRange(size)) {
std::pair<K, V> pair;
(void)i;
if (!ReadParam(reader, &(pair.first)) ||
!ReadParam(reader, &(pair.second))) {
return false;
}
map.insert(std::move(pair));
}
*out = std::move(map);
return true;
}
};
template <>
struct ParamTraits<float> {
typedef float paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
aWriter->WriteBytes(&aParam, sizeof(paramType));
}
static bool Read(MessageReader* aReader, paramType* aResult) {
return aReader->ReadBytesInto(aResult, sizeof(*aResult));
}
};
template <>
struct ParamTraits<NonCustomCSSPropertyId>
: public ContiguousEnumSerializer<
NonCustomCSSPropertyId, eCSSProperty_FIRST, eCSSProperty_INVALID> {};
template <>
struct ParamTraits<nsID> {
typedef nsID paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
WriteParam(aWriter, aParam.m0);
WriteParam(aWriter, aParam.m1);
WriteParam(aWriter, aParam.m2);
for (unsigned int i = 0; i < std::size(aParam.m3); i++) {
WriteParam(aWriter, aParam.m3[i]);
}
}
static bool Read(MessageReader* aReader, paramType* aResult) {
if (!ReadParam(aReader, &(aResult->m0)) ||
!ReadParam(aReader, &(aResult->m1)) ||
!ReadParam(aReader, &(aResult->m2)))
return false;
for (unsigned int i = 0; i < std::size(aResult->m3); i++)
if (!ReadParam(aReader, &(aResult->m3[i]))) return false;
return true;
}
};
template <>
struct ParamTraits<nsContentPolicyType>
: public ContiguousEnumSerializer<nsContentPolicyType,
nsIContentPolicy::TYPE_INVALID,
nsIContentPolicy::TYPE_END> {};
template <>
struct ParamTraits<mozilla::TimeDuration> {
typedef mozilla::TimeDuration paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
WriteParam(aWriter, aParam.mValue);
}
static bool Read(MessageReader* aReader, paramType* aResult) {
return ReadParam(aReader, &aResult->mValue);
};
};
template <>
struct ParamTraits<mozilla::TimeStamp> {
typedef mozilla::TimeStamp paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
WriteParam(aWriter, aParam.mValue);
}
static bool Read(MessageReader* aReader, paramType* aResult) {
return ReadParam(aReader, &aResult->mValue);
};
};
template <>
struct ParamTraits<mozilla::dom::ipc::StructuredCloneData> {
typedef mozilla::dom::ipc::StructuredCloneData paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
aParam.WriteIPCParams(aWriter);
}
static bool Read(MessageReader* aReader, paramType* aResult) {
return aResult->ReadIPCParams(aReader);
}
};
template <class T>
struct ParamTraits<mozilla::Maybe<T>> {
typedef mozilla::Maybe<T> paramType;
static void Write(MessageWriter* writer, const paramType& param) {
if (param.isSome()) {
WriteParam(writer, true);
WriteParam(writer, param.ref());
} else {
WriteParam(writer, false);
}
}
static void Write(MessageWriter* writer, paramType&& param) {
if (param.isSome()) {
WriteParam(writer, true);
WriteParam(writer, std::move(param.ref()));
} else {
WriteParam(writer, false);
}
}
static bool Read(MessageReader* reader, paramType* result) {
bool isSome;
if (!ReadParam(reader, &isSome)) {
return false;
}
if (isSome) {
mozilla::Maybe<T> tmp = ReadParam<T>(reader).TakeMaybe();
if (!tmp) {
return false;
}
*result = std::move(tmp);
} else {
*result = mozilla::Nothing();
}
return true;
}
};
template <typename T, typename U>
struct ParamTraits<mozilla::EnumSet<T, U>> {
typedef mozilla::EnumSet<T, U> paramType;
typedef U serializedType;
static void Write(MessageWriter* writer, const paramType& param) {
MOZ_RELEASE_ASSERT(IsLegalValue(param.serialize()));
WriteParam(writer, param.serialize());
}
static bool Read(MessageReader* reader, paramType* result) {
serializedType tmp;
if (ReadParam(reader, &tmp)) {
if (IsLegalValue(tmp)) {
result->deserialize(tmp);
return true;
}
}
return false;
}
static constexpr size_t kUnderlyingWidth = [] {
if constexpr (std::numeric_limits<serializedType>::is_specialized) {
return std::numeric_limits<serializedType>::digits;
} else {
return serializedType().size(); // for std::bitset<N>
}
}();
static constexpr serializedType AllEnumBits() {
return ~serializedType(0) >>
(kUnderlyingWidth - (mozilla::MaxEnumValue<T>::value + 1));
}
static constexpr bool IsLegalValue(const serializedType value) {
static_assert(mozilla::MaxEnumValue<T>::value < kUnderlyingWidth,
"Enum max value is not in the range!");
static_assert(
std::is_unsigned<decltype(mozilla::MaxEnumValue<T>::value)>::value,
"Type of MaxEnumValue<T>::value specialization should be unsigned!");
return (value & AllEnumBits()) == value;
}
};
template <class... Ts>
struct ParamTraits<mozilla::Variant<Ts...>> {
typedef mozilla::Variant<Ts...> paramType;
using Tag = typename mozilla::detail::VariantTag<Ts...>::Type;
static void Write(MessageWriter* writer, const paramType& param) {
WriteParam(writer, param.tag);
param.match([writer](const auto& t) { WriteParam(writer, t); });
}
// Because VariantReader is a nested struct, we need the dummy template
// parameter to avoid making VariantReader<0> an explicit specialization,
// which is not allowed for a nested class template
template <size_t N, typename dummy = void>
struct VariantReader {
using Next = VariantReader<N - 1>;
// Since the VariantReader specializations start at N , we need to
// subtract one to look at N - 1, the first valid tag. This means our
// comparisons are off by 1. If we get to N = 0 then we have failed to
// find a match to the tag.
static constexpr size_t Idx = N - 1;
using T = typename mozilla::detail::Nth<Idx, Ts...>::Type;
static ReadResult<paramType> Read(MessageReader* reader, Tag tag) {
if (tag == Idx) {
auto p = ReadParam<T>(reader);
if (p) {
return ReadResult<paramType>(
std::in_place, mozilla::VariantIndex<Idx>{}, std::move(*p));
}
return {};
} else {
return Next::Read(reader, tag);
}
}
}; // VariantReader<N>
// Since we are conditioning on tag = N - 1 in the preceding specialization,
// if we get to `VariantReader<0, dummy>` we have failed to find
// a matching tag.
template <typename dummy>
struct VariantReader<0, dummy> {
static ReadResult<paramType> Read(MessageReader* reader, Tag tag) {
return {};
}
};
static ReadResult<paramType> Read(MessageReader* reader) {
Tag tag;
if (ReadParam(reader, &tag)) {
return VariantReader<sizeof...(Ts)>::Read(reader, tag);
}
return {};
}
};
template <typename T>
struct ParamTraits<mozilla::dom::Optional<T>> {
typedef mozilla::dom::Optional<T> paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
if (aParam.WasPassed()) {
WriteParam(aWriter, true);
WriteParam(aWriter, aParam.Value());
return;
}
WriteParam(aWriter, false);
}
static bool Read(MessageReader* aReader, paramType* aResult) {
bool wasPassed = false;
if (!ReadParam(aReader, &wasPassed)) {
return false;
}
aResult->Reset();
if (wasPassed) {
if (!ReadParam(aReader, &aResult->Construct())) {
return false;
}
}
return true;
}
};
template <>
struct ParamTraits<nsAtom*> {
typedef nsAtom paramType;
static void Write(MessageWriter* aWriter, const paramType* aParam);
static bool Read(MessageReader* aReader, RefPtr<paramType>* aResult);
};
struct CrossOriginOpenerPolicyValidator {
using IntegralType =
std::underlying_type_t<nsILoadInfo::CrossOriginOpenerPolicy>;
static bool IsLegalValue(const IntegralType e) {
return AreIntegralValuesEqual(e, nsILoadInfo::OPENER_POLICY_UNSAFE_NONE) ||
AreIntegralValuesEqual(e, nsILoadInfo::OPENER_POLICY_SAME_ORIGIN) ||
AreIntegralValuesEqual(
e, nsILoadInfo::OPENER_POLICY_SAME_ORIGIN_ALLOW_POPUPS) ||
AreIntegralValuesEqual(
e, nsILoadInfo::
OPENER_POLICY_SAME_ORIGIN_EMBEDDER_POLICY_REQUIRE_CORP);
}
private:
static bool AreIntegralValuesEqual(
const IntegralType aLhs,
const nsILoadInfo::CrossOriginOpenerPolicy aRhs) {
return aLhs == static_cast<IntegralType>(aRhs);
}
};
template <>
struct ParamTraits<nsILoadInfo::CrossOriginOpenerPolicy>
: EnumSerializer<nsILoadInfo::CrossOriginOpenerPolicy,
CrossOriginOpenerPolicyValidator> {};
struct CrossOriginEmbedderPolicyValidator {
using IntegralType =
std::underlying_type_t<nsILoadInfo::CrossOriginEmbedderPolicy>;
static bool IsLegalValue(const IntegralType e) {
return AreIntegralValuesEqual(e, nsILoadInfo::EMBEDDER_POLICY_NULL) ||
AreIntegralValuesEqual(e,
nsILoadInfo::EMBEDDER_POLICY_REQUIRE_CORP) ||
AreIntegralValuesEqual(e,
nsILoadInfo::EMBEDDER_POLICY_CREDENTIALLESS);
}
private:
static bool AreIntegralValuesEqual(
const IntegralType aLhs,
const nsILoadInfo::CrossOriginEmbedderPolicy aRhs) {
return aLhs == static_cast<IntegralType>(aRhs);
}
};
template <>
struct ParamTraits<nsILoadInfo::CrossOriginEmbedderPolicy>
: EnumSerializer<nsILoadInfo::CrossOriginEmbedderPolicy,
CrossOriginEmbedderPolicyValidator> {};
template <>
struct ParamTraits<nsIThread::QoSPriority>
: public ContiguousEnumSerializerInclusive<nsIThread::QoSPriority,
nsIThread::QOS_PRIORITY_NORMAL,
nsIThread::QOS_PRIORITY_LOW> {};
template <size_t N, typename Word>
struct ParamTraits<mozilla::BitSet<N, Word>> {
typedef mozilla::BitSet<N, Word> paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
for (Word word : aParam.Storage()) {
WriteParam(aWriter, word);
}
}
static bool Read(MessageReader* aReader, paramType* aResult) {
for (Word& word : aResult->Storage()) {
if (!ReadParam(aReader, &word)) {
return false;
}
}
return true;
}
};
template <typename T>
struct ParamTraits<mozilla::UniquePtr<T>> {
typedef mozilla::UniquePtr<T> paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
bool isNull = aParam == nullptr;
WriteParam(aWriter, isNull);
if (!isNull) {
WriteParam(aWriter, *aParam.get());
}
}
static bool Read(IPC::MessageReader* aReader, paramType* aResult) {
bool isNull = true;
if (!ReadParam(aReader, &isNull)) {
return false;
}
if (isNull) {
aResult->reset();
} else {
*aResult = mozilla::MakeUnique<T>();
if (!ReadParam(aReader, aResult->get())) {
return false;
}
}
return true;
}
};
template <typename... Ts>
struct ParamTraits<std::tuple<Ts...>> {
typedef std::tuple<Ts...> paramType;
template <typename U>
static void Write(IPC::MessageWriter* aWriter, U&& aParam) {
WriteInternal(aWriter, std::forward<U>(aParam),
std::index_sequence_for<Ts...>{});
}
static bool Read(IPC::MessageReader* aReader, std::tuple<Ts...>* aResult) {
return ReadInternal(aReader, *aResult, std::index_sequence_for<Ts...>{});
}
private:
template <size_t... Is>
static void WriteInternal(IPC::MessageWriter* aWriter,
const std::tuple<Ts...>& aParam,
std::index_sequence<Is...>) {
WriteParams(aWriter, std::get<Is>(aParam)...);
}
template <size_t... Is>
static void WriteInternal(IPC::MessageWriter* aWriter,
std::tuple<Ts...>&& aParam,
std::index_sequence<Is...>) {
WriteParams(aWriter, std::move(std::get<Is>(aParam))...);
}
template <size_t... Is>
static bool ReadInternal(IPC::MessageReader* aReader,
std::tuple<Ts...>& aResult,
std::index_sequence<Is...>) {
return ReadParams(aReader, std::get<Is>(aResult)...);
}
};
template <>
struct ParamTraits<mozilla::net::LinkHeader> {
typedef mozilla::net::LinkHeader paramType;
constexpr static int kNumberOfMembers = 14;
constexpr static int kSizeOfEachMember = sizeof(nsString);
constexpr static int kExpectedSizeOfParamType =
kNumberOfMembers * kSizeOfEachMember;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
static_assert(sizeof(paramType) == kExpectedSizeOfParamType,
"All members of should be written below.");
// Bug 1860565: `aParam.mAnchor` is not written.
WriteParam(aWriter, aParam.mHref);
WriteParam(aWriter, aParam.mRel);
WriteParam(aWriter, aParam.mTitle);
WriteParam(aWriter, aParam.mNonce);
WriteParam(aWriter, aParam.mIntegrity);
WriteParam(aWriter, aParam.mSrcset);
WriteParam(aWriter, aParam.mSizes);
WriteParam(aWriter, aParam.mType);
WriteParam(aWriter, aParam.mMedia);
WriteParam(aWriter, aParam.mAnchor);
WriteParam(aWriter, aParam.mCrossOrigin);
WriteParam(aWriter, aParam.mReferrerPolicy);
WriteParam(aWriter, aParam.mAs);
WriteParam(aWriter, aParam.mFetchPriority);
}
static bool Read(MessageReader* aReader, paramType* aResult) {
static_assert(sizeof(paramType) == kExpectedSizeOfParamType,
"All members of should be handled below.");
// Bug 1860565: `aParam.mAnchor` is not handled.
if (!ReadParam(aReader, &aResult->mHref)) {
return false;
}
if (!ReadParam(aReader, &aResult->mRel)) {
return false;
}
if (!ReadParam(aReader, &aResult->mTitle)) {
return false;
}
if (!ReadParam(aReader, &aResult->mNonce)) {
return false;
}
if (!ReadParam(aReader, &aResult->mIntegrity)) {
return false;
}
if (!ReadParam(aReader, &aResult->mSrcset)) {
return false;
}
if (!ReadParam(aReader, &aResult->mSizes)) {
return false;
}
if (!ReadParam(aReader, &aResult->mType)) {
return false;
}
if (!ReadParam(aReader, &aResult->mMedia)) {
return false;
}
if (!ReadParam(aReader, &aResult->mAnchor)) {
return false;
}
if (!ReadParam(aReader, &aResult->mCrossOrigin)) {
return false;
}
if (!ReadParam(aReader, &aResult->mReferrerPolicy)) {
return false;
}
if (!ReadParam(aReader, &aResult->mAs)) {
return false;
}
return ReadParam(aReader, &aResult->mFetchPriority);
};
};
template <>
struct ParamTraits<mozilla::dom::UserActivation::Modifiers> {
typedef mozilla::dom::UserActivation::Modifiers paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
WriteParam(aWriter, aParam.mModifiers);
}
static bool Read(MessageReader* aReader, paramType* aResult) {
return ReadParam(aReader, &aResult->mModifiers);
};
};
template <>
struct ParamTraits<gfxPlatform::GlobalReflowFlags>
: public BitFlagsEnumSerializer<gfxPlatform::GlobalReflowFlags,
gfxPlatform::GlobalReflowFlags::ALL_BITS> {
};
template <size_t N>
struct ParamTraits<std::bitset<N>> {
typedef std::bitset<N> paramType;
static void Write(MessageWriter* aWriter, const paramType& aParam) {
paramType mask(UINT64_MAX);
for (size_t i = 0; i < N; i += 64) {
uint64_t value = ((aParam >> i) & mask).to_ullong();
WriteParam(aWriter, value);
}
}
static bool Read(MessageReader* aReader, paramType* aResult) {
for (size_t i = 0; i < N; i += 64) {
uint64_t value = 0;
if (!ReadParam(aReader, &value)) {
return false;
}
*aResult |= std::bitset<N>(value) << i;
}
return true;
}
};
template <>
struct ParamTraits<nsILoadInfo::IPAddressSpace>
: public ContiguousEnumSerializer<nsILoadInfo::IPAddressSpace,
nsILoadInfo::IPAddressSpace::Unknown,
nsILoadInfo::IPAddressSpace::Invalid> {};
using PromptResult = mozilla::dom::ContentPermissionRequestBase::PromptResult;
template <>
struct ParamTraits<PromptResult>
: public ContiguousEnumSerializerInclusive<
PromptResult, PromptResult::Granted, PromptResult::Pending> {};
} /* namespace IPC */
#endif /* __IPC_GLUE_IPCMESSAGEUTILSSPECIALIZATIONS_H__ */
|