forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocalValue.cs
117 lines (95 loc) · 4.14 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
// <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.Collections.Generic;
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(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(int value) { return new NumberLocalValue(value); }
public static implicit operator LocalValue(string value) { return new StringLocalValue(value); }
// TODO: Extend converting from types
public static LocalValue ConvertFrom(object? value)
{
switch (value)
{
case LocalValue:
return (LocalValue)value;
case null:
return new NullLocalValue();
case int:
return (int)value;
case string:
return (string)value;
case object:
{
var type = value.GetType();
var properties = type.GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance);
List<List<LocalValue>> values = [];
foreach (var property in properties)
{
values.Add([property.Name, ConvertFrom(property.GetValue(value))]);
}
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 ChannelLocalValue(ChannelLocalValue.ChannelProperties Value) : LocalValue
{
// TODO: Revise why we need it
[JsonInclude]
internal string type = "channel";
public record ChannelProperties(Channel Channel)
{
public SerializationOptions? SerializationOptions { get; set; }
public ResultOwnership? Ownership { get; set; }
}
}
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(RegExpLocalValue.RegExpValue Value) : LocalValue
{
public record RegExpValue(string Pattern)
{
public string? Flags { get; set; }
}
}
public record SetLocalValue(IEnumerable<LocalValue> Value) : LocalValue;