public inbox for kawa@sourceware.org
 help / color / mirror / Atom feed
From: Per Bothner <per@bothner.com>
To: daniel szmulewicz <daniel.szmulewicz@gmail.com>, kawa@sourceware.org
Subject: Re: java 11
Date: Mon, 03 Dec 2018 01:50:00 -0000	[thread overview]
Message-ID: <e7264f03-56e4-f54c-a099-cfe940cf9070@bothner.com> (raw)
In-Reply-To: <CAABPU6-FNdaCyBKCsXq5csy7Gb3casPQQdmNKeK96mF0OAm3WA@mail.gmail.com>

On 12/2/18 3:00 PM, daniel szmulewicz wrote:
> Hi,
> 
> I wrote my first Kawa script, yay!
> I wanted to explore Java interop, so the following script does a http
> request with the new HttpClient that ships in Java 11. However, as you can
> see, some methods needed to be fully qualified in order to make it work. Is
> this a case of reflection not working with the new Java modules? Am I
> missing something? Thank you!

Works for me (using openjdk 11.0.1).

Your problem may be that you're running the script using load,
or using the -f command-line flag.  That reads, compiles, and evaluates
each line one-by-one which is undesirable for a number of reasons.
For one it hurts various optimizations and requires more reflection.

Instead run the script directly from the command line:

     $ kawa my-script.scm

(without using the -f option).

If using the REPL, you can use require instead of load:

     $ kawa
     #|kawa:3|# (require  "my-script.scm")

Note that "load" is a procedure that reads the file line-by-line,
while "require" is syntax (a macro) that reads the file at "compile-time".
     
It will also work better (no warnings) if you stick to using
the CLASS_NAME:METHOD_NAME syntax for static methods.  For instance methods
we prefer INSTANCE:METHOD_NAME.

Specifically, replace the last two lines by:

     (define response (client:send request body-handler))
     (display (response:body))
-- 
	--Per Bothner
per@bothner.com   http://per.bothner.com/

  reply	other threads:[~2018-12-03  1:50 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-02 23:01 daniel szmulewicz
2018-12-03  1:50 ` Per Bothner [this message]
2018-12-03  2:49   ` Per Bothner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e7264f03-56e4-f54c-a099-cfe940cf9070@bothner.com \
    --to=per@bothner.com \
    --cc=daniel.szmulewicz@gmail.com \
    --cc=kawa@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).