arrays - 如何将一组 Expr(表达式)传递给 Haxe 宏?

标签 arrays syntax macros expression haxe

我基本上是在尝试创建一个自动生成 if/else if 的宏。通过为所有条件提供一个共同的结果陈述来链接。

这是我到目前为止所尝试的(修改代码只是为了作为示例显示):

import haxe.macro.Expr;

class LazyUtils {

    public macro static function tryUntilFalse( xBool:Expr, xConds:Array<Expr> ) {
        var con1, con2, con3, con4, con5;

        /*
         * Here's a switch to handle specific # of conditions, because for-loops
         * don't seem to be allowed here (at least in the ways I've tried so far).
         * 
         * If you know how to use for-loop for this, PLEASE do tell!
         */
        switch(xConds.length) {
            case 1: {
                con1 = conds[0];
                return macro {
                    if (!$con1) $xBool;
                }
            }
            case 2: {
                con1 = conds[0];
                con2 = conds[1];
                return macro {
                    if (!$con1) $xBool;
                    else if (!$con2) $xBool;
                }
            }
            case 3: {
                con1 = conds[0];
                con2 = conds[1];
                con3 = conds[2];
                return macro {
                    if (!$con1) $xBool;
                    else if (!$con2) $xBool;
                    else if (!$con3) $xBool;
                }
            }
            // ... so on and so forth
        }

        return macro { trace("Unhandled length of conditions :("); };
    }
}

然后,理论上它可以这样使用:
class Main {
    static function main() {
        var isOK = true;
        LazyUtils.tryUntilFalse( isOK = false, [
            doSomething(),
            doSomethingElse(), //Returns false, so should stop here.
            doFinalThing()
        ]);
    }

    static function doSomething():Bool {
        // ???
        return true;
    }

    static function doSomethingElse():Bool {
        // ???
        return false;
    }

    static function doFinalThing():Bool {
        return true;
    }
}

哪个应该生成这个条件树:
if (!doSomething()) isOK = false;
else if (!doSomethingElse()) isOK = false;
else if (!doFinalThing()) isOK = false;

或者,我想它可以输出这个:
if(!doSomething() || !doSomethingElse() || !doFinalThing()) isOK = false;

现在回想起来,确实如此 - 编写一个完整的宏来生成更容易以原始格式输入的代码可能没有多大意义。

但是为了学习宏,有没有人知道是否可以在Array<Expr>中传递多个表达式?就像我在上面的代码示例中尝试过的一样?

最佳答案

您可能无法获得 xConds参数的行为与您预期的一样,因为类型为 Array<Expr> 的表达式宏的最后一个参数隐含地是 rest argument .这意味着你最终得到了一个包含单个 EArrayDecl 的数组。表达。这可以通过简单地省略 [] 来解决。 .

关于生成 if - else -chain - 我们来看看EIf :

/**
    An `if(econd) eif` or `if(econd) eif else eelse` expression.
**/
EIf( econd : Expr, eif : Expr, eelse : Null<Expr> );

链可以被认为是一个单向链表 - eelse如果第一个 EIf应该引用下一个 EIf依此类推,直到我们停止 eelse = null最后一次 EIf .所以我们想为你的例子(伪代码)生成这个:
EIf(doSomething(), isOk = false, /* else */
    EIf(doSomethingElse, isOk = false, /* else */
        EIf(doFinalThing(), isOk = false, null)
    )
)

递归适用于此。

通常,使用具体化比我在这里所做的原始表达式更方便,但我不确定前者在动态生成这样的表达式时是否真的可行。
import haxe.macro.Context;
import haxe.macro.Expr;

class LazyUtils {

    public macro static function tryUntilFalse(setBool:Expr, conditions:Array<Expr>):Expr {
        return generateIfChain(setBool, conditions);
    }

    private static function generateIfChain(eif:Expr, conditions:Array<Expr>):Expr {
        // get the next condition
        var condition = conditions.shift();
        if (condition == null) {
            return null; // no more conditions
        }

        // recurse deeper to generate the next if
        var nextIf = generateIfChain(eif, conditions);
        return {
            expr: EIf(condition, eif, nextIf),
            pos: Context.currentPos()
        };
    }
}

Main.hx (大部分不变):
class Main {

    static function main() {
        var isOK = true;
        LazyUtils.tryUntilFalse(isOK = false,
            !doSomething(),
            !doSomethingElse(), //Returns false, so should stop here.
            !doFinalThing()
        );
    }

    static function doSomething():Bool {
        trace("doSomething");
        return true;
    }

    static function doSomethingElse():Bool {
        trace("doSomethingElse");
        return false;
    }

    static function doFinalThing():Bool {
        trace("doFinalThing");
        return true;
    }
}

为了简单起见,我用 ! 反转了函数调用参数。在调用站点而不是在宏中处理它。

您可以使用 -D dump=pretty生成 AST 转储并检查正在生成什么代码。结果如下:
if ((! Main.doSomething()))isOK = false else if ((! Main.doSomethingElse()))isOK = false else if ((! Main.doFinalThing()))isOK = false;

关于arrays - 如何将一组 Expr(表达式)传递给 Haxe 宏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36362616/

相关文章:

javascript - 在 for 循环中填充数组 (JS)

java - 对整数数组进行排序,同时它具有用于记分板的字符串数组

javascript - 使用 ramda 过滤具有相同日期的日期列表

javascript - 为什么 JavaScript 函数可以在定义之前被访问?

python - 为什么 python 在元组设计中选择逗号而不是括号?

php - 如何在 TWIG 的宏中访问 _context 变量?

c++ - Q_FOREACH (= foreach) 宏是如何工作的,为什么这么复杂?

java - 按字母顺序比较数组

python - 将必需参数传递给可选参数

latex - 在 latex 中创建符号列表