forked from Cysharp/MemoryPack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSystemTextJsonChecker.cs
213 lines (164 loc) · 4.49 KB
/
SystemTextJsonChecker.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
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace SandboxConsoleApp;
// check the System.Text.Json's constructor select rule.
// For a class, if the only constructor is a parameterized one, that constructor will be used.
// For a struct, or a class with multiple constructors, specify the one to use by applying the[JsonConstructor] attribute.
// When the attribute is not used, a public parameterless constructor is always used if present.
// MemoryPack choose class/struct as same rule.
// If has no explicit constrtucotr, use parameterless one.
// If has a one parameterless/parameterized constructor, choose it.
// If has multiple construcotrs, should apply [MemoryPackConstructor] attribute(no automatically choose one), otherwise generator error it.
// The parameter names of a parameterized constructor must match the property names.
// Matching is case-insensitive, and the constructor parameter must match the actual property name.
class SystemTextJsonChecker : ConsoleAppBase
{
//[RootCommand]
public void JsonConstructorSelector()
{
#if false
#endif
var one = JsonSerializer.Serialize(new One());
var two = JsonSerializer.Serialize(new Two(1, 2));
var three = JsonSerializer.Serialize(new Three());
var four = JsonSerializer.Serialize(new Four(1));
var five = JsonSerializer.Serialize(new Five(1, 2));
var six = JsonSerializer.Serialize(new Six(1, 2));
var seven = JsonSerializer.Serialize(new Seven(1, 2));
Console.WriteLine("---");
JsonSerializer.Deserialize<One>(one);
JsonSerializer.Deserialize<Two>(two);
// if exists parameterized one, used this
JsonSerializer.Deserialize<Three>(three);
// class exists two constructor, no.
// JsonSerializer.Deserialize<Four>(four);
// struct choosed default
JsonSerializer.Deserialize<Five>(five);
JsonSerializer.Deserialize<Six>(six);
// choosed [JsonContructor](multiple JsonConstructor no)
JsonSerializer.Deserialize<Seven>(seven);
}
[RootCommand]
public void PrivateSerialization()
{
// private field/property can not annnotate JsonInclude
var v = JsonSerializer.Serialize(new PrivateOK(99, 100)
{
PublicField = 1000,
PublicProp = 9999
});
Console.WriteLine(v);
}
}
public class One
{
public One()
{
Console.WriteLine("Called One");
}
}
public class Two
{
public int X { get; }
public int Y { get; }
public Two(int x, int y)
{
Console.WriteLine("Called Two");
this.X = x;
this.Y = y;
}
}
public class Three
{
public int X { get; }
public int Y { get; }
public Three()
{
Console.WriteLine("Called Three One");
}
public Three(int x, int y)
{
Console.WriteLine("Called Three Two");
this.X = x;
this.Y = y;
}
}
public class Four
{
public int X { get; }
public int Y { get; }
public Four(int x)
{
Console.WriteLine("Called Four Single");
this.X = x;
}
public Four(int x, int y)
{
Console.WriteLine("Called Four Two");
this.X = x;
this.Y = y;
}
}
public struct Five
{
public int X { get; }
public int Y { get; }
public Five(int x, int y)
{
Console.WriteLine("Called Five");
this.X = x;
this.Y = y;
}
}
public struct Six
{
public int X { get; }
public int Y { get; }
public Six()
{
}
public Six(int x, int y)
{
Console.WriteLine("Called Six");
this.X = x;
this.Y = y;
}
}
public struct Seven
{
public int X { get; }
public int Y { get; }
public Seven()
{
}
[JsonConstructor]
public Seven(int x, int y)
{
Console.WriteLine("Called Six");
this.X = x;
this.Y = y;
}
}
public class PrivateOK
{
public int PublicField;
public int PublicProp { get; set; }
//[JsonInclude]
//private int privateField;
[JsonInclude]
public int PrivateGetter { private get; set; }
[JsonInclude]
public int PrivateSetter { get; }
// [JsonInclude]
// int PrivateBoth { get; set; }
public PrivateOK(int privateSetter, int privateBoth)
{
this.PrivateSetter = privateSetter;
// this.PrivateBoth = privateBoth;
}
}