JSONLazyCreator.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. using System;
  2. namespace I2.Loc.SimpleJSON
  3. {
  4. internal class JSONLazyCreator : JSONNode
  5. {
  6. public JSONLazyCreator(JSONNode aNode)
  7. {
  8. this.m_Node = aNode;
  9. this.m_Key = null;
  10. }
  11. public JSONLazyCreator(JSONNode aNode, string aKey)
  12. {
  13. this.m_Node = aNode;
  14. this.m_Key = aKey;
  15. }
  16. private void Set(JSONNode aVal)
  17. {
  18. if (this.m_Key == null)
  19. {
  20. this.m_Node.Add(aVal);
  21. }
  22. else
  23. {
  24. this.m_Node.Add(this.m_Key, aVal);
  25. }
  26. this.m_Node = null;
  27. }
  28. public override JSONNode this[int aIndex]
  29. {
  30. get
  31. {
  32. return new JSONLazyCreator(this);
  33. }
  34. set
  35. {
  36. this.Set(new JSONArray
  37. {
  38. value
  39. });
  40. }
  41. }
  42. public override JSONNode this[string aKey]
  43. {
  44. get
  45. {
  46. return new JSONLazyCreator(this, aKey);
  47. }
  48. set
  49. {
  50. this.Set(new JSONClass
  51. {
  52. {
  53. aKey,
  54. value
  55. }
  56. });
  57. }
  58. }
  59. public override void Add(JSONNode aItem)
  60. {
  61. this.Set(new JSONArray
  62. {
  63. aItem
  64. });
  65. }
  66. public override void Add(string aKey, JSONNode aItem)
  67. {
  68. this.Set(new JSONClass
  69. {
  70. {
  71. aKey,
  72. aItem
  73. }
  74. });
  75. }
  76. public static bool operator ==(JSONLazyCreator a, object b)
  77. {
  78. return b == null || object.ReferenceEquals(a, b);
  79. }
  80. public static bool operator !=(JSONLazyCreator a, object b)
  81. {
  82. return !(a == b);
  83. }
  84. public override bool Equals(object obj)
  85. {
  86. return obj == null || object.ReferenceEquals(this, obj);
  87. }
  88. public override int GetHashCode()
  89. {
  90. return base.GetHashCode();
  91. }
  92. public override string ToString()
  93. {
  94. return string.Empty;
  95. }
  96. public override string ToString(string aPrefix)
  97. {
  98. return string.Empty;
  99. }
  100. public override int AsInt
  101. {
  102. get
  103. {
  104. JSONData aVal = new JSONData(0);
  105. this.Set(aVal);
  106. return 0;
  107. }
  108. set
  109. {
  110. JSONData aVal = new JSONData(value);
  111. this.Set(aVal);
  112. }
  113. }
  114. public override float AsFloat
  115. {
  116. get
  117. {
  118. JSONData aVal = new JSONData(0f);
  119. this.Set(aVal);
  120. return 0f;
  121. }
  122. set
  123. {
  124. JSONData aVal = new JSONData(value);
  125. this.Set(aVal);
  126. }
  127. }
  128. public override double AsDouble
  129. {
  130. get
  131. {
  132. JSONData aVal = new JSONData(0.0);
  133. this.Set(aVal);
  134. return 0.0;
  135. }
  136. set
  137. {
  138. JSONData aVal = new JSONData(value);
  139. this.Set(aVal);
  140. }
  141. }
  142. public override bool AsBool
  143. {
  144. get
  145. {
  146. JSONData aVal = new JSONData(false);
  147. this.Set(aVal);
  148. return false;
  149. }
  150. set
  151. {
  152. JSONData aVal = new JSONData(value);
  153. this.Set(aVal);
  154. }
  155. }
  156. public override JSONArray AsArray
  157. {
  158. get
  159. {
  160. JSONArray jsonarray = new JSONArray();
  161. this.Set(jsonarray);
  162. return jsonarray;
  163. }
  164. }
  165. public override JSONClass AsObject
  166. {
  167. get
  168. {
  169. JSONClass jsonclass = new JSONClass();
  170. this.Set(jsonclass);
  171. return jsonclass;
  172. }
  173. }
  174. private JSONNode m_Node;
  175. private string m_Key;
  176. }
  177. }