Code Coverage Statistics for Source File
Newtonsoft.Json\Serialization\JsonArrayContract.cs
Symbol Coverage: 100.00% (22 of 22)
Branch Coverage: 100.00% (23 of 23)
Cyclomatic Complexity Avg: 3.20 Max:6
Code Lines: 26
Symbol Coverage Trend
View:
L | V | Source |
---|---|---|
1 |
#region License |
|
2 |
// Copyright (c) 2007 James Newton-King |
|
3 |
// |
|
4 |
// Permission is hereby granted, free of charge, to any person |
|
5 |
// obtaining a copy of this software and associated documentation |
|
6 |
// files (the "Software"), to deal in the Software without |
|
7 |
// restriction, including without limitation the rights to use, |
|
8 |
// copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
9 |
// copies of the Software, and to permit persons to whom the |
|
10 |
// Software is furnished to do so, subject to the following |
|
11 |
// conditions: |
|
12 |
// |
|
13 |
// The above copyright notice and this permission notice shall be |
|
14 |
// included in all copies or substantial portions of the Software. |
|
15 |
// |
|
16 |
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
|
17 |
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
|
18 |
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
|
19 |
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
|
20 |
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
|
21 |
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|
22 |
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
|
23 |
// OTHER DEALINGS IN THE SOFTWARE. |
|
24 |
#endregion |
|
25 |
||
26 |
using System; |
|
27 |
using System.Collections.Generic; |
|
28 |
using System.Reflection; |
|
29 |
using Newtonsoft.Json.Utilities; |
|
30 |
using System.Collections; |
|
31 |
||
32 |
namespace Newtonsoft.Json.Serialization |
|
33 |
{ |
|
34 |
/// <summary> |
|
35 |
/// Contract details for a <see cref="Type"/> used by the <see cref="JsonSerializer"/>. |
|
36 |
/// </summary> |
|
37 |
public class JsonArrayContract : JsonContract |
|
38 |
{ |
|
39 |
internal Type CollectionItemType { get; private set; } |
|
40 |
||
41 |
private readonly bool _isCollectionItemTypeNullableType; |
|
42 |
private readonly Type _genericCollectionDefinitionType; |
|
43 |
private Type _genericWrapperType; |
|
44 |
private MethodCall<object, object> _genericWrapperCreator; |
|
45 |
||
46 |
/// <summary> |
|
47 |
/// Initializes a new instance of the <see cref="JsonArrayContract"/> class. |
|
48 |
/// </summary> |
|
49 |
/// <param name="underlyingType">The underlying type for the contract.</param> |
|
50 |
60 |
public JsonArrayContract(Type underlyingType)
|
51 |
60 |
: base(underlyingType)
|
52 |
{ |
|
53 |
60 |
if (ReflectionUtils.ImplementsGenericDefinition(underlyingType, typeof(ICollection<>), out _genericCollectionDefinitionType))
|
54 |
{ |
|
55 |
51 |
CollectionItemType = _genericCollectionDefinitionType.GetGenericArguments()[0];
|
56 |
} |
|
57 |
else |
|
58 |
{ |
|
59 |
9 |
CollectionItemType = ReflectionUtils.GetCollectionItemType(UnderlyingType);
|
60 |
} |
|
61 |
||
62 |
60 |
if (CollectionItemType != null)
|
63 |
53 |
_isCollectionItemTypeNullableType = ReflectionUtils.IsNullableType(CollectionItemType);
|
64 |
||
65 |
60 |
if (IsTypeGenericCollectionInterface(UnderlyingType))
|
66 |
{ |
|
67 |
2 |
CreatedType = ReflectionUtils.MakeGenericType(typeof(List<>), CollectionItemType);
|
68 |
} |
|
69 |
60 |
}
|
70 |
||
71 |
internal IWrappedCollection CreateWrapper(object list) |
|
72 |
{ |
|
73 |
20088 |
if ((list is IList && (CollectionItemType == null || !_isCollectionItemTypeNullableType))
|
74 |
20088 |
|| UnderlyingType.IsArray)
|
75 |
20083 |
return new CollectionWrapper<object>((IList)list);
|
76 |
||
77 |
5 |
if (_genericWrapperType == null)
|
78 |
{ |
|
79 |
3 |
_genericWrapperType = ReflectionUtils.MakeGenericType(typeof(CollectionWrapper<>), CollectionItemType);
|
80 |
||
81 |
3 |
ConstructorInfo genericWrapperConstructor = _genericWrapperType.GetConstructor(new[] { _genericCollectionDefinitionType });
|
82 |
3 |
_genericWrapperCreator = JsonTypeReflector.ReflectionDelegateFactory.CreateMethodCall<object>(genericWrapperConstructor);
|
83 |
} |
|
84 |
||
85 |
5 |
return (IWrappedCollection)_genericWrapperCreator(null, list);
|
86 |
20088 |
}
|
87 |
||
88 |
private bool IsTypeGenericCollectionInterface(Type type) |
|
89 |
{ |
|
90 |
60 |
if (!type.IsGenericType)
|
91 |
30 |
return false;
|
92 |
||
93 |
30 |
Type genericDefinition = type.GetGenericTypeDefinition();
|
94 |
||
95 |
30 |
return (genericDefinition == typeof(IList<>)
|
96 |
30 |
|| genericDefinition == typeof(ICollection<>)
|
97 |
30 |
|| genericDefinition == typeof(IEnumerable<>));
|
98 |
60 |
}
|
99 |
} |
|
100 |
} |