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
|
/*
* Copyright (C) 2014 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 THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
* HOLDER OR 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.
*/
// DO NOT EDIT THIS FILE. It is automatically generated from generate-enums-with-same-base-name.json
// by the script: JavaScriptCore/replay/scripts/CodeGeneratorReplayInputs.py
#include "config.h"
#include "generate-enums-with-same-base-name.json-TestReplayInputs.h"
#if ENABLE(WEB_REPLAY)
#include "InternalNamespaceImplIncludeDummy.h"
#include <platform/ExternalNamespaceImplIncludeDummy.h>
namespace Test {
FormCombo::FormCombo(PlatformEvent1::Type eventType1, PlatformEvent2::Type eventType2, FormData1::Type formType1, FormData2::Type formType2)
: NondeterministicInput<FormCombo>()
, m_eventType1(eventType1)
, m_eventType2(eventType2)
, m_formType1(formType1)
, m_formType2(formType2)
{
}
FormCombo::~FormCombo()
{
}
} // namespace Test
namespace JSC {
const AtomicString& InputTraits<Test::FormCombo>::type()
{
static NeverDestroyed<const AtomicString> type("FormCombo", AtomicString::ConstructFromLiteral);
return type;
}
void InputTraits<Test::FormCombo>::encode(EncodedValue& encodedValue, const Test::FormCombo& input)
{
encodedValue.put<PlatformEvent1::Type>(ASCIILiteral("eventType1"), input.eventType1());
encodedValue.put<PlatformEvent2::Type>(ASCIILiteral("eventType2"), input.eventType2());
encodedValue.put<WebCore::FormData1::Type>(ASCIILiteral("formType1"), input.formType1());
encodedValue.put<WebCore::FormData2::Type>(ASCIILiteral("formType2"), input.formType2());
}
bool InputTraits<Test::FormCombo>::decode(EncodedValue& encodedValue, std::unique_ptr<Test::FormCombo>& input)
{
PlatformEvent1::Type eventType1;
if (!encodedValue.get<PlatformEvent1::Type>(ASCIILiteral("eventType1"), eventType1))
return false;
PlatformEvent2::Type eventType2;
if (!encodedValue.get<PlatformEvent2::Type>(ASCIILiteral("eventType2"), eventType2))
return false;
WebCore::FormData1::Type formType1;
if (!encodedValue.get<WebCore::FormData1::Type>(ASCIILiteral("formType1"), formType1))
return false;
WebCore::FormData2::Type formType2;
if (!encodedValue.get<WebCore::FormData2::Type>(ASCIILiteral("formType2"), formType2))
return false;
input = std::make_unique<Test::FormCombo>(eventType1, eventType2, formType1, formType2);
return true;
}
EncodedValue EncodingTraits<WebCore::FormData1::Type>::encodeValue(const WebCore::FormData1::Type& enumValue)
{
EncodedValue encodedValue = EncodedValue::createArray();
if (enumValue & WebCore::FormData1::Text) {
encodedValue.append<String>(ASCIILiteral("Text"));
if (enumValue == WebCore::FormData1::Text)
return encodedValue;
}
if (enumValue & WebCore::FormData1::Blob) {
encodedValue.append<String>(ASCIILiteral("Blob"));
if (enumValue == WebCore::FormData1::Blob)
return encodedValue;
}
return encodedValue;
}
bool EncodingTraits<WebCore::FormData1::Type>::decodeValue(EncodedValue& encodedValue, WebCore::FormData1::Type& enumValue)
{
Vector<String> enumStrings;
if (!EncodingTraits<Vector<String>>::decodeValue(encodedValue, enumStrings))
return false;
for (String enumString : enumStrings) {
if (enumString == "Text")
enumValue = static_cast<WebCore::FormData1::Type>(enumValue | WebCore::FormData1::Text);
if (enumString == "Blob")
enumValue = static_cast<WebCore::FormData1::Type>(enumValue | WebCore::FormData1::Blob);
}
return true;
}
EncodedValue EncodingTraits<WebCore::FormData2::Type>::encodeValue(const WebCore::FormData2::Type& enumValue)
{
switch (enumValue) {
case WebCore::FormData2::Type::Text: return EncodedValue::createString("Text");
case WebCore::FormData2::Type::Blob: return EncodedValue::createString("Blob");
default: ASSERT_NOT_REACHED(); return EncodedValue::createString("Error!");
}
}
bool EncodingTraits<WebCore::FormData2::Type>::decodeValue(EncodedValue& encodedValue, WebCore::FormData2::Type& enumValue)
{
String enumString = encodedValue.convertTo<String>();
if (enumString == "Text") {
enumValue = WebCore::FormData2::Type::Text;
return true;
}
if (enumString == "Blob") {
enumValue = WebCore::FormData2::Type::Blob;
return true;
}
return false;
}
EncodedValue EncodingTraits<PlatformEvent1::Type>::encodeValue(const PlatformEvent1::Type& enumValue)
{
EncodedValue encodedValue = EncodedValue::createArray();
if (enumValue & PlatformEvent1::Mouse) {
encodedValue.append<String>(ASCIILiteral("Mouse"));
if (enumValue == PlatformEvent1::Mouse)
return encodedValue;
}
if (enumValue & PlatformEvent1::Keyboard) {
encodedValue.append<String>(ASCIILiteral("Keyboard"));
if (enumValue == PlatformEvent1::Keyboard)
return encodedValue;
}
return encodedValue;
}
bool EncodingTraits<PlatformEvent1::Type>::decodeValue(EncodedValue& encodedValue, PlatformEvent1::Type& enumValue)
{
Vector<String> enumStrings;
if (!EncodingTraits<Vector<String>>::decodeValue(encodedValue, enumStrings))
return false;
for (String enumString : enumStrings) {
if (enumString == "Mouse")
enumValue = static_cast<PlatformEvent1::Type>(enumValue | PlatformEvent1::Mouse);
if (enumString == "Keyboard")
enumValue = static_cast<PlatformEvent1::Type>(enumValue | PlatformEvent1::Keyboard);
}
return true;
}
EncodedValue EncodingTraits<PlatformEvent2::Type>::encodeValue(const PlatformEvent2::Type& enumValue)
{
switch (enumValue) {
case PlatformEvent2::Type::Mouse: return EncodedValue::createString("Mouse");
case PlatformEvent2::Type::Keyboard: return EncodedValue::createString("Keyboard");
default: ASSERT_NOT_REACHED(); return EncodedValue::createString("Error!");
}
}
bool EncodingTraits<PlatformEvent2::Type>::decodeValue(EncodedValue& encodedValue, PlatformEvent2::Type& enumValue)
{
String enumString = encodedValue.convertTo<String>();
if (enumString == "Mouse") {
enumValue = PlatformEvent2::Type::Mouse;
return true;
}
if (enumString == "Keyboard") {
enumValue = PlatformEvent2::Type::Keyboard;
return true;
}
return false;
}
} // namespace JSC
#endif // ENABLE(WEB_REPLAY)
|