forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocalValue.cs
178 lines (141 loc) · 6.77 KB
/
LocalValue.cs
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
// <copyright file="LocalValue.cs" company="Selenium Committers">
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
// </copyright>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text.Json.Serialization;
namespace OpenQA.Selenium.BiDi.Modules.Script;
[JsonPolymorphic(TypeDiscriminatorPropertyName = "type")]
[JsonDerivedType(typeof(NumberLocalValue), "number")]
[JsonDerivedType(typeof(StringLocalValue), "string")]
[JsonDerivedType(typeof(NullLocalValue), "null")]
[JsonDerivedType(typeof(UndefinedLocalValue), "undefined")]
[JsonDerivedType(typeof(BooleanLocalValue), "boolean")]
[JsonDerivedType(typeof(BigIntLocalValue), "bigint")]
[JsonDerivedType(typeof(ChannelLocalValue), "channel")]
[JsonDerivedType(typeof(ArrayLocalValue), "array")]
[JsonDerivedType(typeof(DateLocalValue), "date")]
[JsonDerivedType(typeof(MapLocalValue), "map")]
[JsonDerivedType(typeof(ObjectLocalValue), "object")]
[JsonDerivedType(typeof(RegExpLocalValue), "regexp")]
[JsonDerivedType(typeof(SetLocalValue), "set")]
public abstract record LocalValue
{
public static implicit operator LocalValue(bool? value) { return value is bool b ? new BooleanLocalValue(b) : new NullLocalValue(); }
public static implicit operator LocalValue(int? value) { return value is int i ? new NumberLocalValue(i) : new NullLocalValue(); }
public static implicit operator LocalValue(double? value) { return value is double d ? new NumberLocalValue(d) : new NullLocalValue(); }
public static implicit operator LocalValue(string? value) { return value is null ? new NullLocalValue() : new StringLocalValue(value); }
// TODO: Extend converting from types
public static LocalValue ConvertFrom(object? value)
{
switch (value)
{
case LocalValue localValue:
return localValue;
case null:
return new NullLocalValue();
case bool b:
return new BooleanLocalValue(b);
case int i:
return new NumberLocalValue(i);
case double d:
return new NumberLocalValue(d);
case long l:
return new NumberLocalValue(l);
case DateTime dt:
return new DateLocalValue(dt.ToString("o"));
case BigInteger bigInt:
return new BigIntLocalValue(bigInt.ToString());
case string str:
return new StringLocalValue(str);
case IDictionary<string, string?> dictionary:
{
var bidiObject = new List<List<LocalValue>>(dictionary.Count);
foreach (var item in dictionary)
{
bidiObject.Add([new StringLocalValue(item.Key), ConvertFrom(item.Value)]);
}
return new ObjectLocalValue(bidiObject);
}
case IDictionary<string, object?> dictionary:
{
var bidiObject = new List<List<LocalValue>>(dictionary.Count);
foreach (var item in dictionary)
{
bidiObject.Add([new StringLocalValue(item.Key), ConvertFrom(item.Value)]);
}
return new ObjectLocalValue(bidiObject);
}
case IDictionary<int, object?> dictionary:
{
var bidiObject = new List<List<LocalValue>>(dictionary.Count);
foreach (var item in dictionary)
{
bidiObject.Add([ConvertFrom(item.Key), ConvertFrom(item.Value)]);
}
return new MapLocalValue(bidiObject);
}
case IEnumerable<object?> list:
return new ArrayLocalValue(list.Select(ConvertFrom).ToList());
case object:
{
const System.Reflection.BindingFlags Flags = System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance;
var properties = value.GetType().GetProperties(Flags);
var values = new List<List<LocalValue>>(properties.Length);
foreach (var property in properties)
{
object? propertyValue;
try
{
propertyValue = property.GetValue(value);
}
catch (Exception ex)
{
throw new BiDiException($"Could not retrieve property {property.Name} from {property.DeclaringType}", ex);
}
values.Add([property.Name, ConvertFrom(propertyValue)]);
}
return new ObjectLocalValue(values);
}
}
}
}
public abstract record PrimitiveProtocolLocalValue : LocalValue;
public record NumberLocalValue(double Value) : PrimitiveProtocolLocalValue
{
public static explicit operator NumberLocalValue(double n) => new NumberLocalValue(n);
}
public record StringLocalValue(string Value) : PrimitiveProtocolLocalValue;
public record NullLocalValue : PrimitiveProtocolLocalValue;
public record UndefinedLocalValue : PrimitiveProtocolLocalValue;
public record BooleanLocalValue(bool Value) : PrimitiveProtocolLocalValue;
public record BigIntLocalValue(string Value) : PrimitiveProtocolLocalValue;
public record ChannelLocalValue(ChannelProperties Value) : LocalValue
{
// TODO: Revise why we need it
[JsonInclude]
internal string type = "channel";
}
public record ArrayLocalValue(IEnumerable<LocalValue> Value) : LocalValue;
public record DateLocalValue(string Value) : LocalValue;
public record MapLocalValue(IEnumerable<IEnumerable<LocalValue>> Value) : LocalValue;
public record ObjectLocalValue(IEnumerable<IEnumerable<LocalValue>> Value) : LocalValue;
public record RegExpLocalValue(RegExpValue Value) : LocalValue;
public record SetLocalValue(IEnumerable<LocalValue> Value) : LocalValue;