1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
/*
* Copyright (C)2005-2012 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package python.internal;
#if macro
import haxe.macro.Context;
import haxe.macro.Expr;
#end
@:noPackageRestrict
class Internal {
#if macro
static var _prefix = "_hx_";
static var _className = _prefix + "class_name";
static var _class = _prefix + "class";
static var _fields = _prefix + "fields";
static var _super = _prefix + "super";
static var _methods = _prefix + "methods";
static var _statics = _prefix + "statics";
static var _interfaces = _prefix + "interfaces";
static var _emptyInit = _prefix + "empty_init";
static var _constructs = _prefix + "constructs";
static var _classes = _prefix + "classes";
static var _dict = "__dict__";
static function _getPrefixed (x:Expr):Expr {
return switch (x.expr) {
case EConst(CString(x)): macro @:pos(Context.currentPos()) $v{_prefix + x};
case _ : macro @:pos(Context.currentPos()) (python.Syntax.binop($v{_prefix},"+",$x):String);
}
}
static function withPos(x:String):Expr {
return macro @:pos(Context.currentPos()) $v{x};
}
static function fieldWithPos(o:Expr, x:String):Expr {
return macro @:pos(Context.currentPos()) (untyped __define_feature__($v{"python." + x}, python.Syntax.field($o, $v{x})));
}
static function has (o:Expr, field:String):Expr {
return macro (untyped __define_feature__($v{"python." + field}, python.internal.UBuiltins.hasattr($o, $v{field})) : Bool);
}
#end
macro public static function getPrefixed (x:ExprOf<String>):Expr {
return switch (x.expr) {
case EConst(CString(x)): macro @:pos(Context.currentPos()) $v{_prefix + x};
case _ : macro @:pos(Context.currentPos()) (python.Syntax.binop($v{_prefix},"+",$x):String);
}
}
macro public static function classRegistry ():Expr {
return macro (untyped __define_feature__($v{"python." + _classes}, python.Syntax.pythonCode($v{_classes})) : python.Dict<String, Class<Dynamic>>);
}
macro public static function callFieldPrefixed (o:Expr, x:String, params:Array<Expr>):Expr {
var args = [o,macro @:pos(Context.currentPos()) $v{_prefix + x}].concat(params);
return macro @:pos(Context.currentPos()) python.Syntax.callField($a{args});
}
macro public static function fieldPrefixed (o:Expr, x:String):Expr {
var args = [o,macro @:pos(Context.currentPos()) $v{_prefix + x}];
return macro @:pos(Context.currentPos()) python.Syntax.field($a{args});
}
macro public static function hasAttrPrefixed (o:Expr, x:String):Expr {
var args = [o,macro @:pos(Context.currentPos()) $v{_prefix + x}];
return macro @:pos(Context.currentPos()) python.Syntax.field($a{args});
}
macro public static function importAsPrefixed (o:String, x:String) {
return macro @:pos(Context.currentPos()) python.Syntax.importAs($v{o}, $v{_prefix + x});
}
macro public static function prefix ():Expr {
return macro @:pos(Context.currentPos()) $v{_prefix};
}
macro public static function pythonCodePrefixed (x:String):Expr {
return macro python.Syntax.pythonCode($v{_prefix + x});
}
macro public static function hasClassName (o:Expr):Expr {
return has(o, _className);
}
macro public static function hasInterfaces (o:Expr):Expr {
return has(o, _interfaces);
}
macro public static function hasClass (o:Expr):Expr {
return has(o, _class);
}
macro public static function hasConstructs (o:Expr):Expr {
return has(o, _constructs);
}
macro public static function hasEmptyInit (o:Expr):Expr {
return has(o, _emptyInit);
}
macro public static function hasMethods (o:Expr):Expr {
return has(o, _methods);
}
macro public static function hasFields (o:Expr):Expr {
return has(o, _fields);
}
macro public static function hasSuper (o:Expr):Expr {
return has(o, _super);
}
macro public static function hasStatics (o:Expr):Expr {
return has(o, _statics);
}
macro public static function classNameVal ():Expr {
return withPos(_className);
}
macro public static function methodsVal ():Expr {
return withPos(_methods);
}
macro public static function classVal():Expr {
return withPos(_className);
}
macro public static function superVal():Expr {
return withPos(_super);
}
macro public static function interfacesVal():Expr {
return withPos(_interfaces);
}
macro public static function fieldsVal():Expr {
return withPos(_fields);
}
macro public static function staticsVal():Expr {
return withPos(_statics);
}
macro public static function constructsVal():Expr {
return withPos(_constructs);
}
macro public static function emptyInitVal():Expr {
return withPos(_emptyInit);
}
macro public static function fieldClassName (o:Expr):Expr {
return fieldWithPos(o, _className);
}
macro public static function fieldInterfaces (o:Expr):Expr {
return fieldWithPos(o, _interfaces);
}
macro public static function fieldClass (o:Expr):Expr {
return fieldWithPos(o, _class);
}
macro public static function fieldSuper (o:Expr):Expr {
return fieldWithPos(o, _super);
}
macro public static function fieldStatics (o:Expr):Expr {
return fieldWithPos(o, _statics);
}
macro public static function fieldMethods (o:Expr):Expr {
return fieldWithPos(o, _methods);
}
macro public static function fieldFields (o:Expr):Expr {
return fieldWithPos(o, _fields);
}
macro public static function fieldConstructs (o:Expr):Expr {
return fieldWithPos(o, _constructs);
}
macro public static function fieldDict (o:Expr):Expr {
return macro @:pos(Context.currentPos()) python.Syntax.field($o, $v{_dict});
}
macro public static function fieldEmptyInit (o:Expr):Expr {
return fieldWithPos(o, _emptyInit);
}
macro public static function callEmptyInit (o:Expr, instance:Expr):Expr {
return macro @:pos(Context.currentPos()) python.Syntax.callField($o, $v{_emptyInit}, $instance);
}
}
|