* Problem running Javafx hello world application
@ 2017-06-07 6:27 Tony West
2017-06-07 9:13 ` Damien MATTEI
2017-06-07 21:21 ` Per Bothner
0 siblings, 2 replies; 6+ messages in thread
From: Tony West @ 2017-06-07 6:27 UTC (permalink / raw)
To: kawa
Hi,
Based on what I've seen in the mailing list, I've got the following simple Javafx application:
(module-name <org.kawa.javafx>)
(module-extends <javafx.application.Application>)
(module-export start create-button)
(module-compile-options main: #t)
;;
;;; Application
;;
(define (start (primary-stage :: <javafx.stage.Stage>)) :: <void>
(invoke primary-stage 'setTitle "Hello World!")
(let ((root-pane (<javafx.scene.layout.StackPane>))
(button (create-button
text: "Say 'Hello World'"
event-handler: (lambda (event) (format #t "Hello World!")))))
(invoke (invoke root-pane 'getChildren) 'add button)
(invoke primary-stage 'setScene (<javafx.scene.Scene> root-pane 300 250))
(invoke primary-stage 'show)))
;;
;;; Utilities
;;
(define (create-button #!key (text #f) (event-handler #f)) :: <javafx.scene.control.Button>
(let ((button :: <javafx.scene.control.Button> (<javafx.scene.control.Button>)))
(when text
(invoke button 'setText text))
(when event-handler
(invoke button 'setOnAction (object (<javafx.event.EventHandler>)
((handle (event :: <javafx.event.ActionEvent>))
(event-handler event)))))
button))
;;
;;; Main
;;
(define (main)
(invoke-static <org.kawa.javafx> 'launch))
(main)
When compiling I get the following:
E:\Work\kawa>kawa --main -C hello-world.scm
Jun 07, 2017 4:16:42 PM org.jline.utils.Log logr
WARNING: Unable to create a system terminal, creating a dumb terminal (enable debug logging for more information)
(compiling hello-world.scm to org.kawa.javafx)
And when I run it I get the following:
E:\Work\kawa>java org.kawa.javafx
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389)
at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at sun.launcher.LauncherHelper$FXHelper.main(Unknown Source)
Caused by: java.lang.IncompatibleClassChangeError: Expected static field org.kawa.javafx$frame.$main
at org.kawa.javafx.main(hello-world.scm)
... 11 more
Exception running application org.kawa.javafx
I would be really grateful if someone could point out what I am doing wrong.
Thanks.
Tony
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Problem running Javafx hello world application
2017-06-07 6:27 Problem running Javafx hello world application Tony West
@ 2017-06-07 9:13 ` Damien MATTEI
2017-06-07 20:51 ` Tony West
2017-06-07 21:21 ` Per Bothner
1 sibling, 1 reply; 6+ messages in thread
From: Damien MATTEI @ 2017-06-07 9:13 UTC (permalink / raw)
To: kawa
just for test, if you try this:
(define (main)
(let ((tst (invoke-static <org.kawa.javafx> 'launch)))
'())
)
does it change something?
i think the probleme comes that you try to return a static object at the level (toplevel or REPL) of a java function,
if the main function is dynamically generated it can not return a static field, for incomatibility reason, i had such incompatibility problem in a pure java program.
Damien
Le Wednesday 07 June 2017 08:27:17 Tony West, vous avez écrit :
> Hi,
>
> Based on what I've seen in the mailing list, I've got the following simple Javafx application:
>
> (module-name <org.kawa.javafx>)
> (module-extends <javafx.application.Application>)
> (module-export start create-button)
> (module-compile-options main: #t)
>
> ;;
> ;;; Application
> ;;
>
> (define (start (primary-stage :: <javafx.stage.Stage>)) :: <void>
> (invoke primary-stage 'setTitle "Hello World!")
> (let ((root-pane (<javafx.scene.layout.StackPane>))
> (button (create-button
> text: "Say 'Hello World'"
> event-handler: (lambda (event) (format #t "Hello World!")))))
> (invoke (invoke root-pane 'getChildren) 'add button)
> (invoke primary-stage 'setScene (<javafx.scene.Scene> root-pane 300 250))
> (invoke primary-stage 'show)))
>
> ;;
> ;;; Utilities
> ;;
>
> (define (create-button #!key (text #f) (event-handler #f)) :: <javafx.scene.control.Button>
> (let ((button :: <javafx.scene.control.Button> (<javafx.scene.control.Button>)))
> (when text
> (invoke button 'setText text))
>
> (when event-handler
> (invoke button 'setOnAction (object (<javafx.event.EventHandler>)
> ((handle (event :: <javafx.event.ActionEvent>))
> (event-handler event)))))
>
> button))
>
>
> ;;
> ;;; Main
> ;;
>
> (define (main)
> (invoke-static <org.kawa.javafx> 'launch))
>
> (main)
>
> When compiling I get the following:
>
> E:\Work\kawa>kawa --main -C hello-world.scm
> Jun 07, 2017 4:16:42 PM org.jline.utils.Log logr
> WARNING: Unable to create a system terminal, creating a dumb terminal (enable debug logging for more information)
> (compiling hello-world.scm to org.kawa.javafx)
>
> And when I run it I get the following:
>
> E:\Work\kawa>java org.kawa.javafx
> java.lang.reflect.InvocationTargetException
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> at java.lang.reflect.Method.invoke(Unknown Source)
> at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389)
> at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> at java.lang.reflect.Method.invoke(Unknown Source)
> at sun.launcher.LauncherHelper$FXHelper.main(Unknown Source)
> Caused by: java.lang.IncompatibleClassChangeError: Expected static field org.kawa.javafx$frame.$main
> at org.kawa.javafx.main(hello-world.scm)
> ... 11 more
> Exception running application org.kawa.javafx
>
> I would be really grateful if someone could point out what I am doing wrong.
>
> Thanks.
>
> Tony
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Problem running Javafx hello world application
2017-06-07 9:13 ` Damien MATTEI
@ 2017-06-07 20:51 ` Tony West
0 siblings, 0 replies; 6+ messages in thread
From: Tony West @ 2017-06-07 20:51 UTC (permalink / raw)
To: Damien MATTEI, kawa
Hi Damien,
I tried the change.
During compilation I received the following messages:
E:\Work\kawa>kawa --main -C hello-world.scm
Jun 08, 2017 6:46:08 AM org.jline.utils.Log logr
WARNING: Unable to create a system terminal, creating a dumb terminal (enable debug logging for more information)
(compiling hello-world.scm to org.kawa.javafx)
hello-world.scm:41:12: warning - void-valued expression where value is needed
When I attempted to run it, the same error messages as before appeared.
Tony
________________________________________
From: kawa-owner@sourceware.org <kawa-owner@sourceware.org> on behalf of Damien MATTEI <Damien.Mattei@unice.fr>
Sent: Wednesday, 7 June 2017 7:13 PM
To: kawa@sourceware.org
Subject: Re: Problem running Javafx hello world application
just for test, if you try this:
(define (main)
(let ((tst (invoke-static <org.kawa.javafx> 'launch)))
'())
)
does it change something?
i think the probleme comes that you try to return a static object at the level (toplevel or REPL) of a java function,
if the main function is dynamically generated it can not return a static field, for incomatibility reason, i had such incompatibility problem in a pure java program.
Damien
Le Wednesday 07 June 2017 08:27:17 Tony West, vous avez écrit :
> Hi,
>
> Based on what I've seen in the mailing list, I've got the following simple Javafx application:
>
> (module-name <org.kawa.javafx>)
> (module-extends <javafx.application.Application>)
> (module-export start create-button)
> (module-compile-options main: #t)
>
> ;;
> ;;; Application
> ;;
>
> (define (start (primary-stage :: <javafx.stage.Stage>)) :: <void>
> (invoke primary-stage 'setTitle "Hello World!")
> (let ((root-pane (<javafx.scene.layout.StackPane>))
> (button (create-button
> text: "Say 'Hello World'"
> event-handler: (lambda (event) (format #t "Hello World!")))))
> (invoke (invoke root-pane 'getChildren) 'add button)
> (invoke primary-stage 'setScene (<javafx.scene.Scene> root-pane 300 250))
> (invoke primary-stage 'show)))
>
> ;;
> ;;; Utilities
> ;;
>
> (define (create-button #!key (text #f) (event-handler #f)) :: <javafx.scene.control.Button>
> (let ((button :: <javafx.scene.control.Button> (<javafx.scene.control.Button>)))
> (when text
> (invoke button 'setText text))
>
> (when event-handler
> (invoke button 'setOnAction (object (<javafx.event.EventHandler>)
> ((handle (event :: <javafx.event.ActionEvent>))
> (event-handler event)))))
>
> button))
>
>
> ;;
> ;;; Main
> ;;
>
> (define (main)
> (invoke-static <org.kawa.javafx> 'launch))
>
> (main)
>
> When compiling I get the following:
>
> E:\Work\kawa>kawa --main -C hello-world.scm
> Jun 07, 2017 4:16:42 PM org.jline.utils.Log logr
> WARNING: Unable to create a system terminal, creating a dumb terminal (enable debug logging for more information)
> (compiling hello-world.scm to org.kawa.javafx)
>
> And when I run it I get the following:
>
> E:\Work\kawa>java org.kawa.javafx
> java.lang.reflect.InvocationTargetException
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> at java.lang.reflect.Method.invoke(Unknown Source)
> at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389)
> at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> at java.lang.reflect.Method.invoke(Unknown Source)
> at sun.launcher.LauncherHelper$FXHelper.main(Unknown Source)
> Caused by: java.lang.IncompatibleClassChangeError: Expected static field org.kawa.javafx$frame.$main
> at org.kawa.javafx.main(hello-world.scm)
> ... 11 more
> Exception running application org.kawa.javafx
>
> I would be really grateful if someone could point out what I am doing wrong.
>
> Thanks.
>
> Tony
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Problem running Javafx hello world application
2017-06-07 6:27 Problem running Javafx hello world application Tony West
2017-06-07 9:13 ` Damien MATTEI
@ 2017-06-07 21:21 ` Per Bothner
[not found] ` <SG2PR0401MB1982C9DBD03FC99CC1F0152DE1C90@SG2PR0401MB1982.apcprd04.prod.outlook.com>
1 sibling, 1 reply; 6+ messages in thread
From: Per Bothner @ 2017-06-07 21:21 UTC (permalink / raw)
To: Tony West, kawa
On 06/06/2017 11:27 PM, Tony West wrote:
> I would be really grateful if someone could point out what I am doing wrong.
Hm. It works for me. Though I suggest changing the event handler to:
event-handler: (lambda (event) (format #t "Hello World!~%~!")))))
What OS and version of Kawa are you using?
I'm using Kawa 2.93-23-g4fa24f2-dirty (using kawa --version), on Fedora 25.
--
--Per Bothner
per@bothner.com http://per.bothner.com/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Problem running Javafx hello world application
[not found] ` <SG2PR0401MB1982C9DBD03FC99CC1F0152DE1C90@SG2PR0401MB1982.apcprd04.prod.outlook.com>
@ 2017-06-08 14:13 ` Per Bothner
2017-06-09 7:29 ` Tony West
0 siblings, 1 reply; 6+ messages in thread
From: Per Bothner @ 2017-06-08 14:13 UTC (permalink / raw)
To: Tony West; +Cc: Kawa mailing list
On 06/07/2017 11:56 PM, Tony West wrote:
> Hi,
>
> I made the change to the event handler but it still fails with the same error.
>
> I am running the following:
>
> C:\Users\Tony>kawa --version
> Kawa 2.4 (git describe: kawa-2.3-30-gdad3755-dirty)
> Copyright (C) 2017 Per Bothner
That's rather old. The version number I get is 2.93-23-g4fa24f2-dirty
- i.e. the current version of the master branch. I do get the same bug
as you when I try the 2.4 branch.
I will sometimes check fixes into the 2.4 branch if it makes sense and
it is easy to do so, but I can't afford to spend the time debugging and
fixing problems in old versions. (That is what a support contract would
be for.) This doesn't look like a trivial problem, so I'm just going
to suggest you upgrade to the development version of Kawa.
--
--Per Bothner
per@bothner.com http://per.bothner.com/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Problem running Javafx hello world application
2017-06-08 14:13 ` Per Bothner
@ 2017-06-09 7:29 ` Tony West
0 siblings, 0 replies; 6+ messages in thread
From: Tony West @ 2017-06-09 7:29 UTC (permalink / raw)
To: Per Bothner; +Cc: Kawa mailing list
Hi Per,
OK, I will try with the latest version of Kawa.
Thanks for your help with this.
Tony
________________________________________
From: kawa-owner@sourceware.org <kawa-owner@sourceware.org> on behalf of Per Bothner <per@bothner.com>
Sent: Friday, 9 June 2017 12:13 AM
To: Tony West
Cc: Kawa mailing list
Subject: Re: Problem running Javafx hello world application
On 06/07/2017 11:56 PM, Tony West wrote:
> Hi,
>
> I made the change to the event handler but it still fails with the same error.
>
> I am running the following:
>
> C:\Users\Tony>kawa --version
> Kawa 2.4 (git describe: kawa-2.3-30-gdad3755-dirty)
> Copyright (C) 2017 Per Bothner
That's rather old. The version number I get is 2.93-23-g4fa24f2-dirty
- i.e. the current version of the master branch. I do get the same bug
as you when I try the 2.4 branch.
I will sometimes check fixes into the 2.4 branch if it makes sense and
it is easy to do so, but I can't afford to spend the time debugging and
fixing problems in old versions. (That is what a support contract would
be for.) This doesn't look like a trivial problem, so I'm just going
to suggest you upgrade to the development version of Kawa.
--
--Per Bothner
per@bothner.com http://per.bothner.com/
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-06-09 7:29 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-07 6:27 Problem running Javafx hello world application Tony West
2017-06-07 9:13 ` Damien MATTEI
2017-06-07 20:51 ` Tony West
2017-06-07 21:21 ` Per Bothner
[not found] ` <SG2PR0401MB1982C9DBD03FC99CC1F0152DE1C90@SG2PR0401MB1982.apcprd04.prod.outlook.com>
2017-06-08 14:13 ` Per Bothner
2017-06-09 7:29 ` Tony West
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).