All files
[pithos-ms-client] / trunk / Libraries / Json40r2 / Source / Src / Newtonsoft.Json / Serialization / JsonFormatterConverter.cs
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     public JsonFormatterConverter(JsonSerializer serializer)
43     {
44       ValidationUtils.ArgumentNotNull(serializer, "serializer");
45
46       _serializer = serializer;
47     }
48
49     private T GetTokenValue<T>(object value)
50     {
51       ValidationUtils.ArgumentNotNull(value, "value");
52       
53       JValue v = (JValue)value;
54       return (T)System.Convert.ChangeType(v.Value, typeof(T), CultureInfo.InvariantCulture);
55     }
56
57     public object Convert(object value, Type type)
58     {
59       ValidationUtils.ArgumentNotNull(value, "value");
60
61       JToken token = value as JToken;
62       if (token == null)
63         throw new ArgumentException("Value is not a JToken.", "value");
64
65       return _serializer.Deserialize(token.CreateReader(), type);
66     }
67
68     public object Convert(object value, TypeCode typeCode)
69     {
70       ValidationUtils.ArgumentNotNull(value, "value");
71
72       if (value is JValue)
73         value = ((JValue) value).Value;
74
75       return System.Convert.ChangeType(value, typeCode, CultureInfo.InvariantCulture);
76     }
77
78     public bool ToBoolean(object value)
79     {
80       return GetTokenValue<bool>(value);
81     }
82
83     public byte ToByte(object value)
84     {
85       return GetTokenValue<byte>(value);
86     }
87
88     public char ToChar(object value)
89     {
90       return GetTokenValue<char>(value);
91     }
92
93     public DateTime ToDateTime(object value)
94     {
95       return GetTokenValue<DateTime>(value);
96     }
97
98     public decimal ToDecimal(object value)
99     {
100       return GetTokenValue<decimal>(value);
101     }
102
103     public double ToDouble(object value)
104     {
105       return GetTokenValue<double>(value);
106     }
107
108     public short ToInt16(object value)
109     {
110       return GetTokenValue<short>(value);
111     }
112
113     public int ToInt32(object value)
114     {
115       return GetTokenValue<int>(value);
116     }
117
118     public long ToInt64(object value)
119     {
120       return GetTokenValue<long>(value);
121     }
122
123     public sbyte ToSByte(object value)
124     {
125       return GetTokenValue<sbyte>(value);
126     }
127
128     public float ToSingle(object value)
129     {
130       return GetTokenValue<float>(value);
131     }
132
133     public string ToString(object value)
134     {
135       return GetTokenValue<string>(value);
136     }
137
138     public ushort ToUInt16(object value)
139     {
140       return GetTokenValue<ushort>(value);
141     }
142
143     public uint ToUInt32(object value)
144     {
145       return GetTokenValue<uint>(value);
146     }
147
148     public ulong ToUInt64(object value)
149     {
150       return GetTokenValue<ulong>(value);
151     }
152   }
153 }
154 #endif