<div><span style="border-collapse:separate;color:rgb(0,0,0);font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="border-collapse:separate;color:rgb(0,0,0);font-variant:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="border-collapse:separate;color:rgb(0,0,0);font-family:Helvetica;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;font-size:medium"><div>
<span style="font-family:arial;font-size:small">On Fri, Feb 15, 2013 at 10:24 PM, Rudolf Schlatte </span><span dir="ltr" style="font-family:arial;font-size:small"><<a href="mailto:rudi@constantly.at" target="_blank">rudi@constantly.at</a>></span><span style="font-family:arial;font-size:small"> wrote:</span></div>
</span></span></span></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Hi,<div><br></div><div>I'm not sure I understand the basic problems yet.  Why construct Lisp-side mirror classes instead of dispatching directly on Java objects?</div>
<div>(defmethod foo ((x (jclass "org.comp.Whizzle")))</div><div>  (let ((datum (jcall "getWhizzleComponent" x)))</div><div>    ...))</div></div></blockquote><div><br></div><div>I have a large set of classes that I need to use with a lot of name duplicates so there are several reasons I need to mirror the classes.</div>
<div><br></div><div>Given the large number of classes & methods the lisp wrappers (you show above) or clos mirrors have to be generated in an automated fashion.  My main problem has to do with method name duplicates across classes with different arguments (which I solved), method name duplicates within the same class (which I haven't solved), and the hierarchical nature of Java classes (having methods defined in super classes) (a problem I created by use of my mirrors but solved).</div>
<div><br></div><div>The solution you show above (naming the lisp method "foo" when the Java method name is "getWhizzleComponent" doesn't work.  I could never keep track of the names in the different environments.</div>
<div><br></div><div>Here are the circumstances:</div><div><br></div><div>A.  The are a large number of Java classes and methods I need to use from within lisp containing many class hierarchies, many duplicate method names with varying argument lists both across classes and within classes, and there is need to use methods defined in superclasses.</div>
<div><br></div><div>B.  The interface must be automatically built (presumably at runtime via Java reflection).  I cannot build and maintain a manual one with this many classes and methods (and possibly having multiple programmers adding more Java classes and methods daily).</div>
<div><br></div><div>C.  The class and method names in lisp must be the same as their peers in Java.  There is no way to remember a translation.</div><div><br></div><div>D.  The lisp code must be as clean as the Java code - a simple call must be a simple call.  I can't have additional code to get the Java method in the application code making the equivalent lisp code far more convoluted than the Java code (as you propose below).</div>
<div><br></div><div>In order to do anything meaningful in lisp I must have access to many Java classes and methods.  My ultimate aim would be to have the core libraries (i.e. hibernate, etc.) in Java and all of my application specific code in lisp.  I have already solved all of the above problems except the ability to handle the same method names within the same class hierarchy.  I can even create web services in lisp.</div>
<div><br></div><div>Up to this point I have solved all of my problems except the the problem of duplicate method names in a single Java class hierarchy.  (There is also the other problem I spoke of but that is of secondary concern.)  I have a lot of (for me) complex code to solve my problem up to this point.  I fear that solving my last problem would make my existing automation geometrically more complex.</div>
<div><br></div><div>I hope this helps to understand the problem.  I appreciate any pointers you can offer.</div><div><br></div><div>Thanks.</div><div><br></div><div>Blake</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div style="word-wrap:break-word"><div><br></div><div>Also, why reconstruct Java methods Lisp-side? Currently, I tend to use abcl as a "top-level scripting layer", without trying to duplicate stuff (including methods) that's already implemented Java-side (the following fragment uses jss for method call notation, although currently I prefer plain jcall again):</div>
<div><br></div><div><div>(defun piechart ()</div><div>  (let* ((data (jnew "org.jfree.data.general.DefaultPieDataset"))</div><div>         (chart (jstatic "createPieChart" "org.jfree.chart.ChartFactory"</div>
<div>                         ;; check ChartFactory for chart types!</div><div>                         "Sample Pie Chart" data +true+ +false+ +false+))</div><div>         (frame (jnew "org.jfree.chart.ChartFrame" "Test" chart)))</div>
<div>    (#"setValue" data "Category 1" 401)</div><div>    (#"setValue" data "Category 2" 227)</div><div>    (#"setValue" data "Category 3" 211)</div><div>    (#"pack" frame)</div>
<div>    (#"setVisible" frame +true+)))</div></div><div><br></div><div>But I suspect that I'm answering the wrong questions here.</div><div><br></div><div>Rudi</div><div><div class="h5"><div><br><div><div>On Feb 16, 2013, at 11:59, Blake McBride <<a href="mailto:blake@arahant.com" target="_blank">blake@arahant.com</a>> wrote:</div>
<br><blockquote type="cite">Thanks for the feedback.   I'm not sure about that approach because most methods don't share the same name.  I'd have to know in advanced which do, which don't, an what the special keys are.  This doesn't amount to anything more than name mangling generics.  I am still stuck having to know too many special cases.  Having, essentially, custom dispatching code in the generics based on argument count and types seems to be the only clean solution I can think of.  The problem  of course, is that it is a bit difficult to implement - auto generation of this based on Java reflection.  I'd love to find an easier solution to implement that doesn't make it hard to use.<div>

<br></div><div>Thanks for the idea!!</div><div><br></div><div>Blake<br>
<br><br><div class="gmail_quote">On Fri, Feb 15, 2013 at 9:40 PM, Vsevolod Dyomkin <span dir="ltr"><<a href="mailto:vseloved@gmail.com" target="_blank">vseloved@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div dir="ltr">Hello Blake,<div><br></div><div>What would you say of the following scheme for variable-argument methods:</div><div><br></div><div>(defgeneric method (object spec &rest &key))</div><div><br>

</div><div>(defmethod method ((object clos-mirror-object) (spec (eql :variantion1)) &rest &key arg1 arg2 &allow-other-keys)</div><div>   ...) </div><div><br></div><div>I.e. introducing an additional argument that you can use for dispatching of the same-named methods belonging to one class?</div>



<div><br></div><div>Best</div><div class="gmail_extra"><br clear="all"><div>Vsevolod Dyomkin<div><a href="tel:%2B38-096-111-41-56" value="+380961114156" target="_blank">+38-096-111-41-56</a></div><div>skype, twitter: vseloved</div>

</div>
<br><br><div class="gmail_quote"><div><div>On Sat, Feb 16, 2013 at 1:54 AM, Blake McBride <span dir="ltr"><<a href="mailto:blake@arahant.com" target="_blank">blake@arahant.com</a>></span> wrote:<br></div>
</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div>

Greetings,<div><br></div><div>I have a large Java app with more than 15K Java classes.  I linked it up with ABCL and successfully used it in several places.  However, I had a couple of problems that caused me to use ABCL significantly less than I had hoped.  I thought I would share my problems and perhaps there might be a helpful suggestion.</div>




<div><br></div><div>Although I don't interface with most of the 15K Java classes, there are still a lot of classes to interface ABCL with.  I wrote some lisp code that, through Java reflection, creates CLOS classes that mirror the Java classes I wish to interface with.  In CLOS it encapsulates the Java instance, mirrors the class hierarchy, and creates generics to match the Java methods.  I found a way to create variable argument generics that feed fixed argument methods in order to handle the fact that similarly named methods can take different arguments across different Java classes.</div>




<div><br></div><div>I ran into two problems that have caused me to use ABCL much less than I'd like to.  The first seems like won't be too hard to solve, but the second is something I still need to find a solution to.  Remember, I cannot build this interface manually.  There are too many classes and methods.</div>




<div><br></div><div>The first problem is that I have Java classes and instances mirrored as CLOS classes and instances.  At times it was more convenient (from lisp) to deal with Java objects directly instead of CLOS mirrors.  While it was more convenient, it ended up being too confusing.  With all these classes, objects, and methods, it was too easy to forget what the heck I was dealing with at any point in the code.  I think the only answer to this is to only deal with lisp objects when in lisp.  This would avoid the confusion at the cost of wrapping and unwrapping certain Java objects at times - not too bad.  I would need to have a way to pack Jeve arguments from Jave when calling Lisp.  Doing it in Lisp is a problem because I am back to the confusion of knowing when I am dealing with a Java object and when a lisp object.</div>




<div><br></div><div>The second problem has to do with the fact that a single Java class can use the same method name multiple times with different arguments.  Remember, I am using variable argument generics to handle similar Java method names taking different argument across different classes.  I still have argument checking because I dispatch to a fixed argument CLOS method.  However, I cannot do this within a single class.  The first obvious answer is to name mangle the generics.  This is too sloppy.  The other answer would be to name mangle the methods and have the generic be smart enough to dispatch to the correct method based on the argument number and types (all in CLOS).  This would be a lot of work so I thought I might solicit alternative suggestions.  Perhaps there is a simple answer that I hasn't come to me.</div>




<div><br></div><div>Thanks.</div><span><font color="#888888"><div><br></div><div>Blake McBride</div><div><br></div>
</font></span><br></div></div>_______________________________________________<br>
armedbear-devel mailing list<br>
<a href="mailto:armedbear-devel@common-lisp.net" target="_blank">armedbear-devel@common-lisp.net</a><br>
<a href="http://lists.common-lisp.net/cgi-bin/mailman/listinfo/armedbear-devel" target="_blank">http://lists.common-lisp.net/cgi-bin/mailman/listinfo/armedbear-devel</a><br>
<br></blockquote></div><br></div></div>
</blockquote></div><br></div>
_______________________________________________<br>armedbear-devel mailing list<br><a href="mailto:armedbear-devel@common-lisp.net" target="_blank">armedbear-devel@common-lisp.net</a><br><a href="http://lists.common-lisp.net/cgi-bin/mailman/listinfo/armedbear-devel" target="_blank">http://lists.common-lisp.net/cgi-bin/mailman/listinfo/armedbear-devel</a><br>
</blockquote></div><br></div></div></div></div></blockquote></div><br>