/std/java/_std/Reflect.hx

http://haxe.googlecode.com/ · Haxe · 230 lines · 127 code · 31 blank · 72 comment · 18 complexity · 48e218b8810fa94a95d05b1c301d5816 MD5 · raw file

  1. import haxe.lang.Function;
  2. import java.Boot;
  3. /*
  4. * Copyright (c) 2005, The haXe Project Contributors
  5. * All rights reserved.
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions are met:
  8. *
  9. * - Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * - Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE HAXE PROJECT CONTRIBUTORS "AS IS" AND ANY
  16. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  17. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  18. * DISCLAIMED. IN NO EVENT SHALL THE HAXE PROJECT CONTRIBUTORS BE LIABLE FOR
  19. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  21. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  22. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  23. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  24. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  25. * DAMAGE.
  26. */
  27. /**
  28. The Reflect API is a way to manipulate values dynamicly through an
  29. abstract interface in an untyped manner. Use with care.
  30. **/
  31. @:core_api class Reflect {
  32. /**
  33. Tells if an object has a field set. This doesn't take into account the object prototype (class methods).
  34. **/
  35. @:functionBody('
  36. if (o instanceof haxe.lang.IHxObject)
  37. return ((haxe.lang.IHxObject) o).__hx_getField(field, false, false, true) != haxe.lang.Runtime.undefined;
  38. return haxe.lang.Runtime.slowHasField(o, field);
  39. ')
  40. public static function hasField( o : Dynamic, field : String ) : Bool
  41. {
  42. return false;
  43. }
  44. /**
  45. Returns the field of an object, or null if [o] is not an object or doesn't have this field.
  46. **/
  47. @:functionBody('
  48. if (o instanceof haxe.lang.IHxObject)
  49. return ((haxe.lang.IHxObject) o).__hx_getField(field, false, false, false);
  50. return haxe.lang.Runtime.slowGetField(o, field, false);
  51. ')
  52. public static function field( o : Dynamic, field : String ) : Dynamic
  53. {
  54. return null;
  55. }
  56. /**
  57. Set an object field value.
  58. **/
  59. @:functionBody('
  60. if (o instanceof haxe.lang.IHxObject)
  61. ((haxe.lang.IHxObject) o).__hx_setField(field, false, value);
  62. haxe.lang.Runtime.slowSetField(o, field, value);
  63. ')
  64. public static function setField( o : Dynamic, field : String, value : Dynamic ) : Void
  65. {
  66. }
  67. /**
  68. Similar to field but also supports property (might be slower).
  69. **/
  70. public static function getProperty( o : Dynamic, field : String ) : Dynamic
  71. {
  72. return null;
  73. }
  74. /**
  75. Similar to setField but also supports property (might be slower).
  76. **/
  77. public static function setProperty( o : Dynamic, field : String, value : Dynamic ) : Void
  78. {
  79. }
  80. /**
  81. Call a method with the given object and arguments.
  82. **/
  83. @:functionBody('
  84. return ((haxe.lang.Function) func).__hx_invokeDynamic(args);
  85. ')
  86. public static function callMethod( o : Dynamic, func : Dynamic, args : Array<Dynamic> ) : Dynamic
  87. {
  88. return null;
  89. }
  90. /**
  91. Returns the list of fields of an object, excluding its prototype (class methods).
  92. **/
  93. @:functionBody('
  94. if (o instanceof haxe.lang.IHxObject)
  95. {
  96. Array<String> ret = new Array<String>();
  97. ((haxe.lang.IHxObject) o).__hx_getFields(ret, false);
  98. return ret;
  99. } else {
  100. Array<String> ret = new Array<String>();
  101. if (o instanceof java.lang.Class)
  102. {
  103. Class<?> cl = (java.lang.Class) o;
  104. for(java.lang.reflect.Field f : cl.getFields())
  105. {
  106. if (java.lang.reflect.Modifier.isStatic(f.getModifiers()))
  107. ret.push(f.getName());
  108. }
  109. for(java.lang.reflect.Method m : cl.getMethods())
  110. {
  111. if (java.lang.reflect.Modifier.isStatic(m.getModifiers()))
  112. ret.push(m.getName());
  113. }
  114. }
  115. return ret;
  116. }
  117. ')
  118. public static function fields( o : Dynamic ) : Array<String>
  119. {
  120. return null;
  121. }
  122. /**
  123. Tells if a value is a function or not.
  124. **/
  125. @:functionBody('
  126. return f instanceof haxe.lang.Function;
  127. ')
  128. public static function isFunction( f : Dynamic ) : Bool
  129. {
  130. return false;
  131. }
  132. /**
  133. Generic comparison function, does not work for methods, see [compareMethods]
  134. **/
  135. @:functionBody('
  136. return haxe.lang.Runtime.compare(a, b);
  137. ')
  138. public static function compare<T>( a : T, b : T ) : Int
  139. {
  140. return 0;
  141. }
  142. /**
  143. Compare two methods closures. Returns true if it's the same method of the same instance.
  144. **/
  145. @:functionBody('
  146. if (f1 == f2)
  147. return true;
  148. if (f1 instanceof haxe.lang.Closure && f2 instanceof haxe.lang.Closure)
  149. {
  150. haxe.lang.Closure f1c = (haxe.lang.Closure) f1;
  151. haxe.lang.Closure f2c = (haxe.lang.Closure) f2;
  152. return haxe.lang.Runtime.refEq(f1c.target, f2c.target) && f1c.field.equals(f2c.field);
  153. }
  154. return false;
  155. ')
  156. public static function compareMethods( f1 : Dynamic, f2 : Dynamic ) : Bool
  157. {
  158. return false;
  159. }
  160. /**
  161. Tells if a value is an object or not.
  162. **/
  163. @:functionBody('
  164. return v instanceof haxe.lang.DynamicObject;
  165. ')
  166. public static function isObject( v : Dynamic ) : Bool
  167. {
  168. return false;
  169. }
  170. /**
  171. Delete an object field.
  172. **/
  173. @:functionBody('
  174. return (o instanceof haxe.lang.DynamicObject && ((haxe.lang.DynamicObject) o).__hx_deleteField(f));
  175. ')
  176. public static function deleteField( o : Dynamic, f : String ) : Bool
  177. {
  178. return false;
  179. }
  180. /**
  181. Make a copy of the fields of an object.
  182. **/
  183. public static function copy<T>( o : T ) : T
  184. {
  185. var o2 : Dynamic = {};
  186. for( f in Reflect.fields(o) )
  187. Reflect.setField(o2,f,Reflect.field(o,f));
  188. return cast o2;
  189. }
  190. /**
  191. Transform a function taking an array of arguments into a function that can
  192. be called with any number of arguments.
  193. **/
  194. public static function makeVarArgs( f : Array<Dynamic> -> Dynamic ) : Dynamic
  195. {
  196. return new VarArgsFunction(f);
  197. }
  198. }