Hi Blake,<div><br></div><div>I'm the original author of JSS and I completely agree. Have a look at JSS and see how it feels. Aside from the syntax, note that imports are not necessary, ABCL has incorporated dynamic additions to the classpath, one cnanan refer to classes using symbols or strings that only need to match uniquely to the end of the fully qualified class name and there are extensions to asdf that let you have jar files specified as part of system definitions. </div>


<div><br></div><div>The only thing that has stumped me is how to dynamically add native libraries - it would be great if you or someone Else could figure out a way to let that happen. Also I think there's one remaining bug with method look up that we've reported that I don't think is addressed yet. </div>


<div><br></div><div>I suspect it's the case that modifying a ABCL to use symbols as the function names is feasible just by modifying the readtable so you might give that a try. In the end I decided that because of the case sensitivity and the overlap with existing function names it was clearer to have a distinct syntax. </div>

<div><br></div><div>Here's another item that I think would be a very nice addition towards the goal we both agree is worthwhile. I find myself regularly finding some code snippet or test program written in java that I want to use in abcl. Wouldn't it be sweet if there was a slime addition paste-as-jss that did the transforms necessary to translate from java syntax to jss in ABCL. This wouldn't have to be a full java parser - even support for a subset of statements and the ability to ignore much of the declaration nonsense that jss/abcl doesn't need, and the ability to leave alone what it doesn't know how to translate, would be a real help for lisp programmers who want to use java.</div>

<div><br></div><div>Best,</div><div>Alan</div><div><br>On Saturday, February 16, 2013, Blake McBride  wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>I'd like to add that there are many high quality and free lisp systems available.  The thing that makes ABCL uniquely interesting is its close association to Java.  It gives ABCL a much better ability to leverage off of the existing technology (libraries) built in Java.  While focusing on ABCL's reliability and conformance to standards is very important, I wouldn't loose sight of where the attraction really is.  If the main attraction to ABCL for lisp programmers is its tight integration to Java, than the degree of ABCL's appeal will be directly related to the ease and power of its integration to Java.</div>



<div><br></div><div>Just one opinion...</div><div><br></div><div>Blake McBride</div><div><br></div><div><br></div><div><br></div>On Sat, Feb 16, 2013 at 7:54 AM, Alessio Stalla <span dir="ltr"><<a>alessiostalla@gmail.com</a>></span> wrote:<br>



<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div>On Sat, Feb 16, 2013 at 2:32 PM, Blake McBride <<a>blake@arahant.com</a>> wrote:<br>




> I have an idea for a largely seamless integration method for ABCL with Java<br>
> that involves changing the ABCL REPL.  It would work as follows.<br>
><br>
> 1.  From within Java or lisp, have the ability to register any number of<br>
> Java classes with ABCL.<br>
><br>
> 2.  When executing lisp code of the form (fun args ...), try running the<br>
> code as regular lisp code as it does now, but if it fails to find the lisp<br>
> function and has at least one argument then:<br>
><br>
> 3.  Examine the arguments and, through reflection, try to find a Java method<br>
> (with the same name as the lisp function) in one of the registered Java<br>
> classes that matches the number and types of arguments and execute that.<br>
> So, it would auto translate (in effect):<br>
><br>
>     (fun arg1 arg2 arg3 ...)<br>
><br>
> into Java<br>
><br>
>     arg1.fun(arg2, arg3, ...);<br>
><br>
> 4.  There must be better auto-translation of lisp <-> java data types to<br>
> include arrays and lists in order for this to work.  So, in other words,<br>
> when executing a lisp function passing a lisp array as one of the arguments,<br>
> the Java reflection query will see a Java array argument type.  It will also<br>
> be auto-converted when making the call.<br>
><br>
> 5.  There must be some sort of cacheing mechanism to avoid redundant Java<br>
> reflection calls.<br>
><br>
> 6.  This mechanism must take into account and correctly handle similar Java<br>
> method names with different number and types of arguments both within and<br>
> across different classes.  It must also handle the fact that methods may be<br>
> declared in Java superclasses.<br>
><br>
> 7.  This functionality can be enabled or disabled through some (Java and/or<br>
> lisp function).  Off by default to avoid troubles.<br>
><br>
> Adding this functionality would make ABCL a plugin-and-go extension to Java.<br>
> Any code could be written in Java or lisp immediately without complicated<br>
> and cumbersome interface/translation code in most cases.  There would be no<br>
> huge initial hill to climb (to create all the interface code), and the usage<br>
> would be natural and uncomplicated.<br>
><br>
> Thanks.<br>
<br>
</div></div>I never really used it, but it seems to me that you're mostly<br>
describing JSS. It is not so seamlessly integrated with the REPL, but<br>
it has reader macros that allow you to write (#"someMethod" this arg1<br>
arg2 ...). ABCL (and thus JSS) knows how to find the best matching<br>
method based on argument types, taking subclassing into account.<br>
<br>
Lisp lists are not automatically translated to Java lists because they<br>
are made of conses, but a cons does not necessarily translate to a<br>
list, it might represent an improper list, a tree, a graph... on the<br>
other hand, you can use Java lists natively as Lisp sequences in ABCL,<br>
so you might be better off using Java lists from the start, if you<br>
find yourself converting lists back and forth frequently.<br>
<span><font color="#888888"><br>
Alessio<br>
</font></span></blockquote></div><br>
</blockquote></div>