Jruby:使用Pry与JRuby(和JRubyFx)

时间:2013-02-05 12:07:23

标签: windows jruby javafx-2 pry

在Windows上使用带有JRuby和JRubyFx的Pry gem的正确方法是什么?

我正在使用JRubyFx(一个JavaFX JRuby绑定 - https://github.com/jruby/jrubyfx),对于我的测试,我使用这个example缩小到最小必要行。

require 'jrubyfx'
require 'pry'

class SimpleFXApplication < JRubyFX::Application
    def start(stage)
    stage.title = "jrubyfx app"
    @ctrlr = SimpleFXController.load_fxml("some_fxml_code_for_ui.fxml", stage)
    stage.show
  end
end

class SimpleFXController < JRubyFX::Controller
end

SimpleFXApplication.launch
binding.pry

启动应用程序后,控制台不再接受输入了&#34; pry&#34;只有在关闭SimpleFXApplication窗口时才接受输入。

我也尝试过使用Java Threads:

...
binding.pry
Java.java.lang.Thread.new do SimpleFXApplication.launch end

但是,虽然新的线程ID显示为正在运行,但SimpleFXApplication永远不会启动。

我尝试的另一件事是从控制台启动pry然后需要并启动SimpleFXApplication:

  

jruby -S pry

     

要求&#39; ./ jrubyfx_demo.rb&#39;

     

     

SimpleFXApplication.launch

我收到以下错误......

  

异常运行应用程序:java.net.MalformedURLException:未知   protocol:c java.net.URL。(未知来源)   java.net.URL。(未知来源)   sun.reflect.NativeConstructorAccessorImpl.newInstance0(本机方法)   sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)   sun.reflect.DelegatingConstructorAccessorImpl.newInstance(未知   来源)java.lang.reflect.Constructor.newInstance(未知来源)   org.jruby.javasupport.JavaConstructor.newInstanceDirect(JavaConstructor.java:291)   org.jruby.java.invokers.ConstructorInvoker.call(ConstructorInvoker.java:104)   org.jruby.java.invokers.ConstructorInvoker.call(ConstructorInvoker.java:197)   org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:211)   org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:217)   org.jruby.java.proxies.ConcreteJavaProxy $ 2.call(ConcreteJavaProxy.java:56)   org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:211)   org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:217)   org.jruby.RubyClass.newInstance(RubyClass.java:862)   org.jruby.RubyClass $ INVOKER $ I $ newInstance.call(RubyClass $ INVOKER $ I $ newInstance.gen)   org.jruby.internal.runtime.methods.JavaMethod $ JavaMethodZeroOrOneOrTwoOrNBlock.call(JavaMethod.java:295)   org.jruby.java.proxies.ConcreteJavaProxy $ 3.call(ConcreteJavaProxy.java:155)   org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:346)   org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:204)   org.jruby.ast.CallTwoArgNode.interpret(CallTwoArgNode.java:59)   org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)   org.jruby.ast.BlockNode.interpret(BlockNode.java:71)   org.jruby.ast.IfNode.interpret(IfNode.java:118)   org.jruby.ast.AttrAssignOneArgNode.interpret(AttrAssignOneArgNode.java:33)   org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)   org.jruby.ast.BlockNode.interpret(BlockNode.java:71)   org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:75)   org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:268)   org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:220)   org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:366)   org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:238)   org.jruby.ast.FCallThreeArgNode.interpret(FCallThreeArgNode.java:40)   org.jruby.ast.LocalAsgnNode.interpret(LocalAsgnNode.java:123)   org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)   org.jruby.ast.BlockNode.interpret(BlockNode.java:71)   org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:75)   org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:225)   org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:204)   org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:346)   org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:204)   org.jruby.ast.CallTwoArgNode.interpret(CallTwoArgNode.java:59)   org.jruby.ast.InstAsgnNode.interpret(InstAsgnNode.java:95)   org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)   org.jruby.ast.BlockNode.interpret(BlockNode.java:71)   org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:75)   org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:182)   org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:188)   org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:326)   org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:170)   org.jruby.ast.CallOneArgNode.interpret(CallOneArgNode.java:57)   org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)   org.jruby.ast.BlockNode.interpret(BlockNode.java:71)   org.jruby.ast.RescueNode.executeBody(RescueNode.java:224)   org.jruby.ast.RescueNode.interpret(RescueNode.java:119)   org.jruby.ast.BeginNode.interpret(BeginNode.java:83)   org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105)   org.jruby.evaluator.ASTInterpreter.INTERPRET_BLOCK(ASTInterpreter.java:112)   org.jruby.runtime.Interpreted19Block.evalBlockBody(Interpreted19Block.java:209)   org.jruby.runtime.Interpreted19Block.yield(Interpreted19Block.java:197)   org.jruby.runtime.Interpreted19Block.call(Interpreted19Block.java:128)   org.jruby.runtime.Block.call(Block.java:89)   org.jruby.RubyProc.call(RubyProc.java:261)   org.jruby.RubyProc.call(RubyProc.java:213)   org.jruby.javasupport.JavaUtil $ 1.call(JavaUtil.java:237)   org.jruby.javasupport.util.RuntimeHelpers $ MethodMissingMethod.call(RuntimeHelpers.java:445)   org.jruby.gen.InterfaceImpl1014569521.run(组织/ jruby的/根/ InterfaceImpl1014569521.gen:13)   com.sun.javafx.application.PlatformImpl $ 5.run(PlatformImpl.java:215)   com.sun.javafx.application.PlatformImpl $ 4 $ 1.run(PlatformImpl.java:179)   com.sun.javafx.application.PlatformImpl $ 4 $ 1.run(PlatformImpl.java:176)   java.security.AccessController.doPrivileged(本机方法)   com.sun.javafx.application.PlatformImpl $ 4.run(PlatformImpl.java:176)   com.sun.glass.ui.win.WinApplication._runLoop(原生方法)   com.sun.glass.ui.win.WinApplication.access $ 100(WinApplication.java:29)   com.sun.glass.ui.win.WinApplication $ 3 $ 1.run(WinApplication.java:73)   java.lang.Thread.run(未知来源)   =&GT;零

我猜它在JrubyFx如何使用线程方面有所作为,或者我不知道它是否是一个影响Pry与JRuby一起使用的更通用的问题。 我想知道更多,如果有人可以分享一些建议,我会很感激。

2 个答案:

答案 0 :(得分:2)

SimpleFXApplication.launch在调用Platform.exit之前永远不会返回(关闭窗口会在后台执行此操作)

要执行您要执行的操作,请在启动方法中执行操作,或者在JavaFX启动应用程序后执行其他计时器方法。

作为JRubyFX开发人员之一,我还可以告诉您线程在JRubyFX / JavaFX中的工作原理:

  1. 主线程产生UI JavaFX线程并等待来自JavaFX线程的锁定
  2. UI线程启动了一堆平台内容
  3. UI线程调用开始(阶段)
  4. start(stage)设置事件处理程序,UI等(这是你应该启动pry的地方)
  5. 用户调用stage.show启动JavaFX事件(点击,鼠标移动,按键,最小化等)
  6. 事件线程使用事件处理程序回调到UI线程
  7. 用户通过单击[x]或调用Platform.exit来关闭他们想要关闭JavaFX
  8. 的信号
  9. stage.show收到事件锁定并返回
  10. UI线程在主线程上释放锁定。
  11. 主线程继续时,UI线程清理

答案 1 :(得分:0)

关于这个:

异常运行应用程序:java.net.MalformedURLException:未知协议:c java.net.URL。(未知来源)java.net.URL。(未知来源)

您的配置文件中是否有指定文件位置的内容?如果是这样,那里的价值是什么?

如果您正在使用“C:[something]”,并且C是您当前的驱动器,我建议您尝试删除“C:”,以防pry被驱动器号弄糊涂。

- 基思