Reflect.hx 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. /*
  2. * Copyright (C)2005-2019 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. @see https://haxe.org/manual/std-reflection.html
  26. **/
  27. extern class Reflect {
  28. /**
  29. Tells if structure `o` has a field named `field`.
  30. This is only guaranteed to work for anonymous structures. Refer to
  31. `Type.getInstanceFields` for a function supporting class instances.
  32. If `o` or `field` are null, the result is unspecified.
  33. **/
  34. static function hasField(o:Dynamic, field:String):Bool;
  35. /**
  36. Returns the value of the field named `field` on object `o`.
  37. If `o` is not an object or has no field named `field`, the result is
  38. null.
  39. If the field is defined as a property, its accessors are ignored. Refer
  40. to `Reflect.getProperty` for a function supporting property accessors.
  41. If `field` is null, the result is unspecified.
  42. **/
  43. static function field(o:Dynamic, field:String):Dynamic;
  44. /**
  45. Sets the field named `field` of object `o` to value `value`.
  46. If `o` has no field named `field`, this function is only guaranteed to
  47. work for anonymous structures.
  48. If `o` or `field` are null, the result is unspecified.
  49. **/
  50. static function setField(o:Dynamic, field:String, value:Dynamic):Void;
  51. /**
  52. Returns the value of the field named `field` on object `o`, taking
  53. property getter functions into account.
  54. If the field is not a property, this function behaves like
  55. `Reflect.field`, but might be slower.
  56. If `o` or `field` are null, the result is unspecified.
  57. **/
  58. static function getProperty(o:Dynamic, field:String):Dynamic;
  59. /**
  60. Sets the field named `field` of object `o` to value `value`, taking
  61. property setter functions into account.
  62. If the field is not a property, this function behaves like
  63. `Reflect.setField`, but might be slower.
  64. If `field` is null, the result is unspecified.
  65. **/
  66. static function setProperty(o:Dynamic, field:String, value:Dynamic):Void;
  67. /**
  68. Call a method `func` with the given arguments `args`.
  69. The object `o` is ignored in most cases. It serves as the `this`-context in the following
  70. situations:
  71. * (neko) Allows switching the context to `o` in all cases.
  72. * (macro) Same as neko for Haxe 3. No context switching in Haxe 4.
  73. * (js, lua) Require the `o` argument if `func` does not, but should have a context.
  74. This can occur by accessing a function field natively, e.g. through `Reflect.field`
  75. or by using `(object : Dynamic).field`. However, if `func` has a context, `o` is
  76. ignored like on other targets.
  77. **/
  78. static function callMethod(o:Dynamic, func:haxe.Constraints.Function, args:Array<Dynamic>):Dynamic;
  79. /**
  80. Returns the fields of structure `o`.
  81. This method is only guaranteed to work on anonymous structures. Refer to
  82. `Type.getInstanceFields` for a function supporting class instances.
  83. If `o` is null, the result is unspecified.
  84. **/
  85. static function fields(o:Dynamic):Array<String>;
  86. /**
  87. Returns true if `f` is a function, false otherwise.
  88. If `f` is null, the result is false.
  89. **/
  90. static function isFunction(f:Dynamic):Bool;
  91. /**
  92. Compares `a` and `b`.
  93. If `a` is less than `b`, the result is negative. If `b` is less than
  94. `a`, the result is positive. If `a` and `b` are equal, the result is 0.
  95. This function is only defined if `a` and `b` are of the same type.
  96. If that type is a function, the result is unspecified and
  97. `Reflect.compareMethods` should be used instead.
  98. For all other types, the result is 0 if `a` and `b` are equal. If they
  99. are not equal, the result depends on the type and is negative if:
  100. - Numeric types: a is less than b
  101. - String: a is lexicographically less than b
  102. - Other: unspecified
  103. If `a` and `b` are null, the result is 0. If only one of them is null,
  104. the result is unspecified.
  105. **/
  106. static function compare<T>(a:T, b:T):Int;
  107. /**
  108. Compares the functions `f1` and `f2`.
  109. If `f1` or `f2` are null, the result is false.
  110. If `f1` or `f2` are not functions, the result is unspecified.
  111. Otherwise the result is true if `f1` and the `f2` are physically equal,
  112. false otherwise.
  113. If `f1` or `f2` are member method closures, the result is true if they
  114. are closures of the same method on the same object value, false otherwise.
  115. **/
  116. static function compareMethods(f1:Dynamic, f2:Dynamic):Bool;
  117. /**
  118. Tells if `v` is an object.
  119. The result is true if `v` is one of the following:
  120. - class instance
  121. - structure
  122. - `Class<T>`
  123. - `Enum<T>`
  124. Otherwise, including if `v` is null, the result is false.
  125. **/
  126. static function isObject(v:Dynamic):Bool;
  127. /**
  128. Tells if `v` is an enum value.
  129. The result is true if `v` is of type EnumValue, i.e. an enum
  130. constructor.
  131. Otherwise, including if `v` is null, the result is false.
  132. **/
  133. static function isEnumValue(v:Dynamic):Bool;
  134. /**
  135. Removes the field named `field` from structure `o`.
  136. This method is only guaranteed to work on anonymous structures.
  137. If `o` or `field` are null, the result is unspecified.
  138. **/
  139. static function deleteField(o:Dynamic, field:String):Bool;
  140. /**
  141. Copies the fields of structure `o`.
  142. This is only guaranteed to work on anonymous structures.
  143. If `o` is null, the result is `null`.
  144. **/
  145. static function copy<T>(o:Null<T>):Null<T>;
  146. /**
  147. Transform a function taking an array of arguments into a function that can
  148. be called with any number of arguments.
  149. **/
  150. @:overload(function(f:Array<Dynamic>->Void):Dynamic {})
  151. static function makeVarArgs(f:Array<Dynamic>->Dynamic):Dynamic;
  152. }