/tags/Libs_1.8_NuGet/JSON@CodeTitans/Objects/JSonArray.cs

# · C# · 390 lines · 265 code · 72 blank · 53 comment · 4 complexity · 75ac88fcadf52750fc4964364e9367e3 MD5 · raw file

  1. #region License
  2. /*
  3. Copyright (c) 2010, Paweł Hofman (CodeTitans)
  4. All Rights Reserved.
  5. Licensed under the Apache License version 2.0.
  6. For more information please visit:
  7. http://codetitans.codeplex.com/license
  8. or
  9. http://www.apache.org/licenses/
  10. For latest source code, documentation, samples
  11. and more information please visit:
  12. http://codetitans.codeplex.com/
  13. */
  14. #endregion
  15. using System;
  16. using System.Collections.Generic;
  17. namespace CodeTitans.JSon.Objects
  18. {
  19. /// <summary>
  20. /// Internal wrapper class that describes array of IJSonObjects and provides <see cref="IJSonObject"/> access interface.
  21. /// </summary>
  22. internal class JSonArray : IJSonObject, IJSonWritable
  23. {
  24. private readonly IList<IJSonObject> _data;
  25. /// <summary>
  26. /// Init constructor.
  27. /// </summary>
  28. public JSonArray(ICollection<Object> data)
  29. {
  30. IJSonObject[] typedData = new IJSonObject[data.Count];
  31. // convert and copy data as an array:
  32. int i = 0;
  33. foreach (Object d in data)
  34. typedData[i++] = (IJSonObject)d;
  35. // HINT: PH: 2012-06-12: using a local variable, which is declared
  36. // as an array, not IList<T> is required to avoid
  37. // NotSupportedException, when setting value inside a loop on Windows Mobile 5.0:
  38. _data = typedData;
  39. }
  40. /// <summary>
  41. /// Default constructor for inheriting classes.
  42. /// </summary>
  43. protected JSonArray(Boolean mutable)
  44. {
  45. if (!mutable)
  46. throw new ArgumentOutOfRangeException("mutable", "Invalid value, use a different constructor if immutable");
  47. _data = new List<IJSonObject>();
  48. }
  49. /// <summary>
  50. /// Init constructor.
  51. /// </summary>
  52. protected JSonArray(ICollection<Object> data, Boolean mutable)
  53. {
  54. if (!mutable)
  55. throw new ArgumentOutOfRangeException("mutable", "Invalid value, use a different constructor if immutable");
  56. _data = new List<IJSonObject>(data.Count);
  57. // convert data:
  58. foreach (Object d in data)
  59. _data.Add((IJSonObject) d);
  60. }
  61. /// <summary>
  62. /// Private constructor for cloning only.
  63. /// </summary>
  64. private JSonArray(ICollection<IJSonObject> data)
  65. {
  66. IJSonObject[] typedCopy = new IJSonObject[data.Count];
  67. // convert and copy data as an array:
  68. int i = 0;
  69. foreach (IJSonObject d in data)
  70. typedCopy[i++] = d;
  71. // HINT: PH: 2012-06-12: using a local variable, which is declared
  72. // as an array, not IList<T> is required to avoid
  73. // NotSupportedException, when setting value inside a loop on Windows Mobile 5.0:
  74. _data = typedCopy;
  75. }
  76. /// <summary>
  77. /// Gets or sets the value of internal data.
  78. /// </summary>
  79. protected internal IList<IJSonObject> Data
  80. {
  81. get { return _data; }
  82. }
  83. #region IJSonObject Members
  84. String IJSonObject.StringValue
  85. {
  86. get { throw new InvalidOperationException(); }
  87. }
  88. int IJSonObject.Int32Value
  89. {
  90. get { throw new InvalidOperationException(); }
  91. }
  92. uint IJSonObject.UInt32Value
  93. {
  94. get { throw new InvalidOperationException(); }
  95. }
  96. long IJSonObject.Int64Value
  97. {
  98. get { throw new InvalidOperationException(); }
  99. }
  100. ulong IJSonObject.UInt64Value
  101. {
  102. get { throw new InvalidOperationException(); }
  103. }
  104. float IJSonObject.SingleValue
  105. {
  106. get { throw new InvalidOperationException(); }
  107. }
  108. double IJSonObject.DoubleValue
  109. {
  110. get { throw new InvalidOperationException(); }
  111. }
  112. public decimal DecimalValue
  113. {
  114. get { throw new InvalidOperationException(); }
  115. }
  116. DateTime IJSonObject.DateTimeValue
  117. {
  118. get { throw new InvalidOperationException(); }
  119. }
  120. TimeSpan IJSonObject.TimeSpanValue
  121. {
  122. get { throw new InvalidOperationException(); }
  123. }
  124. bool IJSonObject.BooleanValue
  125. {
  126. get { throw new InvalidOperationException(); }
  127. }
  128. Guid IJSonObject.GuidValue
  129. {
  130. get { throw new InvalidOperationException(); }
  131. }
  132. bool IJSonObject.IsNull
  133. {
  134. get { return false; }
  135. }
  136. bool IJSonObject.IsTrue
  137. {
  138. get { return false; }
  139. }
  140. bool IJSonObject.IsFalse
  141. {
  142. get { return true; }
  143. }
  144. bool IJSonObject.IsEnumerable
  145. {
  146. get { return true; }
  147. }
  148. public bool IsArray
  149. {
  150. get { return true; }
  151. }
  152. object IJSonObject.ObjectValue
  153. {
  154. get
  155. {
  156. object[] result = new object[_data.Count];
  157. for (int i = 0; i < _data.Count; i++)
  158. result[i] = _data[i].ObjectValue;
  159. return result;
  160. }
  161. }
  162. /// <summary>
  163. /// Gets the DateTime value for given JSON object.
  164. /// </summary>
  165. public DateTime ToDateTimeValue(JSonDateTimeKind kind)
  166. {
  167. throw new InvalidOperationException();
  168. }
  169. /// <summary>
  170. /// Gets the value of given JSON object.
  171. /// </summary>
  172. object IJSonObject.ToValue(Type t)
  173. {
  174. return JSonObjectConverter.ToObject(this, t);
  175. }
  176. /// <summary>
  177. /// Get the value of given JSON object.
  178. /// </summary>
  179. T IJSonObject.ToObjectValue<T>()
  180. {
  181. return (T)JSonObjectConverter.ToObject(this, typeof(T));
  182. }
  183. int IJSonObject.Length
  184. {
  185. get { return _data.Count; }
  186. }
  187. IJSonObject IJSonObject.this[int index]
  188. {
  189. get { return _data[index]; }
  190. }
  191. int IJSonObject.Count
  192. {
  193. get { return _data.Count; }
  194. }
  195. IJSonObject IJSonObject.this[string name]
  196. {
  197. get { throw new InvalidOperationException(); }
  198. }
  199. IJSonObject IJSonObject.this[String name, IJSonObject defaultValue]
  200. {
  201. get { throw new InvalidOperationException(); }
  202. }
  203. IJSonObject IJSonObject.this[String name, String defaultValue, Boolean asJSonSerializedObject]
  204. {
  205. get { throw new InvalidOperationException(); }
  206. }
  207. IJSonObject IJSonObject.this[String name, String defaultValue]
  208. {
  209. get { throw new InvalidOperationException(); }
  210. }
  211. IJSonObject IJSonObject.this[String name, Int32 defaultValue]
  212. {
  213. get { throw new InvalidOperationException(); }
  214. }
  215. IJSonObject IJSonObject.this[string name, uint defaultValue]
  216. {
  217. get { throw new InvalidOperationException(); }
  218. }
  219. IJSonObject IJSonObject.this[String name, Int64 defaultValue]
  220. {
  221. get { throw new InvalidOperationException(); }
  222. }
  223. IJSonObject IJSonObject.this[string name, ulong defaultValue]
  224. {
  225. get { throw new InvalidOperationException(); }
  226. }
  227. IJSonObject IJSonObject.this[String name, Single defaultValue]
  228. {
  229. get { throw new InvalidOperationException(); }
  230. }
  231. IJSonObject IJSonObject.this[String name, Double defaultValue]
  232. {
  233. get { throw new InvalidOperationException(); }
  234. }
  235. public IJSonObject this[string name, Decimal defaultValue]
  236. {
  237. get { throw new InvalidOperationException(); }
  238. }
  239. IJSonObject IJSonObject.this[String name, DateTime defaultValue]
  240. {
  241. get { throw new InvalidOperationException(); }
  242. }
  243. IJSonObject IJSonObject.this[string name, DateTime defaultValue, JSonDateTimeKind kind]
  244. {
  245. get { throw new InvalidOperationException(); }
  246. }
  247. IJSonObject IJSonObject.this[String name, TimeSpan defaultValue]
  248. {
  249. get { throw new InvalidOperationException(); }
  250. }
  251. IJSonObject IJSonObject.this[String name, Guid defaultValue]
  252. {
  253. get { throw new InvalidOperationException(); }
  254. }
  255. IJSonObject IJSonObject.this[String name, Boolean defaultValue]
  256. {
  257. get { throw new InvalidOperationException(); }
  258. }
  259. bool IJSonObject.Contains(string name)
  260. {
  261. return false;
  262. }
  263. ICollection<string> IJSonObject.Names
  264. {
  265. get { return null; }
  266. }
  267. IEnumerable<KeyValuePair<string, IJSonObject>> IJSonObject.ObjectItems
  268. {
  269. get { return null; }
  270. }
  271. bool IJSonObject.IsMutable
  272. {
  273. get { return false; }
  274. }
  275. IJSonMutableObject IJSonObject.AsMutable
  276. {
  277. get { return (IJSonMutableObject)this; }
  278. }
  279. IJSonMutableObject IJSonObject.CreateMutableClone()
  280. {
  281. return JSonMutableObject.CreateArray(this);
  282. }
  283. IJSonObject IJSonObject.CreateImmutableClone()
  284. {
  285. return new JSonArray(_data);
  286. }
  287. public string ToString(string format)
  288. {
  289. bool indent = JSonObjectConverter.GetIndentAndVerifyToStringFormat(format);
  290. using (var writer = new JSonWriter(indent))
  291. {
  292. writer.CompactEnumerables = format == JSonObjectConverter.CompactEnumerables;
  293. writer.Write(_data);
  294. return writer.ToString();
  295. }
  296. }
  297. IEnumerable<IJSonObject> IJSonObject.ArrayItems
  298. {
  299. get { return _data; }
  300. }
  301. #endregion
  302. #region IJSonWritable Members
  303. void IJSonWritable.Write(IJSonWriter output)
  304. {
  305. output.Write(_data);
  306. }
  307. #endregion
  308. public override string ToString()
  309. {
  310. return ToString(null);
  311. }
  312. }
  313. }