blob: 86706d01ae76a4d174dbbec997d1a598c1c663b2 (
plain)
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
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Net.Http.Internal;
using Newtonsoft.Json.Linq;
namespace System.Net.Http.Formatting
{
internal class JTokenRoundTripComparer
{
public static bool Compare(JToken initValue, JToken newValue)
{
if (initValue == null && newValue == null)
{
return true;
}
if (initValue == null || newValue == null)
{
return false;
}
if (initValue is JValue)
{
string initStr;
if (initValue.Type == JTokenType.String)
{
initStr = initValue.ToString();
}
else
{
initStr = ((JValue)initValue).Value.ToString();
}
string newStr;
if (newValue is JValue)
{
newStr = newValue.ToString();
initStr = UriQueryUtility.UrlDecode(UriQueryUtility.UrlEncode(initStr));
return initStr.Equals(newStr);
}
else if (newValue is JObject && ((JObject)newValue).Count == 1)
{
initStr = String.Format("{0}", initValue.ToString());
return ((IDictionary<string, JToken>)newValue).ContainsKey(initStr);
}
return false;
}
if (((JContainer)initValue).Count != ((JContainer)newValue).Count)
{
return false;
}
if (initValue is JObject && newValue is JObject)
{
foreach (KeyValuePair<string, JToken> item in (JObject)initValue)
{
if (!Compare(item.Value, newValue[item.Key]))
{
return false;
}
}
return true;
}
if (initValue is JArray && newValue is JArray)
{
for (int i = 0; i < ((JArray)initValue).Count; i++)
{
if (!Compare(initValue[i], newValue[i]))
{
return false;
}
}
return true;
}
return false;
}
}
}
|