Reflect.hx 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /*
  2. * Copyright (C)2005-2012 Haxe Foundation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. * DEALINGS IN THE SOFTWARE.
  21. */
  22. /**
  23. The Reflect API is a way to manipulate values dynamically through an
  24. abstract interface in an untyped manner. Use with care.
  25. **/
  26. extern class Reflect {
  27. /**
  28. Tells if structure `o` has a field named `field`.
  29. This is only guaranteed to work for anonymous structures. Refer to
  30. `Type.getInstanceFields` for a function supporting class instances.
  31. If `o` or `field` are null, the result is unspecified.
  32. **/
  33. public static function hasField( o : Dynamic, field : String ) : Bool;
  34. /**
  35. Returns the value of the field named `field` on object `o`.
  36. If `o` is not an object or has no field named `field`, the result is
  37. null.
  38. If the field is defined as a property, its accessors are ignored. Refer
  39. to `Reflect.getProperty` for a function supporting property accessors.
  40. If `field` is null, the result is unspecified.
  41. (As3) If used on a property field, the getter will be invoked. It is
  42. not possible to obtain the value directly.
  43. **/
  44. public static function field( o : Dynamic, field : String ) : Dynamic;
  45. /**
  46. Sets the field named `field` of object `o` to value `value`.
  47. If `o` has no field named `field`, this function is only guaranteed to
  48. work for anonymous structures.
  49. If `o` or `field` are null, the result is unspecified.
  50. (As3) If used on a property field, the setter will be invoked. It is
  51. not possible to set the value directly.
  52. **/
  53. public static function setField( o : Dynamic, field : String, value : Dynamic ) : Void;
  54. /**
  55. Returns the value of the field named `field` on object `o`, taking
  56. property getter functions into account.
  57. If the field is not a property, this function behaves like
  58. `Reflect.field`, but might be slower.
  59. If `o` or `field` are null, the result is unspecified.
  60. **/
  61. public static function getProperty( o : Dynamic, field : String ) : Dynamic;
  62. /**
  63. Sets the field named `field` of object `o` to value `value`, taking
  64. property setter functions into account.
  65. If the field is not a property, this function behaves like
  66. `Reflect.setField`, but might be slower.
  67. If `field` is null, the result is unspecified.
  68. **/
  69. public static function setProperty( o : Dynamic, field : String, value : Dynamic ) : Void;
  70. /**
  71. Call a method with the given object and arguments.
  72. **/
  73. public static function callMethod( o : Dynamic, func : haxe.Constraints.Function, args : Array<Dynamic> ) : Dynamic;
  74. /**
  75. Returns the fields of structure `o`.
  76. This method is only guaranteed to work on anonymous structures. Refer to
  77. `Type.getInstanceFields` for a function supporting class instances.
  78. If `o` is null, the result is unspecified.
  79. **/
  80. public static function fields( o : Dynamic ) : Array<String>;
  81. /**
  82. Returns true if `f` is a function, false otherwise.
  83. If `f` is null, the result is false.
  84. **/
  85. public static function isFunction( f : Dynamic ) : Bool;
  86. /**
  87. Compares `a` and `b`.
  88. If `a` is less than `b`, the result is negative. If `b` is less than
  89. `a`, the result is positive. If `a` and `b` are equal, the result is 0.
  90. This function is only defined if `a` and `b` are of the same type.
  91. If that type is a function, the result is unspecified and
  92. `Reflect.compareMethods` should be used instead.
  93. For all other types, the result is 0 if `a` and `b` are equal. If they
  94. are not equal, the result depends on the type and is negative if:
  95. - Numeric types: a is less than b
  96. - String: a is lexicographically less than b
  97. - Other: unspecified
  98. If `a` and `b` are null, the result is 0. If only one of them is null,
  99. the result is unspecified.
  100. **/
  101. public static function compare<T>( a : T, b : T ) : Int;
  102. /**
  103. Compares the functions `f1` and `f2`.
  104. If `f1` or `f2` are not functions, the result is unspecified.
  105. Otherwise the result is true if `f1` and the `f2` are physically equal,
  106. false otherwise.
  107. **/
  108. public static function compareMethods( f1 : Dynamic, f2 : Dynamic ) : Bool;
  109. /**
  110. Tells if `v` is an object.
  111. The result is true if `v` is one of the following:
  112. - class instance
  113. - structure
  114. - Class<T>
  115. - Enum<T>
  116. Otherwise, including if `v` is null, the result is false.
  117. **/
  118. public static function isObject( v : Dynamic ) : Bool;
  119. /**
  120. Tells if `v` is an enum value.
  121. The result is true if `v` is of type EnumValue, i.e. an enum
  122. constructor.
  123. Otherwise, including if `v` is null, the result is false.
  124. **/
  125. public static function isEnumValue( v : Dynamic ) : Bool;
  126. /**
  127. Removes the field named `field` from structure `o`.
  128. This method is only guaranteed to work on anonymous structures.
  129. If `o` or `field` are null, the result is unspecified.
  130. **/
  131. public static function deleteField( o : Dynamic, field : String ) : Bool;
  132. /**
  133. Copies the fields of structure `o`.
  134. This is only guaranteed to work on anonymous structures.
  135. If `o` is null, the result is unspecified.
  136. **/
  137. public static function copy<T>( o : T ) : T;
  138. /**
  139. Transform a function taking an array of arguments into a function that can
  140. be called with any number of arguments.
  141. **/
  142. @:overload(function( f : Array<Dynamic> -> Void ) : Dynamic {})
  143. public static function makeVarArgs( f : Array<Dynamic> -> Dynamic ) : Dynamic;
  144. }