Json.NET
Code Coverage Statistics for Source File

Newtonsoft.Json\Serialization\JsonFormatterConverter.cs

Symbol Coverage: 83.67% (41 of 49)

Branch Coverage: 78.26% (18 of 23)

Cyclomatic Complexity Avg: 1.11 Max:2

Code Lines: 49


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
#if !SILVERLIGHT && !PocketPC
27
using System;
28
using System.Collections.Generic;
29
using System.Globalization;
30
using System.Linq;
31
using System.Runtime.Serialization;
32
using System.Text;
33
using Newtonsoft.Json.Utilities;
34
using Newtonsoft.Json.Linq;
35

  
36
namespace Newtonsoft.Json.Serialization
37
{
38
  internal class JsonFormatterConverter : IFormatterConverter
39
  {
40
    private readonly JsonSerializer _serializer;
41

  
42
 1
    public JsonFormatterConverter(JsonSerializer serializer)
43
    {
44
 1
      ValidationUtils.ArgumentNotNull(serializer, "serializer");
45

  
46
 1
      _serializer = serializer;
47
 1
    }
48

  
49
    private T GetTokenValue<T>(object value)
50
    {
51
 14
      ValidationUtils.ArgumentNotNull(value, "value");
52
      
53
 14
      JValue v = (JValue)value;
54
 14
      return (T)System.Convert.ChangeType(v.Value, typeof(T), CultureInfo.InvariantCulture);
55
 14
    }
56

  
57
    public object Convert(object value, Type type)
58
    {
59
 4
      ValidationUtils.ArgumentNotNull(value, "value");
60

  
61
 4
      JToken token = value as JToken;
62
 4
      if (token == null)
63
 0
        throw new ArgumentException("Value is not a JToken.", "value");
64

  
65
 4
      return _serializer.Deserialize(token.CreateReader(), type);
66
 4
    }
67

  
68
    public object Convert(object value, TypeCode typeCode)
69
    {
70
 0
      ValidationUtils.ArgumentNotNull(value, "value");
71

  
72
 0
      if (value is JValue)
73
 0
        value = ((JValue) value).Value;
74

  
75
 0
      return System.Convert.ChangeType(value, typeCode, CultureInfo.InvariantCulture);
76
 0
    }
77

  
78
    public bool ToBoolean(object value)
79
    {
80
 1
      return GetTokenValue<bool>(value);
81
 1
    }
82

  
83
    public byte ToByte(object value)
84
    {
85
 1
      return GetTokenValue<byte>(value);
86
 1
    }
87

  
88
    public char ToChar(object value)
89
    {
90
 1
      return GetTokenValue<char>(value);
91
 1
    }
92

  
93
    public DateTime ToDateTime(object value)
94
    {
95
 1
      return GetTokenValue<DateTime>(value);
96
 1
    }
97

  
98
    public decimal ToDecimal(object value)
99
    {
100
 1
      return GetTokenValue<decimal>(value);
101
 1
    }
102

  
103
    public double ToDouble(object value)
104
    {
105
 0
      return GetTokenValue<double>(value);
106
 0
    }
107

  
108
    public short ToInt16(object value)
109
    {
110
 1
      return GetTokenValue<short>(value);
111
 1
    }
112

  
113
    public int ToInt32(object value)
114
    {
115
 1
      return GetTokenValue<int>(value);
116
 1
    }
117

  
118
    public long ToInt64(object value)
119
    {
120
 1
      return GetTokenValue<long>(value);
121
 1
    }
122

  
123
    public sbyte ToSByte(object value)
124
    {
125
 1
      return GetTokenValue<sbyte>(value);
126
 1
    }
127

  
128
    public float ToSingle(object value)
129
    {
130
 1
      return GetTokenValue<float>(value);
131
 1
    }
132

  
133
    public string ToString(object value)
134
    {
135
 1
      return GetTokenValue<string>(value);
136
 1
    }
137

  
138
    public ushort ToUInt16(object value)
139
    {
140
 1
      return GetTokenValue<ushort>(value);
141
 1
    }
142

  
143
    public uint ToUInt32(object value)
144
    {
145
 1
      return GetTokenValue<uint>(value);
146
 1
    }
147

  
148
    public ulong ToUInt64(object value)
149
    {
150
 1
      return GetTokenValue<ulong>(value);
151
 1
    }
152
  }
153
}
154
#endif