Boot.hx 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892
  1. /*
  2. * Copyright (C)2005-2017 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. package php;
  23. import haxe.PosInfos;
  24. using php.Global;
  25. /**
  26. Various Haxe->PHP compatibility utilities.
  27. You should not use this class directly.
  28. **/
  29. @:keep
  30. @:dox(hide)
  31. class Boot {
  32. /** List of Haxe classes registered by their PHP class names */
  33. @:protected static var aliases = new NativeAssocArray<String>();
  34. /** Cache of HxClass instances */
  35. @:protected static var classes = new NativeAssocArray<HxClass>();
  36. /** List of getters (for Reflect) */
  37. @:protected static var getters = new NativeAssocArray<NativeAssocArray<Bool>>();
  38. /** List of setters (for Reflect) */
  39. @:protected static var setters = new NativeAssocArray<NativeAssocArray<Bool>>();
  40. /** Metadata storage */
  41. @:protected static var meta = new NativeAssocArray<{}>();
  42. /**
  43. Initialization stuff.
  44. This method is called once before invoking any Haxe-generated user code.
  45. **/
  46. static function __init__() {
  47. if (!Global.defined('HAXE_CUSTOM_ERROR_HANDLER') || !Const.HAXE_CUSTOM_ERROR_HANDLER) {
  48. var previousLevel = Global.error_reporting(Const.E_ALL);
  49. var previousHandler = Global.set_error_handler(
  50. function (errno:Int, errstr:String, errfile:String, errline:Int) {
  51. if (Global.error_reporting() & errno == 0) {
  52. return false;
  53. }
  54. throw new ErrorException(errstr, 0, errno, errfile, errline);
  55. }
  56. );
  57. //Already had user-defined handler. Return it.
  58. if (previousHandler != null) {
  59. Global.error_reporting(previousLevel);
  60. Global.set_error_handler(previousHandler);
  61. }
  62. }
  63. }
  64. /**
  65. Returns root namespace based on a value of `--php-prefix` compiler flag.
  66. Returns empty string if no `--php-prefix` provided.
  67. **/
  68. public static inline function getPrefix() : String {
  69. return untyped __php__('self::PHP_PREFIX');
  70. }
  71. /**
  72. Register list of getters to be able to call getters using reflection
  73. **/
  74. public static function registerGetters( phpClassName:String, list:NativeAssocArray<Bool> ) : Void {
  75. getters[phpClassName] = list;
  76. }
  77. /**
  78. Register list of setters to be able to call getters using reflection
  79. **/
  80. public static function registerSetters( phpClassName:String, list:NativeAssocArray<Bool> ) : Void {
  81. setters[phpClassName] = list;
  82. }
  83. /**
  84. Check if specified property has getter
  85. **/
  86. public static function hasGetter( phpClassName:String, property:String ) : Bool {
  87. ensureLoaded(phpClassName);
  88. var has = false;
  89. var phpClassName:haxe.extern.EitherType<Bool,String> = phpClassName;
  90. do {
  91. has = Global.isset(getters[phpClassName][property]);
  92. phpClassName = Global.get_parent_class(phpClassName);
  93. } while (!has && phpClassName != false && Global.class_exists(phpClassName));
  94. return has;
  95. }
  96. /**
  97. Check if specified property has setter
  98. **/
  99. public static function hasSetter( phpClassName:String, property:String ) : Bool {
  100. ensureLoaded(phpClassName);
  101. var has = false;
  102. var phpClassName:haxe.extern.EitherType<Bool,String> = phpClassName;
  103. do {
  104. has = Global.isset(setters[phpClassName][property]);
  105. phpClassName = Global.get_parent_class(phpClassName);
  106. } while (!has && phpClassName != false && Global.class_exists(phpClassName));
  107. return has;
  108. }
  109. /**
  110. Save metadata for specified class
  111. **/
  112. public static function registerMeta( phpClassName:String, data:Dynamic ) : Void {
  113. meta[phpClassName] = data;
  114. }
  115. /**
  116. Retrieve metadata for specified class
  117. **/
  118. public static function getMeta( phpClassName:String ) : Null<Dynamic> {
  119. ensureLoaded(phpClassName);
  120. return Global.isset(meta[phpClassName]) ? meta[phpClassName] : null;
  121. }
  122. /**
  123. Associate PHP class name with Haxe class name
  124. **/
  125. public static function registerClass( phpClassName:String, haxeClassName:String ) : Void {
  126. aliases[phpClassName] = haxeClassName;
  127. }
  128. /**
  129. Get Class<T> instance for PHP fully qualified class name (E.g. '\some\pack\MyClass')
  130. It's always the same instance for the same `phpClassName`
  131. **/
  132. public static function getClass( phpClassName:String ) : HxClass {
  133. if (phpClassName.charAt(0) == '\\') {
  134. phpClassName = phpClassName.substr(1);
  135. }
  136. if (!Global.isset(classes[phpClassName])) {
  137. classes[phpClassName] = new HxClass(phpClassName);
  138. }
  139. return classes[phpClassName];
  140. }
  141. /**
  142. Returns Class<HxAnon>
  143. **/
  144. public static inline function getHxAnon() : HxClass {
  145. return cast HxAnon;
  146. }
  147. /**
  148. Returns Class<HxClass>
  149. **/
  150. public static inline function getHxClass() : HxClass {
  151. return cast HxClass;
  152. }
  153. /**
  154. Returns either Haxe class name for specified `phpClassName` or (if no such Haxe class registered) `phpClassName`.
  155. **/
  156. public static function getClassName( phpClassName:String ) : String {
  157. var hxClass = getClass(phpClassName);
  158. var name = getHaxeName(hxClass);
  159. return (name == null ? hxClass.phpClassName : name);
  160. }
  161. /**
  162. Returns original Haxe fully qualified class name for this type (if exists)
  163. **/
  164. public static function getHaxeName( hxClass:HxClass) : Null<String> {
  165. switch (hxClass.phpClassName) {
  166. case 'Int': return 'Int';
  167. case 'String': return 'String';
  168. case 'Bool': return 'Bool';
  169. case 'Float': return 'Float';
  170. case 'Class': return 'Class';
  171. case 'Enum': return 'Enum';
  172. case 'Dynamic': return 'Dynamic';
  173. case _:
  174. }
  175. inline function exists() return Global.isset(aliases[hxClass.phpClassName]);
  176. if (exists()) {
  177. return aliases[hxClass.phpClassName];
  178. } else if (Global.class_exists(hxClass.phpClassName) && exists()) {
  179. return aliases[hxClass.phpClassName];
  180. } else if (Global.interface_exists(hxClass.phpClassName) && exists()) {
  181. return aliases[hxClass.phpClassName];
  182. }
  183. return null;
  184. }
  185. /**
  186. Find corresponding PHP class name.
  187. Returns `null` if specified class does not exist.
  188. **/
  189. public static function getPhpName( haxeName:String ) : Null<String> {
  190. var prefix = getPrefix();
  191. var phpParts = (prefix.length == 0 ? [] : [prefix]);
  192. var haxeParts = haxeName.split('.');
  193. for (part in haxeParts) {
  194. switch (part.toLowerCase()) {
  195. case "__halt_compiler" | "abstract" | "and" | "array" | "as" | "break" | "callable" | "case" | "catch" | "class"
  196. | "clone" | "const" | "continue" | "declare" | "default" | "die" | "do" | "echo" | "else" | "elseif" | "empty"
  197. | "enddeclare" | "endfor" | "endforeach" | "endif" | "endswitch" | "endwhile" | "eval" | "exit" | "extends"
  198. | "final" | "finally" | "for" | "foreach" | "function" | "global" | "goto" | "if" | "implements" | "include"
  199. | "include_once" | "instanceof" | "insteadof" | "interface" | "isset" | "list" | "namespace" | "new" | "or"
  200. | "print" | "private" | "protected" | "public" | "require" | "require_once" | "return" | "static" | "switch"
  201. | "throw" | "trait" | "try" | "unset" | "use" | "var" | "while" | "xor" | "yield" | "__class__" | "__dir__"
  202. | "__file__" | "__function__" | "__line__" | "__method__" | "__trait__" | "__namespace__" | "int" | "float"
  203. | "bool" | "string" | "true" | "false" | "null" | "parent" | "void" | "iterable":
  204. part += '_hx';
  205. case _:
  206. }
  207. phpParts.push(part);
  208. }
  209. return phpParts.join('\\');
  210. }
  211. /**
  212. Creates Haxe-compatible closure.
  213. @param type `this` for instance methods; full php class name for static methods
  214. @param func Method name
  215. **/
  216. public static inline function closure( target:Dynamic, func:Dynamic ) : HxClosure {
  217. return new HxClosure(target, func);
  218. }
  219. /**
  220. Unsafe cast to HxClosure
  221. **/
  222. public static inline function castClosure(value:Dynamic) : HxClosure {
  223. return value;
  224. }
  225. /**
  226. Returns `Class<T>` for `HxClosure`
  227. **/
  228. public static inline function closureHxClass() : HxClass {
  229. return cast HxClosure;
  230. }
  231. /**
  232. Implementation for `cast(value, Class<Dynamic>)`
  233. @throws HxException if `value` cannot be casted to this type
  234. **/
  235. public static function typedCast( hxClass:HxClass, value:Dynamic ) : Dynamic {
  236. switch (hxClass.phpClassName) {
  237. case 'Int':
  238. if (Boot.isNumber(value)) {
  239. return Global.intval(value);
  240. }
  241. case 'Float':
  242. if (Boot.isNumber(value)) {
  243. return value.floatval();
  244. }
  245. case 'Bool':
  246. if (value.is_bool()) {
  247. return value;
  248. }
  249. case 'String':
  250. if (value.is_string()) {
  251. return value;
  252. }
  253. case 'php\\NativeArray':
  254. if (value.is_array()) {
  255. return value;
  256. }
  257. case _:
  258. if (value.is_object() && Std.is(value, cast hxClass)) {
  259. return value;
  260. }
  261. }
  262. throw 'Cannot cast ' + Std.string(value) + ' to ' + getClassName(hxClass.phpClassName);
  263. }
  264. /**
  265. `trace()` implementation
  266. **/
  267. public static function trace( value:Dynamic, infos:PosInfos ) : Void {
  268. if (infos != null) {
  269. Global.echo('${infos.fileName}:${infos.lineNumber}: ');
  270. }
  271. Global.echo(stringify(value));
  272. if (infos.customParams != null) {
  273. for (value in infos.customParams) {
  274. Global.echo(',' + stringify(value));
  275. }
  276. }
  277. Global.echo('\n');
  278. }
  279. /**
  280. Returns string representation of `value`
  281. **/
  282. public static function stringify( value : Dynamic ) : String {
  283. if (value == null) {
  284. return 'null';
  285. }
  286. if (value.is_string()) {
  287. return value;
  288. }
  289. if (value.is_int() || value.is_float()) {
  290. return Syntax.string(value);
  291. }
  292. if (value.is_bool()) {
  293. return value ? 'true' : 'false';
  294. }
  295. if (value.is_array()) {
  296. var strings = Syntax.arrayDecl();
  297. Syntax.foreach(value, function(key:Dynamic, item:Dynamic) {
  298. Global.array_push(strings, (key:String) + ' => ' + stringify(item));
  299. });
  300. return '[' + Global.implode(', ', strings) + ']';
  301. }
  302. if (value.is_object()) {
  303. if (value.method_exists('toString')) {
  304. return value.toString();
  305. }
  306. if (value.method_exists('__toString')) {
  307. return value.__toString();
  308. }
  309. if (Std.is(value, StdClass)) {
  310. if (Global.isset(Syntax.getField(value, 'toString')) && value.toString.is_callable()) {
  311. return value.toString();
  312. }
  313. var result = new NativeIndexedArray<String>();
  314. var data = Global.get_object_vars(value);
  315. for (key in data.array_keys()) {
  316. result.array_push('$key : ' + stringify(data[key]));
  317. }
  318. return '{ ' + Global.implode(', ', result) + ' }';
  319. }
  320. if (isFunction(value)) {
  321. return '<function>';
  322. }
  323. if (Std.is(value, HxClass)) {
  324. return '[class ' + getClassName((value:HxClass).phpClassName) + ']';
  325. } else {
  326. return '[object ' + getClassName(Global.get_class(value)) + ']';
  327. }
  328. }
  329. throw "Unable to stringify value";
  330. }
  331. static public inline function isNumber( value:Dynamic ) {
  332. return value.is_int() || value.is_float();
  333. }
  334. /**
  335. Check if specified values are equal
  336. **/
  337. public static function equal( left:Dynamic, right:Dynamic ) : Bool {
  338. if (isNumber(left) && isNumber(right)) {
  339. return Syntax.binop(left, '==', right);
  340. }
  341. return Syntax.binop(left, '===', right);
  342. }
  343. /**
  344. Concat `left` and `right` if both are strings or string and null.
  345. Otherwise return sum of `left` and `right`.
  346. **/
  347. public static function addOrConcat( left:Dynamic, right:Dynamic ) : Dynamic {
  348. if (left.is_string() || right.is_string()) {
  349. return (left:String) + (right:String);
  350. }
  351. return Syntax.binop(left, '+', right);
  352. }
  353. /**
  354. `Std.is()` implementation
  355. **/
  356. public static function is( value:Dynamic, type:HxClass ) : Bool {
  357. if (type == null) return false;
  358. var phpType = type.phpClassName;
  359. switch (phpType) {
  360. case 'Dynamic':
  361. return true;
  362. case 'Int':
  363. return (
  364. value.is_int()
  365. || (
  366. value.is_float()
  367. && Syntax.binop(Syntax.int(value), '==', value)
  368. && !Global.is_nan(value)
  369. )
  370. )
  371. && Global.abs(value) <= 2147483648;
  372. case 'Float':
  373. return value.is_float() || value.is_int();
  374. case 'Bool':
  375. return value.is_bool();
  376. case 'String':
  377. return value.is_string();
  378. case 'php\\NativeArray', 'php\\_NativeArray\\NativeArray_Impl_':
  379. return value.is_array();
  380. case 'Enum', 'Class':
  381. if (Std.is(value, HxClass)) {
  382. var valuePhpClass = (cast value:HxClass).phpClassName;
  383. var enumPhpClass = (cast HxEnum:HxClass).phpClassName;
  384. var isEnumType = Global.is_subclass_of(valuePhpClass, enumPhpClass);
  385. return (phpType == 'Enum' ? isEnumType : !isEnumType);
  386. }
  387. case _:
  388. if (value.is_object()) {
  389. var type:Class<Dynamic> = cast type;
  390. return Syntax.instanceof(value, type);
  391. }
  392. }
  393. return false;
  394. }
  395. /**
  396. Check if `value` is a `Class<T>`
  397. **/
  398. public static inline function isClass(value:Dynamic) : Bool {
  399. return Std.is(value, HxClass);
  400. }
  401. /**
  402. Check if `value` is an enum constructor instance
  403. **/
  404. public static inline function isEnumValue(value:Dynamic) : Bool {
  405. return Std.is(value, HxEnum);
  406. }
  407. /**
  408. Check if `value` is a function
  409. **/
  410. public static inline function isFunction(value:Dynamic) : Bool {
  411. return Std.is(value, Closure) || Std.is(value, HxClosure);
  412. }
  413. /**
  414. Check if `value` is an instance of `HxClosure`
  415. **/
  416. public static inline function isHxClosure(value:Dynamic) : Bool {
  417. return Std.is(value, HxClosure);
  418. }
  419. /**
  420. Performs `left >>> right` operation
  421. **/
  422. public static function shiftRightUnsigned( left:Int, right:Int ) : Int {
  423. if (right == 0) {
  424. return left;
  425. } else if (left >= 0) {
  426. return (left >> right);
  427. } else {
  428. return (left >> right) & (0x7fffffff >> (right - 1));
  429. }
  430. }
  431. /**
  432. Helper method to avoid "Cannot use temporary expression in write context" error for expressions like this:
  433. ```
  434. (new MyClass()).fieldName = 'value';
  435. ```
  436. **/
  437. static public function deref( value:Dynamic ) : Dynamic {
  438. return value;
  439. }
  440. /**
  441. Create Haxe-compatible anonymous structure of `data` associative array
  442. **/
  443. static public inline function createAnon( data:NativeArray ) : Dynamic {
  444. return new HxAnon(data);
  445. }
  446. /**
  447. Make sure specified class is loaded
  448. **/
  449. static public inline function ensureLoaded( phpClassName:String ) : Bool {
  450. return Global.class_exists(phpClassName) || Global.interface_exists(phpClassName);
  451. }
  452. /**
  453. Get `field` of a dynamic `value` in a safe manner (avoid exceptions on trying to get a method)
  454. **/
  455. static public function dynamicField( value:Dynamic, field:String ) : Dynamic {
  456. if(Global.method_exists(value, field)) {
  457. return closure(value, field);
  458. }
  459. if(Global.is_string(value)) {
  460. value = @:privateAccess new HxDynamicStr(value);
  461. }
  462. return Syntax.getField(value, field);
  463. }
  464. public static function dynamicString( str:String ) : HxDynamicStr {
  465. return @:privateAccess new HxDynamicStr(str);
  466. }
  467. }
  468. /**
  469. Class<T> implementation for Haxe->PHP internals.
  470. **/
  471. @:keep
  472. @:dox(hide)
  473. private class HxClass {
  474. public var phpClassName (default,null) : String;
  475. public function new( phpClassName:String ) : Void {
  476. this.phpClassName = phpClassName;
  477. }
  478. /**
  479. Magic method to call static methods of this class, when `HxClass` instance is in a `Dynamic` variable.
  480. **/
  481. @:phpMagic
  482. function __call( method:String, args:NativeArray ) : Dynamic {
  483. var callback = (phpClassName == 'String' ? (cast HxString:HxClass).phpClassName : phpClassName) + '::' + method;
  484. return Global.call_user_func_array(callback, args);
  485. }
  486. /**
  487. Magic method to get static vars of this class, when `HxClass` instance is in a `Dynamic` variable.
  488. **/
  489. @:phpMagic
  490. function __get( property:String ) : Dynamic {
  491. if (Boot.hasGetter(phpClassName, property)) {
  492. return Syntax.staticCall(phpClassName, 'get_$property');
  493. } else {
  494. return Syntax.getStaticField(phpClassName, property);
  495. }
  496. }
  497. /**
  498. Magic method to set static vars of this class, when `HxClass` instance is in a `Dynamic` variable.
  499. **/
  500. @:phpMagic
  501. function __set( property:String, value:Dynamic ) : Void {
  502. if (Boot.hasSetter(phpClassName, property)) {
  503. Syntax.staticCall(phpClassName, 'set_$property', value);
  504. } else {
  505. Syntax.setStaticField(phpClassName, property, value);
  506. }
  507. }
  508. }
  509. /**
  510. Base class for enum types
  511. **/
  512. @:keep
  513. @:dox(hide)
  514. private class HxEnum {
  515. static var singletons = new Map<String,HxEnum>();
  516. var tag : String;
  517. var index : Int;
  518. var params : NativeArray;
  519. /**
  520. Returns instances of constructors without arguments
  521. **/
  522. public static function singleton( enumClass:String, tag:String, index:Int ) : HxEnum {
  523. var key = '$enumClass::$tag';
  524. var instance = singletons.get(key);
  525. if (instance == null) {
  526. instance = Syntax.construct(enumClass, tag, index);
  527. singletons.set(key, instance);
  528. }
  529. return instance;
  530. }
  531. public function new( tag:String, index:Int, arguments:NativeArray = null ) : Void {
  532. this.tag = tag;
  533. this.index = index;
  534. params = (arguments == null ? new NativeArray() : arguments);
  535. }
  536. /**
  537. Get string representation of this `Class`
  538. **/
  539. public function toString() : String {
  540. return __toString();
  541. }
  542. /**
  543. PHP magic method to get string representation of this `Class`
  544. **/
  545. @:phpMagic
  546. public function __toString() : String {
  547. var result = tag;
  548. if (Global.count(params) > 0) {
  549. var strings = Global.array_map(function (item) return Boot.stringify(item), params);
  550. result += '(' + Global.implode(',', strings) + ')';
  551. }
  552. return result;
  553. }
  554. }
  555. /**
  556. `String` implementation
  557. **/
  558. @:keep
  559. @:dox(hide)
  560. private class HxString {
  561. public static function toUpperCase( str:String ) : String {
  562. return Global.strtoupper(str);
  563. }
  564. public static function toLowerCase( str:String ) : String {
  565. return Global.strtolower(str);
  566. }
  567. public static function charAt( str:String, index:Int) : String {
  568. if (index < 0 || index >= str.length) {
  569. return '';
  570. } else {
  571. return (str:NativeString)[index];
  572. }
  573. }
  574. public static function charCodeAt( str:String, index:Int) : Null<Int> {
  575. if (index < 0 || index >= str.length) {
  576. return null;
  577. } else {
  578. return Global.ord((str:NativeString)[index]);
  579. }
  580. }
  581. public static function indexOf( str:String, search:String, startIndex:Int = null ) : Int {
  582. if (startIndex == null) {
  583. startIndex = 0;
  584. } else if (startIndex < 0) {
  585. startIndex += str.length;
  586. }
  587. var index = Global.strpos(str, search, startIndex);
  588. return (index == false ? -1 : index);
  589. }
  590. public static function lastIndexOf( str:String, search:String, startIndex:Int = null ) : Int {
  591. var index = Global.strrpos(str, search, (startIndex == null ? 0 : startIndex - str.length));
  592. if (index == false) {
  593. return -1;
  594. } else {
  595. return index;
  596. }
  597. }
  598. public static function split( str:String, delimiter:String ) : Array<String> {
  599. if (delimiter == '') {
  600. return @:privateAccess Array.wrap(Global.str_split(str));
  601. } else {
  602. return @:privateAccess Array.wrap(Global.explode(delimiter, str));
  603. }
  604. }
  605. public static function substr( str:String, pos:Int, ?len:Int ) : String {
  606. if (pos < -str.length) {
  607. pos = 0;
  608. } else if (pos >= str.length) {
  609. return '';
  610. }
  611. if (len == null) {
  612. return Global.substr(str, pos);
  613. } else {
  614. var result = Global.substr(str, pos, len);
  615. return (result == false ? '' : result);
  616. }
  617. }
  618. public static function substring( str:String, startIndex:Int, ?endIndex:Int ) : String {
  619. if (endIndex == null) {
  620. endIndex = str.length;
  621. } else if (endIndex < 0) {
  622. endIndex = 0;
  623. }
  624. if (startIndex < 0) startIndex = 0;
  625. if (startIndex > endIndex) {
  626. var tmp = endIndex;
  627. endIndex = startIndex;
  628. startIndex = tmp;
  629. }
  630. var result = Global.substr(str, startIndex, endIndex - startIndex);
  631. return (result == false ? '' : result);
  632. }
  633. public static function toString( str:String ) : String {
  634. return str;
  635. }
  636. public static function fromCharCode( code:Int ) : String {
  637. return Global.chr(code);
  638. }
  639. }
  640. /**
  641. For Dynamic access which looks like String.
  642. Instances of this class should not be saved anywhere.
  643. Instead it should be used to immediately invoke a String field right after instance creation one time only.
  644. **/
  645. @:dox(hide)
  646. @:keep
  647. private class HxDynamicStr extends HxClosure {
  648. static var hxString : String = (cast HxString:HxClass).phpClassName;
  649. /**
  650. Returns HxDynamicStr instance if `value` is a string.
  651. Otherwise returns `value` as-is.
  652. **/
  653. static function wrap( value:Dynamic ) : Dynamic {
  654. if (value.is_string()) {
  655. return new HxDynamicStr(value);
  656. } else {
  657. return value;
  658. }
  659. }
  660. static inline function invoke( str:String, method:String, args:NativeArray ) : Dynamic {
  661. Global.array_unshift(args, str);
  662. return Global.call_user_func_array(hxString + '::' + method, args);
  663. }
  664. function new( str:String ) {
  665. super(str, null);
  666. }
  667. @:phpMagic
  668. function __get( field:String ) : Dynamic {
  669. switch (field) {
  670. case 'length':
  671. return (target:String).length;
  672. case _:
  673. func = field;
  674. return this;
  675. }
  676. }
  677. @:phpMagic
  678. function __call( method:String, args:NativeArray ) : Dynamic {
  679. return invoke(target, method, args);
  680. }
  681. /**
  682. @see http://php.net/manual/en/language.oop5.magic.php#object.invoke
  683. **/
  684. @:phpMagic
  685. override public function __invoke() {
  686. return invoke(target, func, Global.func_get_args());
  687. }
  688. /**
  689. Generates callable value for PHP
  690. **/
  691. override public function getCallback(eThis:Dynamic = null) : NativeIndexedArray<Dynamic> {
  692. if (eThis == null) {
  693. return Syntax.arrayDecl((this:Dynamic), func);
  694. }
  695. return Syntax.arrayDecl((new HxDynamicStr(eThis):Dynamic), func);
  696. }
  697. /**
  698. Invoke this closure with `newThis` instead of `this`
  699. **/
  700. override public function callWith( newThis:Dynamic, args:NativeArray ) : Dynamic {
  701. if (newThis == null) {
  702. newThis = target;
  703. }
  704. return invoke(newThis, func, args);
  705. }
  706. }
  707. /**
  708. Anonymous objects implementation
  709. **/
  710. @:keep
  711. @:dox(hide)
  712. private class HxAnon extends StdClass {
  713. public function new( fields:NativeArray = null ) {
  714. super();
  715. if (fields != null) {
  716. Syntax.foreach(fields, function(name, value) Syntax.setField(this, name, value));
  717. }
  718. }
  719. @:phpMagic
  720. function __get( name:String ) {
  721. return null;
  722. }
  723. @:phpMagic
  724. function __call( name:String, args:NativeArray ) : Dynamic {
  725. var method = Syntax.getField(this, name);
  726. Syntax.keepVar(method);
  727. return method(Syntax.splat(args));
  728. }
  729. }
  730. /**
  731. Closures implementation
  732. **/
  733. @:keep
  734. @:dox(hide)
  735. private class HxClosure {
  736. /** `this` for instance methods; php class name for static methods */
  737. var target : Dynamic;
  738. /** Method name for methods */
  739. var func : String;
  740. public function new( target:Dynamic, func:String ) : Void {
  741. this.target = target;
  742. this.func = func;
  743. //Force runtime error if trying to create a closure of an instance which happen to be `null`
  744. if (target.is_null()) {
  745. throw "Unable to create closure on `null`";
  746. }
  747. }
  748. /**
  749. @see http://php.net/manual/en/language.oop5.magic.php#object.invoke
  750. **/
  751. @:phpMagic
  752. public function __invoke() {
  753. return Global.call_user_func_array(getCallback(), Global.func_get_args());
  754. }
  755. /**
  756. Generates callable value for PHP
  757. **/
  758. public function getCallback(eThis:Dynamic = null) : NativeIndexedArray<Dynamic> {
  759. if (eThis == null) {
  760. eThis = target;
  761. }
  762. if (Std.is(eThis, StdClass)) {
  763. if (Std.is(eThis, HxAnon)) {
  764. return Syntax.getField(eThis, func);
  765. }
  766. }
  767. return Syntax.arrayDecl(eThis, func);
  768. }
  769. /**
  770. Check if this is the same closure
  771. **/
  772. public function equals( closure:HxClosure ) : Bool {
  773. return (target == closure.target && func == closure.func);
  774. }
  775. /**
  776. Invoke this closure with `newThis` instead of `this`
  777. **/
  778. public function callWith( newThis:Dynamic, args:NativeArray ) : Dynamic {
  779. return Global.call_user_func_array(getCallback(newThis), args);
  780. }
  781. }
  782. /**
  783. Special exception which is used to wrap non-throwable values
  784. **/
  785. @:keep
  786. @:dox(hide)
  787. private class HxException extends Exception {
  788. var e : Dynamic;
  789. public function new( e:Dynamic ) : Void {
  790. this.e = e;
  791. super(Boot.stringify(e));
  792. }
  793. }