tangxu
2025-02-25 f6e6b9e57c9a5a5a4e49161337a784b11916197f
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using DPumpHydr.WinFrmUI.WenSkin.Json.Utilities;
 
namespace DPumpHydr.WinFrmUI.WenSkin.Json.Linq
{
    /// <summary>
    /// Represents a JSON property.
    /// </summary>
    public class JProperty : JContainer
    {
        private class JPropertyList : IList<JToken>, ICollection<JToken>, IEnumerable<JToken>, IEnumerable
        {
            internal JToken _token;
 
            public int Count
            {
                get
                {
                    if (_token == null)
                    {
                        return 0;
                    }
                    return 1;
                }
            }
 
            public bool IsReadOnly => false;
 
            public JToken this[int index]
            {
                get
                {
                    if (index != 0)
                    {
                        return null;
                    }
                    return _token;
                }
                set
                {
                    if (index == 0)
                    {
                        _token = value;
                    }
                }
            }
 
            public IEnumerator<JToken> GetEnumerator()
            {
                if (_token != null)
                {
                    yield return _token;
                }
            }
 
            IEnumerator IEnumerable.GetEnumerator()
            {
                return GetEnumerator();
            }
 
            public void Add(JToken item)
            {
                _token = item;
            }
 
            public void Clear()
            {
                _token = null;
            }
 
            public bool Contains(JToken item)
            {
                return _token == item;
            }
 
            public void CopyTo(JToken[] array, int arrayIndex)
            {
                if (_token != null)
                {
                    array[arrayIndex] = _token;
                }
            }
 
            public bool Remove(JToken item)
            {
                if (_token == item)
                {
                    _token = null;
                    return true;
                }
                return false;
            }
 
            public int IndexOf(JToken item)
            {
                if (_token != item)
                {
                    return -1;
                }
                return 0;
            }
 
            public void Insert(int index, JToken item)
            {
                if (index == 0)
                {
                    _token = item;
                }
            }
 
            public void RemoveAt(int index)
            {
                if (index == 0)
                {
                    _token = null;
                }
            }
        }
 
        private readonly JPropertyList _content = new JPropertyList();
 
        private readonly string _name;
 
        /// <summary>
        /// Gets the container's children tokens.
        /// </summary>
        /// <value>The container's children tokens.</value>
        protected override IList<JToken> ChildrenTokens => _content;
 
        /// <summary>
        /// Gets the property name.
        /// </summary>
        /// <value>The property name.</value>
        public string Name
        {
            [DebuggerStepThrough]
            get
            {
                return _name;
            }
        }
 
        /// <summary>
        /// Gets or sets the property value.
        /// </summary>
        /// <value>The property value.</value>
        public new JToken Value
        {
            [DebuggerStepThrough]
            get
            {
                return _content._token;
            }
            set
            {
                CheckReentrancy();
                JToken item = value ?? JValue.CreateNull();
                if (_content._token == null)
                {
                    InsertItem(0, item, skipParentCheck: false);
                }
                else
                {
                    SetItem(0, item);
                }
            }
        }
 
        /// <summary>
        /// Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken" />.
        /// </summary>
        /// <value>The type.</value>
        public override JTokenType Type
        {
            [DebuggerStepThrough]
            get
            {
                return JTokenType.Property;
            }
        }
 
        /// <summary>
        /// Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty" /> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty" /> object.
        /// </summary>
        /// <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty" /> object to copy from.</param>
        public JProperty(JProperty other)
            : base(other)
        {
            _name = other.Name;
        }
 
        internal override JToken GetItem(int index)
        {
            if (index != 0)
            {
                throw new ArgumentOutOfRangeException();
            }
            return Value;
        }
 
        internal override void SetItem(int index, JToken item)
        {
            if (index != 0)
            {
                throw new ArgumentOutOfRangeException();
            }
            if (!JContainer.IsTokenUnchanged(Value, item))
            {
                if (base.Parent != null)
                {
                    ((JObject)base.Parent).InternalPropertyChanging(this);
                }
                base.SetItem(0, item);
                if (base.Parent != null)
                {
                    ((JObject)base.Parent).InternalPropertyChanged(this);
                }
            }
        }
 
        internal override bool RemoveItem(JToken item)
        {
            throw new JsonException("Cannot add or remove items from {0}.".FormatWith(CultureInfo.InvariantCulture, typeof(JProperty)));
        }
 
        internal override void RemoveItemAt(int index)
        {
            throw new JsonException("Cannot add or remove items from {0}.".FormatWith(CultureInfo.InvariantCulture, typeof(JProperty)));
        }
 
        internal override int IndexOfItem(JToken item)
        {
            return _content.IndexOf(item);
        }
 
        internal override void InsertItem(int index, JToken item, bool skipParentCheck)
        {
            if (item == null || item.Type != JTokenType.Comment)
            {
                if (Value != null)
                {
                    throw new JsonException("{0} cannot have multiple values.".FormatWith(CultureInfo.InvariantCulture, typeof(JProperty)));
                }
                base.InsertItem(0, item, skipParentCheck: false);
            }
        }
 
        internal override bool ContainsItem(JToken item)
        {
            return Value == item;
        }
 
        internal override void MergeItem(object content, JsonMergeSettings settings)
        {
            JProperty jProperty = content as JProperty;
            if (jProperty != null && jProperty.Value != null && jProperty.Value.Type != JTokenType.Null)
            {
                Value = jProperty.Value;
            }
        }
 
        internal override void ClearItems()
        {
            throw new JsonException("Cannot add or remove items from {0}.".FormatWith(CultureInfo.InvariantCulture, typeof(JProperty)));
        }
 
        internal override bool DeepEquals(JToken node)
        {
            JProperty jProperty = node as JProperty;
            if (jProperty != null && _name == jProperty.Name)
            {
                return ContentsEqual(jProperty);
            }
            return false;
        }
 
        internal override JToken CloneToken()
        {
            return new JProperty(this);
        }
 
        internal JProperty(string name)
        {
            ValidationUtils.ArgumentNotNull(name, "name");
            _name = name;
        }
 
        /// <summary>
        /// Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty" /> class.
        /// </summary>
        /// <param name="name">The property name.</param>
        /// <param name="content">The property content.</param>
        public JProperty(string name, params object[] content)
            : this(name, (object)content)
        {
        }
 
        /// <summary>
        /// Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty" /> class.
        /// </summary>
        /// <param name="name">The property name.</param>
        /// <param name="content">The property content.</param>
        public JProperty(string name, object content)
        {
            ValidationUtils.ArgumentNotNull(name, "name");
            _name = name;
            Value = (IsMultiContent(content) ? new JArray(content) : JContainer.CreateFromContent(content));
        }
 
        /// <summary>
        /// Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter" />.
        /// </summary>
        /// <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter" /> into which this method will write.</param>
        /// <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter" /> which will be used when writing the token.</param>
        public override void WriteTo(JsonWriter writer, params JsonConverter[] converters)
        {
            writer.WritePropertyName(_name);
            JToken value = Value;
            if (value != null)
            {
                value.WriteTo(writer, converters);
            }
            else
            {
                writer.WriteNull();
            }
        }
 
        internal override int GetDeepHashCode()
        {
            return _name.GetHashCode() ^ ((Value != null) ? Value.GetDeepHashCode() : 0);
        }
 
        /// <summary>
        /// Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty" /> from a <see cref="T:Newtonsoft.Json.JsonReader" />. 
        /// </summary>
        /// <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader" /> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JProperty" />.</param>
        /// <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty" /> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader" />.</returns>
        public new static JProperty Load(JsonReader reader)
        {
            return Load(reader, null);
        }
 
        /// <summary>
        /// Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty" /> from a <see cref="T:Newtonsoft.Json.JsonReader" />. 
        /// </summary>
        /// <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader" /> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JProperty" />.</param>
        /// <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings" /> used to load the JSON.
        /// If this is null, default load settings will be used.</param>
        /// <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty" /> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader" />.</returns>
        public new static JProperty Load(JsonReader reader, JsonLoadSettings settings)
        {
            if (reader.TokenType == JsonToken.None && !reader.Read())
            {
                throw JsonReaderException.Create(reader, "Error reading JProperty from JsonReader.");
            }
            reader.MoveToContent();
            if (reader.TokenType != JsonToken.PropertyName)
            {
                throw JsonReaderException.Create(reader, "Error reading JProperty from JsonReader. Current JsonReader item is not a property: {0}".FormatWith(CultureInfo.InvariantCulture, reader.TokenType));
            }
            JProperty jProperty = new JProperty((string)reader.Value);
            jProperty.SetLineInfo(reader as IJsonLineInfo, settings);
            jProperty.ReadTokenFrom(reader, settings);
            return jProperty;
        }
    }
}