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
|
/*
* Copyright (C) 2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <wtf/ArgumentCoder.h>
#include <wtf/OptionSet.h>
#include <wtf/Ref.h>
#if ENABLE(BOOL_ENUM)
namespace EnumNamespace { enum class BoolEnumType : bool; }
#endif
enum class EnumWithoutNamespace : uint8_t;
#if ENABLE(UINT16_ENUM)
namespace EnumNamespace { enum class EnumType : uint16_t; }
#endif
enum class OptionSetEnumFirstCondition : uint32_t;
enum class OptionSetEnumLastCondition : uint32_t;
enum class OptionSetEnumAllCondition : uint32_t;
#if ENABLE(TEST_FEATURE)
namespace Namespace::Subnamespace { struct StructName; }
#endif
namespace Namespace { class ReturnRefClass; }
namespace Namespace { struct EmptyConstructorStruct; }
namespace Namespace { class EmptyConstructorWithIf; }
class WithoutNamespace;
class WithoutNamespaceWithAttributes;
namespace WebCore { class InheritsFrom; }
namespace WebCore { class InheritanceGrandchild; }
namespace WTF { class Seconds; }
namespace WTF { class CreateUsingClass; }
namespace WebCore {
template<typename, typename> class ScrollSnapOffsetsInfo;
using FloatBoxExtent = ScrollSnapOffsetsInfo<float, double>;
}
struct SoftLinkedMember;
namespace WebCore { class TimingFunction; }
#if ENABLE(TEST_FEATURE)
namespace Namespace { class ConditionalCommonClass; }
#endif
namespace Namespace { class CommonClass; }
namespace Namespace { class AnotherCommonClass; }
namespace WebCore { class MoveOnlyBaseClass; }
namespace WebCore { class MoveOnlyDerivedClass; }
namespace WebKit { class PlatformClass; }
namespace WebKit { class CustomEncoded; }
namespace WebKit { class LayerProperties; }
namespace IPC {
class Decoder;
class Encoder;
class StreamConnectionEncoder;
#if ENABLE(TEST_FEATURE)
template<> struct ArgumentCoder<Namespace::Subnamespace::StructName> {
static void encode(Encoder&, const Namespace::Subnamespace::StructName&);
static void encode(OtherEncoder&, const Namespace::Subnamespace::StructName&);
static std::optional<Namespace::Subnamespace::StructName> decode(Decoder&);
};
#endif
template<> struct ArgumentCoder<Namespace::ReturnRefClass> {
static void encode(Encoder&, const Namespace::ReturnRefClass&);
static std::optional<Ref<Namespace::ReturnRefClass>> decode(Decoder&);
};
template<> struct ArgumentCoder<Namespace::EmptyConstructorStruct> {
static void encode(Encoder&, const Namespace::EmptyConstructorStruct&);
static std::optional<Namespace::EmptyConstructorStruct> decode(Decoder&);
};
template<> struct ArgumentCoder<Namespace::EmptyConstructorWithIf> {
static void encode(Encoder&, const Namespace::EmptyConstructorWithIf&);
static std::optional<Namespace::EmptyConstructorWithIf> decode(Decoder&);
};
template<> struct ArgumentCoder<WithoutNamespace> {
static void encode(Encoder&, const WithoutNamespace&);
static std::optional<WithoutNamespace> decode(Decoder&);
};
template<> struct ArgumentCoder<WithoutNamespaceWithAttributes> {
static void encode(Encoder&, const WithoutNamespaceWithAttributes&);
static void encode(OtherEncoder&, const WithoutNamespaceWithAttributes&);
static std::optional<WithoutNamespaceWithAttributes> decode(Decoder&);
};
template<> struct ArgumentCoder<WebCore::InheritsFrom> {
static void encode(Encoder&, const WebCore::InheritsFrom&);
static std::optional<WebCore::InheritsFrom> decode(Decoder&);
};
template<> struct ArgumentCoder<WebCore::InheritanceGrandchild> {
static void encode(Encoder&, const WebCore::InheritanceGrandchild&);
static std::optional<WebCore::InheritanceGrandchild> decode(Decoder&);
};
template<> struct ArgumentCoder<WTF::Seconds> {
static void encode(Encoder&, const WTF::Seconds&);
static std::optional<WTF::Seconds> decode(Decoder&);
};
template<> struct ArgumentCoder<WTF::CreateUsingClass> {
static void encode(Encoder&, const WTF::CreateUsingClass&);
static std::optional<WTF::CreateUsingClass> decode(Decoder&);
};
template<> struct ArgumentCoder<WebCore::FloatBoxExtent> {
static void encode(Encoder&, const WebCore::FloatBoxExtent&);
static std::optional<WebCore::FloatBoxExtent> decode(Decoder&);
};
template<> struct ArgumentCoder<SoftLinkedMember> {
static void encode(Encoder&, const SoftLinkedMember&);
static std::optional<SoftLinkedMember> decode(Decoder&);
};
template<> struct ArgumentCoder<WebCore::TimingFunction> {
static void encode(Encoder&, const WebCore::TimingFunction&);
static std::optional<Ref<WebCore::TimingFunction>> decode(Decoder&);
};
#if ENABLE(TEST_FEATURE)
template<> struct ArgumentCoder<Namespace::ConditionalCommonClass> {
static void encode(Encoder&, const Namespace::ConditionalCommonClass&);
static std::optional<Namespace::ConditionalCommonClass> decode(Decoder&);
};
#endif
template<> struct ArgumentCoder<Namespace::CommonClass> {
static void encode(Encoder&, const Namespace::CommonClass&);
static std::optional<Namespace::CommonClass> decode(Decoder&);
};
template<> struct ArgumentCoder<Namespace::AnotherCommonClass> {
static void encode(Encoder&, const Namespace::AnotherCommonClass&);
static std::optional<Ref<Namespace::AnotherCommonClass>> decode(Decoder&);
};
template<> struct ArgumentCoder<WebCore::MoveOnlyBaseClass> {
static void encode(Encoder&, WebCore::MoveOnlyBaseClass&&);
static std::optional<WebCore::MoveOnlyBaseClass> decode(Decoder&);
};
template<> struct ArgumentCoder<WebCore::MoveOnlyDerivedClass> {
static void encode(Encoder&, WebCore::MoveOnlyDerivedClass&&);
static std::optional<WebCore::MoveOnlyDerivedClass> decode(Decoder&);
};
template<> struct ArgumentCoder<WebKit::PlatformClass> {
static void encode(Encoder&, const WebKit::PlatformClass&);
static std::optional<WebKit::PlatformClass> decode(Decoder&);
};
template<> struct ArgumentCoder<WebKit::CustomEncoded> {
static void encode(Encoder&, const WebKit::CustomEncoded&);
static std::optional<WebKit::CustomEncoded> decode(Decoder&);
};
template<> struct ArgumentCoder<WebKit::LayerProperties> {
static void encode(Encoder&, const WebKit::LayerProperties&);
static std::optional<WebKit::LayerProperties> decode(Decoder&);
};
} // namespace IPC
namespace WTF {
template<> bool isValidEnum<EnumWithoutNamespace, void>(uint8_t);
#if ENABLE(UINT16_ENUM)
template<> bool isValidEnum<EnumNamespace::EnumType, void>(uint16_t);
#endif
template<> bool isValidOptionSet<OptionSetEnumFirstCondition>(OptionSet<OptionSetEnumFirstCondition>);
template<> bool isValidOptionSet<OptionSetEnumLastCondition>(OptionSet<OptionSetEnumLastCondition>);
template<> bool isValidOptionSet<OptionSetEnumAllCondition>(OptionSet<OptionSetEnumAllCondition>);
} // namespace WTF
|