Groovysh在循环中使用自定义命令

时间:2017-05-24 13:20:50

标签: groovy groovyshell

我有一个groovysh问题,我注意到你不能在循环上下文或函数内部使用goovysh命令。似乎命令在解析时而不是运行时得到评估。

是否有一些神奇的语法可以解决这个问题?

以下是此示例:

import org.codehaus.groovy.tools.shell.CommandSupport
import org.codehaus.groovy.tools.shell.Groovysh

class Rand extends CommandSupport {
    private Random random = new Random()

    protected Rand(final Groovysh shell) {
        super(shell, 'rand', 'r')
    }

    public Integer execute(List args) {
        random.nextInt()
    }

}

:register Rand

(1..3).each {
    println "number ${it}"
    rand
    foo = _
    println "Random number is ${foo}"
}

执行时,您会看到随机数没有变化,您可以看到我在将代码粘贴到控制台时,但在它进入循环之前进行了评估:

Groovy Shell (2.4.11, JVM: 1.8.0_51)
Type ':help' or ':h' for help.
-----------------------------------------------------------------------------------------------------------------------
groovy:000> import org.codehaus.groovy.tools.shell.CommandSupport
===> org.codehaus.groovy.tools.shell.CommandSupport
groovy:000> import org.codehaus.groovy.tools.shell.Groovysh
===> org.codehaus.groovy.tools.shell.CommandSupport, org.codehaus.groovy.tools.shell.Groovysh
groovy:000>
groovy:000> class Rand extends CommandSupport {
groovy:001>     private Random random = new Random()
groovy:002>
groovy:002>     protected Rand(final Groovysh shell) {
groovy:003>         super(shell, 'rand', 'r')
groovy:004>     }
groovy:005>
groovy:005>     public Integer execute(List args) {
groovy:006>         random.nextInt()
groovy:007>     }
groovy:008>
groovy:008> }
===> true
groovy:000>
groovy:000> :register Rand
===> true
groovy:000>
groovy:000> (1..3).each {
groovy:001>     println "number ${it}"
groovy:002>     rand
===> -1321819102
groovy:002>     foo = _
groovy:003>     println "Random number is ${foo}"
groovy:004> }
number 1
Random number is -1321819102
number 2
Random number is -1321819102
number 3
Random number is -1321819102
===> [1, 2, 3]
groovy:000>

我希望有一些方法可以通过直接引用shell或其他东西的其他语法来引用自定义命令。

1 个答案:

答案 0 :(得分:0)

好的,我想出了一些hacky解决方案。掌握Groovysh实例意味着我可以在我感觉到时进行评估:

import org.codehaus.groovy.tools.shell.CommandSupport
import org.codehaus.groovy.tools.shell.Groovysh

class Rand extends CommandSupport {
    private Random random = new Random()

    protected Rand(final Groovysh shell) {
        super(shell, 'rand', 'r')
    }

    public Integer execute(List args) {
        random.nextInt()
    }

}

:register Rand

class Shell extends CommandSupport {

    private Groovysh shellint

    protected Shell(final Groovysh shell) {
        super(shell, 'shell', 's')
        shellint = shell
    }

    public Groovysh execute(List args) {
        shellint
    }

}

:register Shell

shell
myshell = _

(1..3).each {
    println "number ${it}"
    foo = myshell.execute("rand")
    println "Random number is ${foo}"
}

输出:

Groovy Shell (2.4.11, JVM: 1.8.0_51)
Type ':help' or ':h' for help.
-----------------------------------------------------------------------------------------------------------------------
groovy:000> import org.codehaus.groovy.tools.shell.CommandSupport
===> org.codehaus.groovy.tools.shell.CommandSupport
groovy:000> import org.codehaus.groovy.tools.shell.Groovysh
===> org.codehaus.groovy.tools.shell.CommandSupport, org.codehaus.groovy.tools.shell.Groovysh
groovy:000>
groovy:000> class Rand extends CommandSupport {
groovy:001>     private Random random = new Random()
groovy:002>
groovy:002>     protected Rand(final Groovysh shell) {
groovy:003>         super(shell, 'rand', 'r')
groovy:004>     }
groovy:005>
groovy:005>     public Integer execute(List args) {
groovy:006>         random.nextInt()
groovy:007>     }
groovy:008>
groovy:008> }
===> true
groovy:000>
groovy:000> :register Rand
===> true
groovy:000>
groovy:000> class Shell extends CommandSupport {
groovy:001>
groovy:001>     private Groovysh shellint
groovy:002>
groovy:002>     protected Shell(final Groovysh shell) {
groovy:003>         super(shell, 'shell', 's')
groovy:004>         shellint = shell
groovy:005>     }
groovy:006>
groovy:006>     public Groovysh execute(List args) {
groovy:007>         shellint
groovy:008>     }
groovy:009>
groovy:009> }
===> true
groovy:000>
groovy:000> :register Shell
===> true
groovy:000>
groovy:000> shell
===> org.codehaus.groovy.tools.shell.Groovysh@16ec132
groovy:000> myshell = _
===> org.codehaus.groovy.tools.shell.Groovysh@16ec132
groovy:000>
groovy:000> (1..3).each {
groovy:001>     println "number ${it}"
groovy:002>     foo = myshell.execute("rand")
groovy:003>     println "Random number is ${foo}"
groovy:004> }
number 1
===> -666149132
Random number is -666149132
number 2
===> -1675600826
Random number is -1675600826
number 3
===> 412144734
Random number is 412144734
===> [1, 2, 3]

还有其他办法吗?在我需要这个的上下文中,groovysh是一个自定义的,删除了:register

我修改了groovysh jar文件以重新添加:register命令,然后我可以使用上面的解决方案。我通过查看https://github.com/groovy/groovy-core/blob/master/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/Groovysh.groovy并看到org/codehaus/groovy/tools/shell/commands.xml包含命令列表来完成此操作,并将<command>org.codehaus.groovy.tools.shell.commands.RegisterCommand</command>添加到列表中。

相关问题