1 | % -*- mode: latex; -*- |
---|
2 | % http://en.wikibooks.org/wiki/LaTeX/ |
---|
3 | \documentclass[10pt]{book} |
---|
4 | % also need to have cm-super installed for high quality rendering |
---|
5 | \usepackage[T1]{fontenc} |
---|
6 | \usepackage{abcl} |
---|
7 | |
---|
8 | \usepackage{hyperref} % Put this one last, it redefines lots of internals |
---|
9 | |
---|
10 | \begin{document} |
---|
11 | \title{Armed Bear Common Lisp User Manual} |
---|
12 | \date{Version 1.6.2\\ |
---|
13 | \smallskip |
---|
14 | Unreleased} |
---|
15 | \author{Mark Evenson \and Erik H\"{u}lsmann \and Rudolf Schlatte \and |
---|
16 | Alessio Stalla \and Ville Voutilainen} |
---|
17 | |
---|
18 | \maketitle |
---|
19 | |
---|
20 | \tableofcontents |
---|
21 | %%Preface to the Seventh edition, abcl-1.6.0 |
---|
22 | \subsection{Preface to the Seventh Edition} |
---|
23 | |
---|
24 | Long overdue, we turn our Java to 11. |
---|
25 | |
---|
26 | Reflecting the management's best estimates as to implementation most |
---|
27 | easily available to the potential \textsc{ABCL} 1.6 User, the Seventh |
---|
28 | release implementation works best with Java 8 or Java 11 runtimes. |
---|
29 | Since freely available implementations of jdk6 and jdk7 exist, we |
---|
30 | still strive to maintain compatibility with the Java 6 and Java 7 |
---|
31 | runtime environments but those environments are less tested. The User |
---|
32 | may need to use the facilities of the ABCL-BUILD contrib to recompile |
---|
33 | the implementation locally in more exotic runtimes (see |
---|
34 | Section~\ref{sec:abcl-build} page~\pageref{sec:abcl-build}). |
---|
35 | |
---|
36 | %%Preface to the Sixth edition, abcl-1.5.0 |
---|
37 | \subsection{Preface to the Sixth Edition} |
---|
38 | |
---|
39 | With the sixth major release of the implementation, we make the |
---|
40 | following explicit revision of our compatibility to the underlying |
---|
41 | JVM. Since we are an open source implementation, we insist on |
---|
42 | possible open access to the sources from with an JDK may both be built |
---|
43 | and run upon. This requirement is no longer met by Java 5, so |
---|
44 | henceforth with the release of \textsc{ABCL} 1.5, we will support |
---|
45 | Java 6, Java 7 and Java 8 runtimes. |
---|
46 | |
---|
47 | %%Preface to the Fifth edition, abcl-1.4.0 |
---|
48 | \subsection{Preface to the Fifth Edition} |
---|
49 | |
---|
50 | \textsc{ABCL} 1.4 consolidates eighteen months of production bug-fixes, |
---|
51 | and substantially improves the support for invoking external |
---|
52 | processes via \code{SYS:RUN-PROGRAM}. |
---|
53 | |
---|
54 | %%Preface to the Fourth edition, abcl-1.3. |
---|
55 | \subsection{Preface to the Fourth Edition} |
---|
56 | |
---|
57 | \textsc{ABCL} 1.3 now implements an optimized implementation of the |
---|
58 | \code{org.armedbear.lisp.LispStack} abstraction thanks to Dmitry |
---|
59 | Nadezhin which runs on ORCL JVMs from 1.[5-8] conformantly. |
---|
60 | |
---|
61 | %%Preface to the Third edition, abcl-1.2. |
---|
62 | \subsection{Preface to the Third Edition} |
---|
63 | The implementation now contains a performant and conformant |
---|
64 | implementation of (A)MOP to the point of inclusion in CLOSER-MOP's |
---|
65 | test suite. |
---|
66 | |
---|
67 | %%Preface to the second edition, abcl-1.1. |
---|
68 | |
---|
69 | \subsection{Preface to the Second Edition} |
---|
70 | |
---|
71 | \textsc{ABCL} 1.1 now contains \textsc{(A)MOP}. We hope you enjoy! --The Mgmt. |
---|
72 | |
---|
73 | \chapter{Introduction} |
---|
74 | |
---|
75 | Armed Bear Common Lisp (\textsc{ABCL}) is an implementation of |
---|
76 | \textsc{Common Lisp} that runs on the Java Virtual Machine |
---|
77 | (\textsc{JVM}). \textsc{ABCL} compiles \textsc{Common Lisp} to |
---|
78 | \textsc{Java} byte-code\footnote{The class files produced by the |
---|
79 | compiler have a bytecode version of ``49.0''.}, with an efficiency |
---|
80 | that varies upon the hosting JVM implementation. \textsc{ABCL} |
---|
81 | supports running on the Java 6, Java 7, Java 8, Java 11, Java 13, and |
---|
82 | Java 14 openjdk \textsc{JVM} implementations\footnote{As of April |
---|
83 | 2020, the AdoptOpenJDK.net community \url{https://adoptopenjdk.net/} |
---|
84 | provides perhaps the easiest installation of unencumbered openjdk |
---|
85 | implementations}. |
---|
86 | |
---|
87 | Armed Bear provides the following integration methods for interfacing |
---|
88 | with Java code and libraries: |
---|
89 | \begin{itemize} |
---|
90 | \item Lisp code can create Java objects and call their methods (see |
---|
91 | Section~\ref{sec:lisp-java}, page~\pageref{sec:lisp-java}). |
---|
92 | \item Java code can call Lisp functions and generic functions, either |
---|
93 | directly (Section~\ref{sec:calling-lisp-from-java}, |
---|
94 | page~\pageref{sec:calling-lisp-from-java}) or via \texttt{JSR-223} |
---|
95 | (Section~\ref{sec:java-scripting-api}, |
---|
96 | page~\pageref{sec:java-scripting-api}). |
---|
97 | \item \code{jinterface-implementation} creates Lisp-side implementations |
---|
98 | of Java interfaces that can be used as listeners for Swing classes and |
---|
99 | similar. |
---|
100 | \item \code{java:jnew-runtime-class} can inject fully synthetic Java |
---|
101 | classes--and their objects-- into the current JVM process whose |
---|
102 | behavior is specified via closures expressed in \textsc{Common |
---|
103 | Lisp}. \footnote{Parts of the current implementation are not fully |
---|
104 | finished, so the status of some interfaces here should be treated |
---|
105 | with skepticism if you run into problems.} |
---|
106 | |
---|
107 | \end{itemize} |
---|
108 | \textsc{ABCL} is supported by the Lisp library manager |
---|
109 | \textsc{QuickLisp}\footnote{\url{http://quicklisp.org/}} and can run many of the |
---|
110 | programs and libraries provided therein out-of-the-box. |
---|
111 | |
---|
112 | \section{Conformance} |
---|
113 | \label{section:conformance} |
---|
114 | |
---|
115 | \subsection{ANSI Common Lisp} |
---|
116 | \textsc{ABCL} is currently a (non)-conforming \textsc{ANSI} Common Lisp |
---|
117 | implementation due to the following known issues: |
---|
118 | |
---|
119 | \begin{itemize} |
---|
120 | \item The generic function signatures of the \code{CL:DOCUMENTATION} symbol |
---|
121 | do not match the specification. |
---|
122 | \item The \code{CL:TIME} form does not return a proper \code{CL:VALUES} |
---|
123 | environment to its caller. |
---|
124 | \item When merging pathnames and the defaults point to a \code{EXT:JAR-PATHNAME}, |
---|
125 | we set the \code{DEVICE} of the result to \code{:UNSPECIFIC} if the pathname to be |
---|
126 | be merged does not contain a specified \code{DEVICE}, does not contain a |
---|
127 | specified \code{HOST}, does contain a relative \code{DIRECTORY}, and we are |
---|
128 | not running on a \textsc{MSFT} Windows platform.\footnote{The intent of this |
---|
129 | rather arcane sounding deviation from conformance is so that the |
---|
130 | result of a merge won't fill in a \code{DEVICE} with the wrong "default |
---|
131 | device for the host" in the sense of the fourth paragraph in the |
---|
132 | \textsc{CLHS} description of MERGE-PATHNAMES (see in \cite{CLHS} the paragraph beginning |
---|
133 | "If the PATHNAME explicitly specifies a host and not a deviceâŠ"). |
---|
134 | A future version of the implementation may return to conformance |
---|
135 | by using the \code{HOST} value to reflect the type explicitly. |
---|
136 | } |
---|
137 | |
---|
138 | \end{itemize} |
---|
139 | |
---|
140 | Somewhat confusingly, this statement of non-conformance in the |
---|
141 | accompanying user documentation fulfills the requirements that |
---|
142 | \textsc{ABCL} is a conforming ANSI Common Lisp implementation according |
---|
143 | to the Common Lisp HyperSpec~\cite{CLHS}. Clarifications to this point |
---|
144 | are solicited. |
---|
145 | |
---|
146 | \textsc{ABCL} aims to be be a fully conforming \textsc{ANSI} Common Lisp implementation. |
---|
147 | Any other behavior should be reported as a bug. |
---|
148 | |
---|
149 | \subsection{Contemporary Common Lisp} |
---|
150 | In addition to \textsc{ANSI} conformance, \textsc{ABCL} strives to implement |
---|
151 | features expected of a contemporary \textsc{Common Lisp}, i.e. a Lisp of the |
---|
152 | post-2005 Renaissance. |
---|
153 | |
---|
154 | The following known problems detract from \textsc{ABCL} being a proper |
---|
155 | contemporary Common Lisp. |
---|
156 | \begin{itemize} |
---|
157 | \item An incomplete implementation of interactive debugging |
---|
158 | mechanisms, namely a no-op version of \code{STEP}\footnote{Somewhat |
---|
159 | surprisingly allowed by \textsc{ANSI}}, the inability to inspect |
---|
160 | local variables in a given call frame, and the inability to resume a |
---|
161 | halted computation at an arbitrarily selected call frame. |
---|
162 | \item Incomplete streams abstraction, in that \textsc{ABCL} needs a |
---|
163 | suitable abstraction between \textsc{ANSI} and \textsc{Gray streams} |
---|
164 | with a runtime switch for the beyond conforming |
---|
165 | behavior\footnote{The streams could be optimized to the |
---|
166 | \textsc{JVM} NIO \cite{nio} abstractions at great profit for |
---|
167 | binary byte-level manipulations.}. |
---|
168 | \item Incomplete documentation: source code is missing docstrings from |
---|
169 | all exported symbols from the \code{EXTENSIONS}, \code{SYSTEM}, |
---|
170 | \code{JAVA}, \code{MOP}, and \code{THREADS} packages. This user |
---|
171 | manual is currently in draft status. |
---|
172 | \end{itemize} |
---|
173 | |
---|
174 | |
---|
175 | |
---|
176 | \section{License} |
---|
177 | |
---|
178 | \textsc{ABCL} is licensed under the terms of the \textsc{GPL} v2 of |
---|
179 | June 1991 with an added ``classpath-exception'' clause (see the file |
---|
180 | \texttt{COPYING} in the source distribution\footnote{See |
---|
181 | \url{http://abcl.org/svn/trunk/tags/1.6.1/COPYING}} for the license, |
---|
182 | term 13 in the same file for the classpath exception). This license |
---|
183 | broadly means that you must distribute the sources to \textsc{ABCL}, |
---|
184 | including any changes you make, together with a program that includes |
---|
185 | \textsc{ABCL}, but that you are not required to distribute the sources |
---|
186 | of the whole program. Submitting your changes upstream to the \textsc{ABCL} |
---|
187 | development team is actively encouraged and very much appreciated, of |
---|
188 | course. |
---|
189 | |
---|
190 | \section{Contributors} |
---|
191 | |
---|
192 | \begin{itemize} |
---|
193 | \item Philipp Marek \texttt{Thanks for the markup, and review of the Manual} |
---|
194 | \item Douglas Miles \texttt{Thanks for the whacky IKVM stuff and keeping the flame alive |
---|
195 | in the dark years.} |
---|
196 | \item Alan Ruttenberg \texttt{Thanks for JSS.} |
---|
197 | \item Olof-Joachim Frahm |
---|
198 | \item piso |
---|
199 | \item and of course \emph{Peter Graves} |
---|
200 | \end{itemize} |
---|
201 | |
---|
202 | |
---|
203 | \chapter{Running ABCL} |
---|
204 | |
---|
205 | |
---|
206 | \textsc{ABCL} is packaged as a single jar file usually named either |
---|
207 | \texttt{abcl.jar} or possibly something like \texttt{abcl-1.6.1.jar} if |
---|
208 | using a versioned package on the local filesystem from your system |
---|
209 | vendor. This jar file can be executed from the command line to obtain a |
---|
210 | \textsc{REPL}\footnote{Read-Eval Print Loop, a Lisp command-line}, viz: |
---|
211 | |
---|
212 | \index{REPL} |
---|
213 | |
---|
214 | \begin{listing-shell} |
---|
215 | cmd$ java -jar abcl.jar |
---|
216 | \end{listing-shell} %$ unconfuse Emacs syntax highlighting |
---|
217 | |
---|
218 | \emph{N.b.} for the proceeding command to work, the \texttt{java} |
---|
219 | executable needs to be in your path. |
---|
220 | |
---|
221 | To facilitate the use of ABCL in tool chains such as SLIME~\cite{slime} |
---|
222 | (the Superior Lisp Interaction Mode for Emacs), we provide both a Bourne |
---|
223 | shell script and a \textsc{DOS} batch file. If you or your |
---|
224 | administrator adjusted the path properly, ABCL may be executed simply |
---|
225 | as: |
---|
226 | |
---|
227 | \begin{listing-shell} |
---|
228 | cmd$ abcl |
---|
229 | \end{listing-shell}%$ |
---|
230 | |
---|
231 | Probably the easiest way of setting up an editing environment using the |
---|
232 | \textsc{Emacs} editor is to use \textsc{Quicklisp} and follow the instructions at |
---|
233 | \url{http://www.quicklisp.org/beta/#slime}. |
---|
234 | |
---|
235 | \section{Options} |
---|
236 | |
---|
237 | ABCL supports the following command line options: |
---|
238 | |
---|
239 | \index{Command Line Options} |
---|
240 | |
---|
241 | \begin{description} |
---|
242 | % FIXME move this fuggliness to our macros. sigh. |
---|
243 | \item \code{\textendash\textendash help} displays a help message. |
---|
244 | \item \code{\textendash\textendash noinform} Suppresses the printing of startup information and banner. |
---|
245 | \item \code{\textendash\textendash noinit} suppresses the loading of the \verb+~/.abclrc+ startup file. |
---|
246 | \item \code{\textendash\textendash nosystem} suppresses loading the \texttt{system.lisp} customization file. |
---|
247 | \item \code{\textendash\textendash eval FORM} evaluates FORM before initializing the REPL. |
---|
248 | \item \code{\textendash\textendash load FILE} loads the file FILE before initializing the REPL. |
---|
249 | \item \code{\textendash\textendash load-system-file FILE} loads the system file FILE before initializing the REPL. |
---|
250 | \item \code{\textendash\textendash batch} evaluates forms specified by arguments and in |
---|
251 | the initialization file \verb+~/.abclrc+, and then exits without |
---|
252 | starting a \textsc{REPL}. |
---|
253 | \end{description} |
---|
254 | |
---|
255 | All of the command line arguments following the occurrence of \verb+--+ |
---|
256 | are passed unprocessed into a list of strings accessible via the |
---|
257 | variable \code{EXT:*COMMAND-LINE-ARGUMENT-LIST*} from within ABCL. |
---|
258 | |
---|
259 | \section{Initialization} |
---|
260 | |
---|
261 | If the \textsc{ABCL} process is started without the |
---|
262 | \code{\textendash\textendash noinit} flag, it attempts to load a file |
---|
263 | named \code{.abclrc} in the user's home directory and then interpret |
---|
264 | its contents. |
---|
265 | |
---|
266 | The user's home directory is determined by the value of the JVM system |
---|
267 | property \texttt{user.home}. This value may or may not correspond |
---|
268 | to the value of the \texttt{HOME} system environment variable, at the |
---|
269 | discretion of the JVM implementation that \textsc{ABCL} finds itself |
---|
270 | hosted upon. |
---|
271 | |
---|
272 | \chapter{Interaction with the Hosting JVM} |
---|
273 | |
---|
274 | % Plan of Attack |
---|
275 | % |
---|
276 | % describe calling Java from Lisp, and calling Lisp from Java, |
---|
277 | % probably in two separate sections. Presumably, we can partition our |
---|
278 | % audience into those who are more comfortable with Java, and those |
---|
279 | % that are more comforable with Lisp |
---|
280 | |
---|
281 | The Armed Bear Common Lisp implementation is hosted on a Java Virtual |
---|
282 | Machine. This chapter describes the mechanisms by which the |
---|
283 | implementation interacts with that hosting mechanism. |
---|
284 | |
---|
285 | \section{Lisp to Java} |
---|
286 | \label{sec:lisp-java} |
---|
287 | |
---|
288 | \textsc{ABCL} offers a number of mechanisms to interact with Java from its |
---|
289 | Lisp environment. It allows calling both instance and static methods |
---|
290 | of Java objects, manipulation of instance and static fields on Java |
---|
291 | objects, and construction of new Java objects. |
---|
292 | |
---|
293 | When calling Java routines, some values will automatically be |
---|
294 | converted by the FFI\footnote{Foreign Function Interface is the term |
---|
295 | of art for the part of a \textsc{Lisp} implementation which implements |
---|
296 | calling code written in other languages, typically normalized to the |
---|
297 | local C compiler calling conventions.} from \textsc{Lisp} values to Java |
---|
298 | values. These conversions typically apply to strings, integers and |
---|
299 | floats. Other values need to be converted to their \textsc{Java} equivalents by |
---|
300 | the programmer before calling the Java object method. Java values |
---|
301 | returned to \textsc{Lisp} are also generally converted back to their Lisp |
---|
302 | counterparts. Some operators make an exception to this rule and do not |
---|
303 | perform any conversion; those are the ``raw'' counterparts of certain |
---|
304 | FFI functions and are recognizable by their name ending with |
---|
305 | \code{-RAW}. |
---|
306 | |
---|
307 | \subsection{Low-level Java API} |
---|
308 | |
---|
309 | This subsection covers the low-level API available after evaluating |
---|
310 | \code{(require :java)}. A higher level \textsc{Java} API, developed by Alan |
---|
311 | Ruttenberg, is available in the \code{contrib/jss} directory and described |
---|
312 | later in this document, see Section~\ref{section:jss} on page |
---|
313 | \pageref{section:jss}. |
---|
314 | |
---|
315 | \subsubsection{Calling Java Object Methods} |
---|
316 | |
---|
317 | There are two ways to call a Java object method in the low-level (basic) API: |
---|
318 | |
---|
319 | \begin{itemize} |
---|
320 | \item Call a specific method reference (which was previously acquired) |
---|
321 | \item Dynamic dispatch using the method name and the call-specific |
---|
322 | arguments provided by finding the best match (see |
---|
323 | Section~\ref{sec:param-matching-for-ffi}). |
---|
324 | \end{itemize} |
---|
325 | |
---|
326 | \code{JAVA:JMETHOD} is used to acquire a specific method reference. The |
---|
327 | function takes two or more arguments. The first is a Java class |
---|
328 | designator (a \code{JAVA:JAVA-CLASS} object returned by |
---|
329 | \code{JAVA:JCLASS} or a string naming a Java class). The second is a |
---|
330 | string naming the method. |
---|
331 | |
---|
332 | Any arguments beyond the first two should be strings naming Java |
---|
333 | classes, with one exception as listed in the next paragraph. These |
---|
334 | classes specify the types of the arguments for the method. |
---|
335 | |
---|
336 | When \code{JAVA:JMETHOD} is called with three parameters and the last |
---|
337 | parameter is an integer, the first method by that name and matching |
---|
338 | number of parameters is returned. |
---|
339 | |
---|
340 | Once a method reference has been acquired, it can be invoked using |
---|
341 | \code{JAVA:JCALL}, which takes the method as the first argument. The |
---|
342 | second argument is the object instance to call the method on, or |
---|
343 | \code{NIL} in case of a static method. Any remaining parameters are |
---|
344 | used as the remaining arguments for the call. |
---|
345 | |
---|
346 | \subsubsection{Calling Java object methods: dynamic dispatch} |
---|
347 | |
---|
348 | The second way of calling Java object methods is by using dynamic dispatch. |
---|
349 | In this case \code{JAVA:JCALL} is used directly without acquiring a method |
---|
350 | reference first. In this case, the first argument provided to \code{JAVA:JCALL} |
---|
351 | is a string naming the method to be called. The second argument is the instance |
---|
352 | on which the method should be called and any further arguments are used to |
---|
353 | select the best matching method and dispatch the call. |
---|
354 | |
---|
355 | \subsubsection{Dynamic dispatch: Caveats} |
---|
356 | |
---|
357 | Dynamic dispatch is performed by using the Java reflection |
---|
358 | API\footnote{The Java reflection API is found in the |
---|
359 | \code{java.lang.reflect} package}. Generally the dispatch works |
---|
360 | fine, but there are corner cases where the API does not correctly |
---|
361 | reflect all the details involved in calling a Java method. An example |
---|
362 | is the following Java code: |
---|
363 | |
---|
364 | \begin{listing-java} |
---|
365 | ZipFile jar = new ZipFile("/path/to/some.jar"); |
---|
366 | Object els = jar.entries(); |
---|
367 | Method method = els.getClass().getMethod("hasMoreElements"); |
---|
368 | method.invoke(els); |
---|
369 | \end{listing-java} |
---|
370 | |
---|
371 | Even though the method \code{hasMoreElements()} is public in |
---|
372 | \code{Enumeration}, the above code fails with |
---|
373 | |
---|
374 | \begin{listing-java} |
---|
375 | java.lang.IllegalAccessException: Class ... can |
---|
376 | not access a member of class java.util.zip.ZipFile\$2 with modifiers |
---|
377 | "public" |
---|
378 | at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:65) |
---|
379 | at java.lang.reflect.Method.invoke(Method.java:583) |
---|
380 | at ... |
---|
381 | \end{listing-java} |
---|
382 | |
---|
383 | This is because the method has been overridden by a non-public class and |
---|
384 | the reflection API, unlike \texttt{javac}, is not able to handle such a case. |
---|
385 | |
---|
386 | While code like that is uncommon in Java, it is typical of ABCL's FFI |
---|
387 | calls. The code above corresponds to the following Lisp code: |
---|
388 | |
---|
389 | \begin{listing-lisp} |
---|
390 | (let ((jar (jnew "java.util.zip.ZipFile" "/path/to/some.jar"))) |
---|
391 | (let ((els (jcall "entries" jar))) |
---|
392 | (jcall "hasMoreElements" els))) |
---|
393 | \end{listing-lisp} |
---|
394 | |
---|
395 | except that the dynamic dispatch part is not shown. |
---|
396 | |
---|
397 | To avoid such pitfalls, all Java objects in \textsc{ABCL} carry an extra |
---|
398 | field representing the ``intended class'' of the object. That class is |
---|
399 | used first by \code{JAVA:JCALL} and similar to resolve methods; the |
---|
400 | actual class of the object is only tried if the method is not found in |
---|
401 | the intended class. Of course, the intended class is always a |
---|
402 | super-class of the actual class -- in the worst case, they coincide. The |
---|
403 | intended class is deduced by the return type of the method that |
---|
404 | originally returned the Java object; in the case above, the intended |
---|
405 | class of \code{ELS} is \code{java.util.Enumeration} because that is the |
---|
406 | return type of the \code{entries} method. |
---|
407 | |
---|
408 | While this strategy is generally effective, there are cases where the |
---|
409 | intended class becomes too broad to be useful. The typical example |
---|
410 | is the extraction of an element from a collection, since methods in |
---|
411 | the collection API erase all types to \code{Object}. The user can |
---|
412 | always force a more specific intended class by using the \code{JAVA:JCOERCE} |
---|
413 | operator. |
---|
414 | |
---|
415 | % \begin{itemize} |
---|
416 | % \item Java values are accessible as objects of type JAVA:JAVA-OBJECT. |
---|
417 | % \item The Java FFI presents a Lisp package (JAVA) with many useful |
---|
418 | % symbols for manipulating the artifacts of expectation on the JVM, |
---|
419 | % including creation of new objects \ref{JAVA:JNEW}, \ref{JAVA:JMETHOD}), the |
---|
420 | % introspection of values \ref{JAVA:JFIELD}, the execution of methods |
---|
421 | % (\ref{JAVA:JCALL}, \ref{JAVA:JCALL-RAW}, \ref{JAVA:JSTATIC}) |
---|
422 | % \item The JSS package (\ref{JSS}) in contrib introduces a convenient macro |
---|
423 | % syntax \ref{JSS:SHARPSIGN_DOUBLEQUOTE_MACRO} for accessing Java |
---|
424 | % methods, and additional convenience functions. |
---|
425 | % \item Java classes and libraries may be dynamically added to the |
---|
426 | % classpath at runtime (JAVA:ADD-TO-CLASSPATH). |
---|
427 | % \end{itemize} |
---|
428 | |
---|
429 | \subsubsection{Calling Java class static methods} |
---|
430 | |
---|
431 | Like non-static methods, references to static methods can be acquired by |
---|
432 | using the \code{JAVA:JMETHOD} primitive. Static methods are called with |
---|
433 | \code{JAVA:JSTATIC} instead of \code{JAVA:JCALL}. |
---|
434 | |
---|
435 | Like \code{JAVA:JCALL}, \code{JAVA:JSTATIC} supports dynamic dispatch by |
---|
436 | passing the name of the method as a string instead of passing a method reference. |
---|
437 | The parameters should be values to pass in the function call instead of |
---|
438 | a specification of classes for each parameter. |
---|
439 | |
---|
440 | \subsubsection{Parameter matching for FFI dynamic dispatch} |
---|
441 | \label{sec:param-matching-for-ffi} |
---|
442 | |
---|
443 | The algorithm used to resolve the best matching method given the name |
---|
444 | and the arguments' types is the same as described in the Java Language |
---|
445 | Specification. Any deviation should be reported as a bug. |
---|
446 | |
---|
447 | % ###TODO reference to correct JLS section |
---|
448 | |
---|
449 | \subsubsection{Instantiating Java objects} |
---|
450 | |
---|
451 | \textsc{Java} objects can be instantiated (created) from \textsc{Lisp} by calling |
---|
452 | a constructor from the class of the object to be created. The |
---|
453 | \code{JAVA:JCONSTRUCTOR} primitive is used to acquire a constructor |
---|
454 | reference. Its arguments specify the types of arguments of the constructor |
---|
455 | method the same way as with \code{JAVA:JMETHOD}. |
---|
456 | |
---|
457 | The obtained constructor is passed as an argument to \code{JAVA:JNEW}, |
---|
458 | together with any arguments. \code{JAVA:JNEW} can also be invoked with |
---|
459 | a string naming the class as its first argument. |
---|
460 | |
---|
461 | \subsubsection{Accessing Java object and class fields} |
---|
462 | |
---|
463 | Fields in Java objects can be accessed using the getter and setter |
---|
464 | functions \code{JAVA:JFIELD} and \code{(SETF JAVA:JFIELD)}. Static |
---|
465 | (class) fields are accessed the same way, but with a class object or |
---|
466 | string naming a class as first argument. |
---|
467 | |
---|
468 | Like \code{JAVA:JCALL} and friends, values returned from these accessors carry |
---|
469 | an intended class around, and values which can be converted to Lisp values will |
---|
470 | be converted. |
---|
471 | |
---|
472 | \section{Java to Lisp} |
---|
473 | |
---|
474 | This section describes the various ways that one interacts with \textsc{Lisp} |
---|
475 | from \textsc{Java} code. In order to access the \textsc{Lisp} world from \textsc{Java}, one needs |
---|
476 | to be aware of a few things, the most important ones being listed below: |
---|
477 | |
---|
478 | \begin{itemize} |
---|
479 | \item All Lisp values are descendants of \code{LispObject}. |
---|
480 | \item Lisp symbols are accessible either via static members of the |
---|
481 | \code{Symbol} class, or by dynamically introspecting a \code{Package} |
---|
482 | object. |
---|
483 | \item The Lisp dynamic environment may be saved via |
---|
484 | \code{LispThread.bindSpecial(Binding)} and restored via |
---|
485 | \code{LispThread.resetSpecialBindings(Mark)}. |
---|
486 | \item Functions can be executed by invoking \code{LispObject.execute(args |
---|
487 | [...])} |
---|
488 | \end{itemize} |
---|
489 | |
---|
490 | \subsection{Calling Lisp from Java} |
---|
491 | \label{sec:calling-lisp-from-java} |
---|
492 | |
---|
493 | Note: the entire \textsc{ABCL} \textsc{Lisp} system implementation in |
---|
494 | \textsc{Java} is resident in the \texttt{org.armedbear.lisp} package, |
---|
495 | but the following code snippets do not show the relevant import |
---|
496 | statements in the interest of brevity. An example of the import |
---|
497 | statement would be |
---|
498 | \begin{listing-java} |
---|
499 | import org.armedbear.lisp.*; |
---|
500 | \end{listing-java} |
---|
501 | to potentially import all the JVM symbol from the \code{org.armedbear.lisp} |
---|
502 | namespace. |
---|
503 | |
---|
504 | There can only ever be a single Lisp interpreter per \textsc{JVM} instance. A |
---|
505 | reference to this interpreter is obtained by calling the static method |
---|
506 | \code{Interpreter.createInstance()}. |
---|
507 | |
---|
508 | \begin{listing-java} |
---|
509 | Interpreter interpreter = Interpreter.createInstance(); |
---|
510 | \end{listing-java} |
---|
511 | |
---|
512 | If this method has already been invoked in the lifetime of the current |
---|
513 | Java process it will return \texttt{null}, so if you are writing \textsc{Java} |
---|
514 | whose life-cycle is a bit out of your control (like in a \textsc{Java} servlet), |
---|
515 | a safer invocation pattern might be: |
---|
516 | |
---|
517 | \begin{listing-java} |
---|
518 | Interpreter interpreter = Interpreter.getInstance(); |
---|
519 | if (interpreter == null) { |
---|
520 | interpreter = Interpreter.createInstance(); |
---|
521 | } |
---|
522 | \end{listing-java} |
---|
523 | |
---|
524 | |
---|
525 | The Lisp \code{eval} primitive may simply be passed strings for evaluation: |
---|
526 | |
---|
527 | \begin{listing-java} |
---|
528 | String line = "(load \"file.lisp\")"; |
---|
529 | LispObject result = interpreter.eval(line); |
---|
530 | \end{listing-java} |
---|
531 | |
---|
532 | Notice that all possible return values from an arbitrary Lisp |
---|
533 | computation are collapsed into a single return value. Doing useful |
---|
534 | further computation on the \code{LispObject} depends on knowing what the |
---|
535 | result of the computation might be. This usually involves some amount |
---|
536 | of \code{instanceof} introspection, and forms a whole topic to itself |
---|
537 | (see Section~\ref{topic:Introspecting a LispObject}, |
---|
538 | page~\pageref{topic:Introspecting a LispObject}). |
---|
539 | |
---|
540 | Using \code{eval} involves the Lisp interpreter. Lisp functions may |
---|
541 | also be directly invoked by Java method calls as follows. One simply |
---|
542 | locates the package containing the symbol, obtains a reference to the |
---|
543 | symbol, and then invokes the \code{execute()} method with the desired |
---|
544 | parameters. |
---|
545 | |
---|
546 | \begin{listing-java} |
---|
547 | interpreter.eval("(defun foo (msg)" + |
---|
548 | "(format nil \"You told me '~A'~%\" msg))"); |
---|
549 | Package pkg = Packages.findPackage("CL-USER"); |
---|
550 | Symbol foo = pkg.findAccessibleSymbol("FOO"); |
---|
551 | Function fooFunction = (Function)foo.getSymbolFunction(); |
---|
552 | JavaObject parameter = new JavaObject("Lisp is fun!"); |
---|
553 | LispObject result = fooFunction.execute(parameter); |
---|
554 | // How to get the "naked string value"? |
---|
555 | System.out.println("The result was " + result.writeToString()); |
---|
556 | \end{listing-java} |
---|
557 | |
---|
558 | If one is calling a function in the CL package, the syntax can become |
---|
559 | considerably simpler. If we can locate the instance of definition in |
---|
560 | the ABCL Java source, we can invoke the symbol directly. For instance, |
---|
561 | to tell if a \code{LispObject} is (Lisp) \texttt{NIL}, we can invoke the |
---|
562 | CL function \code{NULL} in the following way: |
---|
563 | |
---|
564 | |
---|
565 | \begin{listing-java} |
---|
566 | boolean nullp(LispObject object) { |
---|
567 | LispObject result = Primitives.NULL.execute(object); |
---|
568 | if (result == NIL) { |
---|
569 | return false; |
---|
570 | } |
---|
571 | return true; |
---|
572 | } |
---|
573 | \end{listing-java} |
---|
574 | |
---|
575 | Note, that the symbol \code{nil} is explicitly named in the |
---|
576 | \textsc{Java} namespace as \code{Symbol.NIL} but is always present in |
---|
577 | the local namespace in its unadorned form for the convenience of the |
---|
578 | User. |
---|
579 | |
---|
580 | \subsubsection{Multiple Values} |
---|
581 | |
---|
582 | After a call to a function that returns Lisp multiple values, the |
---|
583 | values are associated with the executing \code{LispThread} until the |
---|
584 | next call into Lisp. One may access the values object as a list of |
---|
585 | \code{LispObject} instances via a call to \code{getValues()} on that |
---|
586 | thread reference |
---|
587 | as evidenced by the following code: |
---|
588 | |
---|
589 | \begin{listing-java} |
---|
590 | |
---|
591 | org.armedbear.lisp.Package cl = Packages.findPackage("CL"); |
---|
592 | Symbol valuesSymbol = cl.findAccessibleSymbol("VALUES"); |
---|
593 | LispObject[] valuesArgs = { |
---|
594 | LispInteger.getInstance(1), LispInteger.getInstance(2) |
---|
595 | }; |
---|
596 | // equivalent to ``(values 1 2)'' |
---|
597 | LispObject result = valuesSymbol.execute(valuesArgs); |
---|
598 | LispObject[] values = LispThread.currentThread().getValues(); |
---|
599 | for (LispObject value: values) { |
---|
600 | System.out.println("value ==> " + value.printObject()); |
---|
601 | } |
---|
602 | \end{listing-java} |
---|
603 | |
---|
604 | \subsubsection{Introspecting a LispObject} |
---|
605 | \label{topic:Introspecting a LispObject} |
---|
606 | |
---|
607 | We present various patterns for introspecting an arbitrary |
---|
608 | \code{LispObject} which can hold the result of every Lisp evaluation |
---|
609 | into semantics that Java can meaningfully deal with. |
---|
610 | |
---|
611 | \paragraph{LispObject as \code{boolean}} |
---|
612 | |
---|
613 | If the \code{LispObject} is to be interpreted as a generalized boolean |
---|
614 | value, one can use \code{getBooleanValue()} to convert to Java: |
---|
615 | |
---|
616 | \begin{listing-java} |
---|
617 | LispObject object = Symbol.NIL; |
---|
618 | boolean javaValue = object.getBooleanValue(); |
---|
619 | \end{listing-java} |
---|
620 | |
---|
621 | Since in Lisp any value other than \code{NIL} means "true", Java |
---|
622 | equality can also be used, which is a bit easier to type and better in |
---|
623 | terms of information it conveys to the compiler: |
---|
624 | |
---|
625 | \begin{listing-java} |
---|
626 | boolean javaValue = (object != Symbol.NIL); |
---|
627 | \end{listing-java} |
---|
628 | |
---|
629 | \paragraph{LispObject as a list} |
---|
630 | |
---|
631 | If \code{LispObject} is a list, it will have the type \code{Cons}. One |
---|
632 | can then use the \code{copyToArray} method to make things a bit more |
---|
633 | suitable for Java iteration. |
---|
634 | |
---|
635 | \begin{listing-java} |
---|
636 | LispObject result = interpreter.eval("'(1 2 4 5)"); |
---|
637 | if (result instanceof Cons) { |
---|
638 | LispObject array[] = ((Cons)result.copyToArray()); |
---|
639 | ... |
---|
640 | } |
---|
641 | \end{listing-java} |
---|
642 | |
---|
643 | A more Lispy way to iterate down a list is to use the `cdr()` access |
---|
644 | function just as like one would traverse a list in Lisp:; |
---|
645 | |
---|
646 | \begin{listing-java} |
---|
647 | LispObject result = interpreter.eval("'(1 2 4 5)"); |
---|
648 | while (result != Symbol.NIL) { |
---|
649 | doSomething(result.car()); |
---|
650 | result = result.cdr(); |
---|
651 | } |
---|
652 | \end{listing-java} |
---|
653 | |
---|
654 | \section{Java Scripting API (JSR-223)} |
---|
655 | \label{sec:java-scripting-api} |
---|
656 | |
---|
657 | ABCL can be built with support for JSR-223~\cite{jsr-223}, which offers |
---|
658 | a language-agnostic API to invoke other languages from Java. The binary |
---|
659 | distribution download-able from ABCL's homepage is built with JSR-223 |
---|
660 | support. If you're building ABCL from source on a pre-1.6 JVM, you need |
---|
661 | to have a JSR-223 implementation in your classpath (such as Apache |
---|
662 | Commons BSF 3.x or greater) in order to build ABCL with JSR-223 support; |
---|
663 | otherwise, this feature will not be built. |
---|
664 | |
---|
665 | This section describes the design decisions behind the ABCL JSR-223 |
---|
666 | support. It is not a description of what JSR-223 is or a tutorial on |
---|
667 | how to use it. See |
---|
668 | \url{http://abcl.org/trac/browser/trunk/abcl/examples/jsr-223} |
---|
669 | for example usage. |
---|
670 | |
---|
671 | \subsection{Conversions} |
---|
672 | |
---|
673 | In general, ABCL's implementation of the JSR-223 API performs implicit |
---|
674 | conversion from Java objects to Lisp objects when invoking Lisp from |
---|
675 | Java, and the opposite when returning values from Java to Lisp. This |
---|
676 | potentially reduces coupling between user code and ABCL. To avoid such |
---|
677 | conversions, wrap the relevant objects in \code{JavaObject} instances. |
---|
678 | |
---|
679 | \subsection{Implemented JSR-223 interfaces} |
---|
680 | |
---|
681 | JSR-223 defines three main interfaces, of which two (\code{Invocable} |
---|
682 | and \code{Compilable}) are optional. ABCL implements all the three |
---|
683 | interfaces - \code{ScriptEngine} and the two optional ones - almost |
---|
684 | completely. While the JSR-223 API is not specific to a single scripting |
---|
685 | language, it was designed with languages with a more or less Java-like |
---|
686 | object model in mind: languages such as Javascript, Python, Ruby, which |
---|
687 | have a concept of "class" or "object" with "fields" and "methods". Lisp |
---|
688 | is a bit different, so certain adaptations were made, and in one case a |
---|
689 | method has been left unimplemented since it does not map at all to Lisp. |
---|
690 | |
---|
691 | \subsubsection{The ScriptEngine} |
---|
692 | |
---|
693 | The main interface defined by JSR-223, \code{javax.script.ScriptEngine}, |
---|
694 | is implemented by the class |
---|
695 | \code{org.armedbear.lisp.scripting.AbclScriptEngine}. \code{AbclScriptEngine} |
---|
696 | is a singleton, reflecting the fact that ABCL is a singleton as |
---|
697 | well. You can obtain an instance of \code{AbclScriptEngine} using the |
---|
698 | \code{AbclScriptEngineFactory} or by using the service provider |
---|
699 | mechanism through \code{ScriptEngineManager} (refer to the |
---|
700 | \texttt{javax.script} documentation). |
---|
701 | |
---|
702 | \subsection{Start-up and configuration file} |
---|
703 | |
---|
704 | At start-up (i.e. when its constructor is invoked, as part of the |
---|
705 | static initialization phase of \code{AbclScriptEngineFactory}) the ABCL |
---|
706 | script engine attempts to load an "init file" from the classpath |
---|
707 | (\texttt{/abcl-script-config.lisp}). If present, this file can be used to |
---|
708 | customize the behavior of the engine, by setting a number of |
---|
709 | variables in the \code{ABCL-SCRIPT} package. Here is a list of the available |
---|
710 | variables: |
---|
711 | |
---|
712 | \begin{description} |
---|
713 | \item[\texttt{*use-throwing-debugger*}] controls whether ABCL uses a |
---|
714 | non-standard debugging hook function to throw a Java exception |
---|
715 | instead of dropping into the debugger in case of unhandled error |
---|
716 | conditions. |
---|
717 | \begin{itemize} |
---|
718 | \item Default value: \texttt{T} |
---|
719 | \item Rationale: it is more convenient for Java programmers using |
---|
720 | Lisp as a scripting language to have it return exceptions to Java |
---|
721 | instead of handling them in the Lisp world. |
---|
722 | \item Known Issues: the non-standard debugger hook has been reported |
---|
723 | to misbehave in certain circumstances, so consider disabling it if |
---|
724 | it doesn't work for you. |
---|
725 | \end{itemize} |
---|
726 | \item[\texttt{*launch-swank-at-startup*}] If true, Swank will be launched at |
---|
727 | startup. See \texttt{*swank-dir*} and \texttt{*swank-port*}. |
---|
728 | \begin{itemize} |
---|
729 | \item Default value: \texttt{NIL} |
---|
730 | \end{itemize} |
---|
731 | \item[\texttt{*swank-dir*}] The directory where Swank is installed. Must be set |
---|
732 | if \texttt{*launch-swank-at-startup*} is true. |
---|
733 | \item[\texttt{*swank-port*}] The port where Swank will listen for |
---|
734 | connections. Must be set if \texttt{*launch-swank-at-startup*} is |
---|
735 | true. |
---|
736 | \begin{itemize} |
---|
737 | \item Default value: 4005 |
---|
738 | \end{itemize} |
---|
739 | \end{description} |
---|
740 | |
---|
741 | Additionally, at startup the AbclScriptEngine will \code{(require |
---|
742 | 'asdf)} - in fact, it uses asdf to load Swank. |
---|
743 | |
---|
744 | \subsection{Evaluation} |
---|
745 | |
---|
746 | Code is read and evaluated in the package \code{ABCL-SCRIPT-USER}. This |
---|
747 | packages \texttt{USE}s the \code{COMMON-LISP}, \code{JAVA} and |
---|
748 | \code{ABCL-SCRIPT} packages. Future versions of the script engine might |
---|
749 | make this default package configurable. The \code{CL:LOAD} function is |
---|
750 | used under the hood for evaluating code, and thus the behavior of |
---|
751 | \code{LOAD} is guaranteed. This allows, among other things, |
---|
752 | \code{IN-PACKAGE} forms to change the package in which the loaded code |
---|
753 | is read. |
---|
754 | |
---|
755 | It is possible to evaluate code in what JSR-223 calls a |
---|
756 | ``ScriptContext'' (basically a flat environment of name$\rightarrow$value |
---|
757 | pairs). This context is used to establish special bindings for all the |
---|
758 | variables defined in it; since variable names are strings from Java's |
---|
759 | point of view, they are first interned using \code{READ-FROM-STRING} with, as |
---|
760 | usual, \code{ABCL-SCRIPT-USER} as the default package. Variables are declared |
---|
761 | special because CL's \code{LOAD}, \code{EVAL} and \code{COMPILE} |
---|
762 | functions work in a null lexical environment and would ignore |
---|
763 | non-special bindings. |
---|
764 | |
---|
765 | Contrary to what the function \code{LOAD} does, evaluation of a series |
---|
766 | of forms returns the value of the last form instead of T, so the |
---|
767 | evaluation of short scripts does the Right Thing. |
---|
768 | |
---|
769 | \subsection{Compilation} |
---|
770 | |
---|
771 | \code{AbclScriptEngine} implements the \code{javax.script.Compilable} |
---|
772 | interface. Currently it only supports compilation using temporary |
---|
773 | files. Compiled code, returned as an instance of |
---|
774 | \texttt{javax.script.CompiledScript}, is read, compiled and executed |
---|
775 | by default in the \code{abcl-script-user} package, just like evaluated |
---|
776 | code. In contrast to evaluated code, though, due to the way the |
---|
777 | \textsc{ABCL} compiler works, compiled code contains no reference to |
---|
778 | top-level self-evaluating objects (like numbers or strings). Thus, |
---|
779 | when evaluated, a piece of compiled code will return the value of the |
---|
780 | last non-self-evaluating form: for example the code |
---|
781 | ``\code{(do-something) 42}'' will return 42 when interpreted, but will |
---|
782 | return the result of (do-something) when compiled and later |
---|
783 | evaluated. To ensure consistency of behavior between interpreted and |
---|
784 | compiled code, make sure the last form is always a compound form - at |
---|
785 | least \code{(identity some-literal-object)}. Note that this issue |
---|
786 | should not matter in real code, where it is unlikely that a top-level |
---|
787 | self-evaluating form will appear as the last form in a file (in fact, |
---|
788 | the Common Lisp load function always returns \code{t} upon success; |
---|
789 | with \textsc{JSR-223} this policy has been changed to make evaluation |
---|
790 | of small code snippets work as intended). |
---|
791 | |
---|
792 | \subsection{Invocation of functions and methods} |
---|
793 | |
---|
794 | AbclScriptEngine implements the \code{javax.script.Invocable} |
---|
795 | interface, which allows to directly call Lisp functions and methods, |
---|
796 | and to obtain Lisp implementations of Java interfaces. This is only |
---|
797 | partially possible with Lisp since it has functions, but not methods - |
---|
798 | not in the traditional OO sense, at least, since Lisp methods are not |
---|
799 | attached to objects but belong to generic functions. Thus, the method |
---|
800 | \code{invokeMethod()} is not implemented and throws an |
---|
801 | \texttt{UnsupportedOperationException} when called. The \code{invokeFunction()} |
---|
802 | method should be used to call both regular and generic functions. |
---|
803 | |
---|
804 | \subsection{Implementation of Java interfaces in Lisp} |
---|
805 | |
---|
806 | ABCL can use the Java reflection-based proxy feature to implement Java |
---|
807 | interfaces in Lisp. It has several built-in ways to implement an |
---|
808 | interface, and supports definition of new ones. The |
---|
809 | \code{JAVA:JMAKE-PROXY} generic function is used to make such |
---|
810 | proxies. It has the following signature: |
---|
811 | |
---|
812 | \code{jmake-proxy interface implementation \&optional lisp-this ==> proxy} |
---|
813 | |
---|
814 | \code{interface} is a Java interface metaobject (e.g. obtained by |
---|
815 | invoking \code{jclass}) or a string naming a Java |
---|
816 | interface. \code{implementation} is the object used to implement the |
---|
817 | interface - several built-in methods of jmake-proxy exist for various |
---|
818 | types of implementations. \code{lisp-this} is an object passed to the |
---|
819 | closures implementing the Lisp "methods" of the interface, and |
---|
820 | defaults to \code{NIL}. |
---|
821 | |
---|
822 | The returned proxy is an instance of the interface, with methods |
---|
823 | implemented with Lisp functions. |
---|
824 | |
---|
825 | Built-in interface-implementation types include: |
---|
826 | |
---|
827 | \begin{itemize} |
---|
828 | \item a single Lisp function which, upon invocation of any method in |
---|
829 | the interface, will be passed the method name, the Lisp-this object, |
---|
830 | and all the parameters. Useful for interfaces with a single method, |
---|
831 | or to implement custom interface-implementation strategies. |
---|
832 | \item a hash-map of method-name $\rightarrow$ Lisp function mappings. Function |
---|
833 | signature is \code{(lisp-this \&rest args)}. |
---|
834 | \item a Lisp package. The name of the Java method to invoke is first |
---|
835 | transformed in an idiomatic Lisp name (\code{javaMethodName} becomes |
---|
836 | \code{JAVA-METHOD-NAME}) and a symbol with that name is searched in |
---|
837 | the package. If it exists and is fbound, the corresponding function |
---|
838 | will be called. Function signature is as the hash-table case. |
---|
839 | \end{itemize} |
---|
840 | |
---|
841 | This functionality is exposed by the class \code{AbclScriptEngine} via |
---|
842 | the two methods \code{getInterface(Class)} and |
---|
843 | \code{getInterface(Object, Class)}. The former returns an interface |
---|
844 | implemented with the current Lisp package, the latter allows the |
---|
845 | programmer to pass an interface-implementation object which will in turn |
---|
846 | be passed to the \code{jmake-proxy} generic function. |
---|
847 | |
---|
848 | \subsection{Implementation of Java classes in Lisp} |
---|
849 | |
---|
850 | See \code{JAVA:JNEW-RUNTIME-CLASS} in \ref{JAVA:JNEW-RUNTIME-CLASS}. |
---|
851 | |
---|
852 | |
---|
853 | \chapter{Implementation Dependent Extensions} |
---|
854 | |
---|
855 | As outlined by the \textsc{CLHS} \textsc{ANSI} conformance guidelines, |
---|
856 | we document the extensions to the Armed Bear Common Lisp implementation made |
---|
857 | accessible to the user by virtue of being an exported symbol in the |
---|
858 | \code{java}, \code{threads}, or \code{extensions} packages. |
---|
859 | |
---|
860 | \section{JAVA} |
---|
861 | |
---|
862 | \subsection{Modifying the JVM CLASSPATH} |
---|
863 | |
---|
864 | The \code{JAVA:ADD-TO-CLASSPATH} generic functions allows one to add the |
---|
865 | specified pathname or list of pathnames to the current classpath |
---|
866 | used by \textsc{ABCL}, allowing the dynamic loading of \textsc{JVM} objects: |
---|
867 | |
---|
868 | \begin{listing-lisp} |
---|
869 | CL-USER> (add-to-classpath "/path/to/some.jar") |
---|
870 | \end{listing-lisp} |
---|
871 | |
---|
872 | N.b \code{ADD-TO-CLASSPATH} only affects the classloader used by \textsc{ABCL} |
---|
873 | (the value of the special variable \code{JAVA:*CLASSLOADER*}. It has |
---|
874 | no effect on \textsc{Java} code outside \textsc{ABCL}. |
---|
875 | |
---|
876 | \subsection{Creating a synthetic Java Class at Runtime} |
---|
877 | |
---|
878 | See \code{JAVA:JNEW-RUNTIME-CLASS} on \ref{JAVA:JNEW-RUNTIME-CLASS}. |
---|
879 | |
---|
880 | % include autogen docs for the JAVA package. |
---|
881 | \include{java} |
---|
882 | |
---|
883 | \section{THREADS} |
---|
884 | |
---|
885 | The extensions for handling multithreaded execution are collected in |
---|
886 | the \code{THREADS} package. Most of the abstractions in Doug Lea's |
---|
887 | excellent \code{java.util.concurrent} packages may be manipulated |
---|
888 | directly via the JSS contrib to great effect \cite{lea-1998} |
---|
889 | |
---|
890 | % include autogen docs for the THREADS package. |
---|
891 | \include{threads} |
---|
892 | |
---|
893 | \section{EXTENSIONS} |
---|
894 | |
---|
895 | The symbols in the \code{extensions} package (often referenced by its |
---|
896 | shorter nickname \code{ext}) constitutes extensions to the |
---|
897 | \textsc{ANSI} standard that are potentially useful to the user. They |
---|
898 | include functions for manipulating network sockets, running external |
---|
899 | programs, registering object finalizers, constructing reference weakly |
---|
900 | held by the garbage collector and others. |
---|
901 | |
---|
902 | See \cite{RHODES2007} for a generic function interface to the native |
---|
903 | \textsc{JVM} contract for \code{java.util.List}. |
---|
904 | |
---|
905 | % include autogen docs for the EXTENSIONS package. |
---|
906 | \include{extensions} |
---|
907 | |
---|
908 | \chapter{Beyond ANSI} |
---|
909 | |
---|
910 | Naturally, in striving to be a useful contemporary \textsc{Common Lisp} |
---|
911 | implementation, \textsc{ABCL} endeavors to include extensions beyond the ANSI |
---|
912 | specification which are either widely adopted or are especially useful |
---|
913 | in working with the hosting \textsc{JVM}. |
---|
914 | |
---|
915 | \section{Compiler to Java Virtual Machine Bytecode} |
---|
916 | |
---|
917 | The \code{CL:COMPILE-FILE} interface emits a packed fasl\footnote{The |
---|
918 | term ``fasl'' is short for ``fast loader'', which in \textsc{Common |
---|
919 | Lisp} implementations refers} format whose \code{CL:PATHNAME} has |
---|
920 | the \code{TYPE} ``abcl''. Structurally, \textsc{ABCL}'s fasls are an |
---|
921 | operating system neutral byte archives packaged in the zip compression |
---|
922 | format which contain artifacts whose loading \code{CL:LOAD} |
---|
923 | understands. Internally, our fasls contain a piece of Lisp that |
---|
924 | \code{CL:LOAD} interprets as instructions to load the Java classes |
---|
925 | emitted by the \textsc{ABCL} Lisp compiler. These ``synthetic'' |
---|
926 | classes have a JVM class file version of ``49.0''. |
---|
927 | |
---|
928 | % TODO check on what the compiler is currently emitting |
---|
929 | |
---|
930 | \subsection{Compiler Diagnostics} |
---|
931 | |
---|
932 | By default, the interface to the compiler does not signal warnings |
---|
933 | that result in its invocation, outputing diagnostics to the standard |
---|
934 | reporting stream. The generalized boolean |
---|
935 | \code{JVM:*RESIGNAL-COMPILER-WARNINGS*} provides the interface to |
---|
936 | enabling the compiler to signal all warnings. |
---|
937 | |
---|
938 | \subsection{Decompilation} |
---|
939 | |
---|
940 | \label{CL:DISASSEMBLE} |
---|
941 | Since \textsc{ABCL} compiles to JVM bytecode, the |
---|
942 | \code{CL:DISASSEMBLE} function provides introspection for the result |
---|
943 | of that compilation. By default the implementation attempts to find |
---|
944 | and use the \code{javap} command line tool shipped as part of the Java |
---|
945 | Development Kit to disassemble the results. Code for the use of |
---|
946 | additional JVM bytecode introspection tools is packaged as part of the |
---|
947 | ABCL-INTROSPECT contrib. After loading one of these tools via ASDF, |
---|
948 | the \code{SYS:CHOOSE-DISASSEMBLER} function can be used to select the |
---|
949 | tool used by \code{CL:DISASSEMBLE}. See |
---|
950 | \ref{abcl-introspect-disassemblers} |
---|
951 | on \pageref{abcl-introspect-disassemblers} for further details. |
---|
952 | |
---|
953 | \section{Pathname} |
---|
954 | |
---|
955 | We implement an extension to the \code{CL:PATHNAME} that allows for |
---|
956 | the description and retrieval of resources named in a |
---|
957 | \textsc{URI} \footnote{A \textsc{URI} is essentially a superset of |
---|
958 | what is commonly understood as a \textsc{URL} We sometimes use the |
---|
959 | term URL as shorthand in describing the URL Pathnames, even though |
---|
960 | the corresponding encoding is more akin to a URI as described in |
---|
961 | RFC3986 \cite{rfc3986}.} scheme that the \textsc{JVM} |
---|
962 | ``understands''. By definition, support is built-in into the JVM to |
---|
963 | access the ``http'' and ``https'' schemes but additional protocol |
---|
964 | handlers may be installed at runtime by having \textsc{JVM} symbols |
---|
965 | present in the \code{sun.net.protocol.dynamic} package. See |
---|
966 | \cite{maso2000} for more details. |
---|
967 | |
---|
968 | \textsc{ABCL} has created specializations of the ANSI |
---|
969 | \code{CL:PATHNAME} object to enable to use of \textsc{URI}s to address |
---|
970 | dynamically loaded resources for the JVM. The \code{EXT:URL-PATHNAME} |
---|
971 | specialization has a corresponding \textsc{URI} whose canonical |
---|
972 | representation is defined to be the \code{NAMESTRING} of the |
---|
973 | \code{CL:PATHNAME}. The \code{EXT:JAR-PATHNAME} extension further |
---|
974 | specializes the the \code{EXT:URL-PATHNAME} to provide access to |
---|
975 | components of zip archives. |
---|
976 | |
---|
977 | % RDF description of type hierarchy |
---|
978 | % TODO Render via some LaTeX mode for graphviz? |
---|
979 | \begin{verbatim} |
---|
980 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
---|
981 | @prefix ext: <http://abcl.org/cl/package/extensions/> . |
---|
982 | @prefix cl: <http://abcl.org/cl/package/common-lisp/> . |
---|
983 | |
---|
984 | <ext:jar-pathname> rdfs:subClassOf <ext:url-pathname> . |
---|
985 | <ext:url-pathname> rdfs:subClassOf <cl:pathname> . |
---|
986 | <cl:logical-pathname> rdfs:subClassOf <cl:pathname> . |
---|
987 | \end{verbatim} |
---|
988 | |
---|
989 | \label{EXTENSIONS:URL-PATHNAME} |
---|
990 | \index{URL-PATHNAME} |
---|
991 | |
---|
992 | \label{EXTENSIONS:JAR-PATHNAME} |
---|
993 | \index{JAR-PATHNAME} |
---|
994 | |
---|
995 | Both the \code{EXT:URL-PATHNAME} and \code{EXT:JAR-PATHNAME} objects |
---|
996 | may be used anywhere a \code{CL:PATHNAME} is accepted with the |
---|
997 | following caveats: |
---|
998 | |
---|
999 | \begin{itemize} |
---|
1000 | |
---|
1001 | \item A stream obtained via \code{CL:OPEN} on a \code{CL:URL-PATHNAME} |
---|
1002 | cannot be the target of write operations. |
---|
1003 | |
---|
1004 | \index{URI} |
---|
1005 | \item Any results of canonicalization procedures performed on the |
---|
1006 | \textsc{URI} via local or network resolutions are discarded between |
---|
1007 | attempts (i.e. the implementation does not attempt to cache the |
---|
1008 | results of current name resolution of the URI for underlying |
---|
1009 | resource unless it is requested to be resolved.) Upon resolution, |
---|
1010 | any canonicalization procedures followed in resolving the resource |
---|
1011 | (e.g. following redirects) are discarded. Users may programatically |
---|
1012 | initiate a new, local computation of the resolution of the resource |
---|
1013 | by applying the \code{CL:TRUENAME} function to a |
---|
1014 | \code{EXT:URL-PATHNAME} object. Depending on the reliability and |
---|
1015 | properties of your local \textsc{REST} infrastructure, these results |
---|
1016 | may not necessarily be idempotent over time\footnote {See |
---|
1017 | \cite{uri-pathname} for the design and implementation notes for |
---|
1018 | the technical details}. A future implementation may attempt to |
---|
1019 | expose an API to observer/customize the content negotiation |
---|
1020 | initiated during retrieval of the representation of a given |
---|
1021 | resource, which is currently handled at the application level. |
---|
1022 | |
---|
1023 | \end{itemize} |
---|
1024 | |
---|
1025 | The implementation of \code{EXT:URL-PATHNAME} allows the \textsc{ABCL} |
---|
1026 | user to dynamically load code from the network. For example, |
---|
1027 | \textsc{Quicklisp} (\cite{quicklisp}) may be completely installed from |
---|
1028 | the \textsc{REPL} as the single form: |
---|
1029 | |
---|
1030 | \begin{listing-lisp} |
---|
1031 | CL-USER> (load "http://beta.quicklisp.org/quicklisp.lisp") |
---|
1032 | \end{listing-lisp} |
---|
1033 | |
---|
1034 | will load and execute the Quicklisp setup code. |
---|
1035 | |
---|
1036 | The implementation currently breaks \textsc{ANSI} conformance by allowing the |
---|
1037 | types able to be \code{CL:READ} for the \code{DEVICE} to return a possible \code{CONS} of |
---|
1038 | \code{CL:PATHNAME} objects. %% citation from CLHS needed. |
---|
1039 | |
---|
1040 | In order to ``smooth over'' the bit about types being \code{CL:READ} |
---|
1041 | from \code{CL:PATHNAME} components, we extend the semantics for the |
---|
1042 | usual PATHNAME merge semantics when \code{*DEFAULT-PATHNAME-DEFAULTS*} |
---|
1043 | contains a \code{EXT:JAR-PATHNAME} with the ``do what I mean'' |
---|
1044 | algorithm described in \ref{section:conformance} on page |
---|
1045 | \pageref{section:conformance}. |
---|
1046 | |
---|
1047 | %See \ref{_:quicklisp} on page \pageref{_:quicklisp}. |
---|
1048 | |
---|
1049 | \subsubsection{Implementation} |
---|
1050 | |
---|
1051 | The implementation of these extensions stores all the additional |
---|
1052 | information in the \code{CL:PATHNAME} object itself in ways that while strictly |
---|
1053 | speaking are conformant, nonetheless may trip up libraries that don't |
---|
1054 | expect the following: |
---|
1055 | |
---|
1056 | \begin{itemize} |
---|
1057 | \item \code{DEVICE} can be either a string denoting a drive letter |
---|
1058 | under \textsc{DOS} or a list of exactly one or two elements. If |
---|
1059 | \code{DEVICE} is a list, it denotes a \code{EXT:JAR-PATHNAME}, with |
---|
1060 | the entries containing \code{CL:PATHNAME} objects which describe the |
---|
1061 | outer and (possibly inner) locations of the jar |
---|
1062 | archive \footnote{The case of inner and outer |
---|
1063 | \code{EXT:JAR-PATHNAME} \ref{EXT:JAR-PATHNAME} arises when zip |
---|
1064 | archives themselves contain zip archives which is the case when |
---|
1065 | the ABCL fasl is included in the abcl.jar zip archive.}. |
---|
1066 | |
---|
1067 | \item A \code{EXT:URL-PATHNAME} always has a \code{HOST} component that is a |
---|
1068 | property list. The values of the \code{HOST} property list are |
---|
1069 | always character strings. The allowed keys have the following meanings: |
---|
1070 | \begin{description} |
---|
1071 | \item[:SCHEME] Scheme of URI ("http", "ftp", "bundle", etc.) |
---|
1072 | \item[:AUTHORITY] Valid authority according to the URI scheme. For |
---|
1073 | "http" this could be "example.org:8080". |
---|
1074 | \item[:QUERY] The query of the \textsc{URI} |
---|
1075 | \item[:FRAGMENT] The fragment portion of the \textsc{URI} |
---|
1076 | \end{description} |
---|
1077 | |
---|
1078 | \item In order to encapsulate the implementation decisions for these |
---|
1079 | meanings, the following functions provide a SETF-able API for |
---|
1080 | reading and writing such values: \code{URL-PATHNAME-QUERY}, |
---|
1081 | \code{URL-PATHNAME-FRAGMENT}, \code{URL-PATHNAME-AUTHORITY}, and |
---|
1082 | \code{URL-PATHNAME-SCHEME}. The specific subtype of a Pathname may |
---|
1083 | be determined with the predicates \code{PATHNAME-URL-P} and |
---|
1084 | \code{PATHNAME-JAR-P}. |
---|
1085 | |
---|
1086 | \label{EXTENSIONS:URL-PATHNAME-SCHEME} |
---|
1087 | \index{URL-PATHNAME-SCHEME} |
---|
1088 | |
---|
1089 | \label{EXTENSIONS:URL-PATHNAME-FRAGMENT} |
---|
1090 | \index{URL-PATHNAME-FRAGMENT} |
---|
1091 | |
---|
1092 | \label{EXTENSIONS:URL-PATHNAME-AUTHORITY} |
---|
1093 | \index{URL-PATHNAME-AUTHORITY} |
---|
1094 | |
---|
1095 | \label{EXTENSIONS:PATHNAME-URL-P} |
---|
1096 | \index{PATHNAME-URL-P} |
---|
1097 | |
---|
1098 | \label{EXTENSIONS:URL-PATHNAME-QUERY} |
---|
1099 | \index{URL-PATHNAME-QUERY} |
---|
1100 | |
---|
1101 | \end{itemize} |
---|
1102 | |
---|
1103 | \section{Package-Local Nicknames} |
---|
1104 | \label{sec:package-local-nicknames} |
---|
1105 | |
---|
1106 | ABCL allows giving packages local nicknames: they allow short and |
---|
1107 | easy-to-use names to be used without fear of name conflict associated |
---|
1108 | with normal nicknames.\footnote{Package-local nicknames were originally |
---|
1109 | developed in SBCL.} |
---|
1110 | |
---|
1111 | A local nickname is valid only when inside the package for which it |
---|
1112 | has been specified. Different packages can use same local nickname for |
---|
1113 | different global names, or different local nickname for same global |
---|
1114 | name. |
---|
1115 | |
---|
1116 | Symbol \code{:package-local-nicknames} in \code{*features*} denotes the |
---|
1117 | support for this feature. |
---|
1118 | |
---|
1119 | \index{DEFPACKAGE} |
---|
1120 | The options to \code{defpackage} are extended with a new option |
---|
1121 | \code{:local-nicknames (local-nickname actual-package-name)*}. |
---|
1122 | |
---|
1123 | The new package has the specified local nicknames for the corresponding |
---|
1124 | actual packages. |
---|
1125 | |
---|
1126 | Example: |
---|
1127 | \begin{listing-lisp} |
---|
1128 | (defpackage :bar (:intern "X")) |
---|
1129 | (defpackage :foo (:intern "X")) |
---|
1130 | (defpackage :quux (:use :cl) |
---|
1131 | (:local-nicknames (:bar :foo) (:foo :bar))) |
---|
1132 | (find-symbol "X" :foo) ; => FOO::X |
---|
1133 | (find-symbol "X" :bar) ; => BAR::X |
---|
1134 | (let ((*package* (find-package :quux))) |
---|
1135 | (find-symbol "X" :foo)) ; => BAR::X |
---|
1136 | (let ((*package* (find-package :quux))) |
---|
1137 | (find-symbol "X" :bar)) ; => FOO::X |
---|
1138 | \end{listing-lisp} |
---|
1139 | |
---|
1140 | \index{PACKAGE-LOCAL-NICKNAMES} |
---|
1141 | --- Function: \textbf{package-local-nicknames} [\textbf{ext}] \textit{package-designator} |
---|
1142 | |
---|
1143 | \begin{adjustwidth}{5em}{5em} |
---|
1144 | Returns an ALIST of \code{(local-nickname . actual-package)} |
---|
1145 | describing the nicknames local to the designated package. |
---|
1146 | |
---|
1147 | When in the designated package, calls to \code{find-package} with any |
---|
1148 | of the local-nicknames will return the corresponding actual-package |
---|
1149 | instead. This also affects all implied calls to \code{find-package}, |
---|
1150 | including those performed by the reader. |
---|
1151 | |
---|
1152 | When printing a package prefix for a symbol with a package local |
---|
1153 | nickname, the local nickname is used instead of the real name in order |
---|
1154 | to preserve print-read consistency. |
---|
1155 | \end{adjustwidth} |
---|
1156 | |
---|
1157 | \index{PACKAGE-LOCALLY-NICKNAMED-BY-LIST} |
---|
1158 | --- Function: \textbf{package-locally-nicknamed-by-list} [\textbf{ext}] \textit{package-designator} |
---|
1159 | |
---|
1160 | \begin{adjustwidth}{5em}{5em} |
---|
1161 | Returns a list of packages which have a local nickname for the |
---|
1162 | designated package. |
---|
1163 | \end{adjustwidth} |
---|
1164 | |
---|
1165 | \index{ADD-PACKAGE-LOCAL-NICKNAME} |
---|
1166 | --- Function: \textbf{add-package-local-nickname} [\textbf{ext}] \textit{local-nickname actual-package \&optional package-designator} |
---|
1167 | |
---|
1168 | \begin{adjustwidth}{5em}{5em} |
---|
1169 | Adds \code{local-nickname} for \code{actual-package} in the designated |
---|
1170 | package, defaulting to current package. \code{local-nickname} must be |
---|
1171 | a string designator, and \code{actual-package} must be a package |
---|
1172 | designator. |
---|
1173 | |
---|
1174 | Returns the designated package. |
---|
1175 | |
---|
1176 | Signals an error if \code{local-nickname} is already a package local |
---|
1177 | nickname for a different package, or if \code{local-nickname} is one |
---|
1178 | of "CL", "COMMON-LISP", or, "KEYWORD", or if \code{local-nickname} is |
---|
1179 | a global name or nickname for the package to which the nickname would |
---|
1180 | be added. |
---|
1181 | |
---|
1182 | When in the designated package, calls to \code{find-package} with the |
---|
1183 | \code{local-nickname} will return the package the designated |
---|
1184 | \code{actual-package} instead. This also affects all implied calls to |
---|
1185 | \code{find-package}, including those performed by the reader. |
---|
1186 | |
---|
1187 | When printing a package prefix for a symbol with a package local |
---|
1188 | nickname, local nickname is used instead of the real name in order to |
---|
1189 | preserve print-read consistency. |
---|
1190 | \end{adjustwidth} |
---|
1191 | |
---|
1192 | \index{REMOVE-PACKAGE-LOCAL-NICKNAME} |
---|
1193 | --- Function: \textbf{remove-package-local-nickname} [\textbf{ext}] \textit{old-nickname \&optional package-designator} |
---|
1194 | |
---|
1195 | \begin{adjustwidth}{5em}{5em} |
---|
1196 | If the designated package had \code{old-nickname} as a local nickname |
---|
1197 | for another package, it is removed. Returns true if the nickname |
---|
1198 | existed and was removed, and \code{nil} otherwise. |
---|
1199 | \end{adjustwidth} |
---|
1200 | |
---|
1201 | |
---|
1202 | |
---|
1203 | \section{Extensible Sequences} |
---|
1204 | |
---|
1205 | The SEQUENCE package fully implements Christopher Rhodes' proposal for |
---|
1206 | extensible sequences. These user extensible sequences are used |
---|
1207 | directly in \code{java-collections.lisp} provide these CLOS |
---|
1208 | abstractions on the standard Java collection classes as defined by the |
---|
1209 | \code{java.util.List} contract. |
---|
1210 | |
---|
1211 | |
---|
1212 | %% an Example of using java.util.Lisp in Lisp would be nice |
---|
1213 | |
---|
1214 | This extension is not automatically loaded by the implementation. It |
---|
1215 | may be loaded via: |
---|
1216 | |
---|
1217 | \begin{listing-lisp} |
---|
1218 | CL-USER> (require :java-collections) |
---|
1219 | \end{listing-lisp} |
---|
1220 | |
---|
1221 | if both extensible sequences and their application to Java collections |
---|
1222 | is required, or |
---|
1223 | |
---|
1224 | \begin{listing-lisp} |
---|
1225 | CL-USER> (require :extensible-sequences) |
---|
1226 | \end{listing-lisp} |
---|
1227 | |
---|
1228 | if only the extensible sequences API as specified in \cite{RHODES2007} is |
---|
1229 | required. |
---|
1230 | |
---|
1231 | Note that \code{(require :java-collections)} must be issued before |
---|
1232 | \code{java.util.List} or any subclass is used as a specializer in a \textsc{CLOS} |
---|
1233 | method definition (see the section below). |
---|
1234 | |
---|
1235 | See Rhodes2007 \cite{RHODES2007} for the an overview of the |
---|
1236 | abstractions of the \code{java.util.collection} package afforded by |
---|
1237 | \code{JAVA-COLLECTIONS}. |
---|
1238 | |
---|
1239 | \section{Extensions to CLOS} |
---|
1240 | |
---|
1241 | \subsection{Metaobject Protocol} |
---|
1242 | |
---|
1243 | \textsc{ABCL} implements the metaobject protocol for \textsc{CLOS} as |
---|
1244 | specified in \textsc{(A)MOP}. The symbols are exported from the |
---|
1245 | package \code{MOP}. |
---|
1246 | |
---|
1247 | Contrary to the AMOP specification and following \textsc{SBCL}'s lead, |
---|
1248 | the metaclass \code{funcallable-standard-object} has |
---|
1249 | \code{funcallable-standard-class} as metaclass instead of |
---|
1250 | \code{standard-class}. |
---|
1251 | |
---|
1252 | \textsc{ABCL}'s fidelity to the AMOP specification is codified as part |
---|
1253 | of Pascal Costanza's \code{closer-mop} \ref{closer-mop} \cite{closer-mop}. |
---|
1254 | |
---|
1255 | \subsection{Specializing on Java classes} |
---|
1256 | |
---|
1257 | There is an additional syntax for specializing the parameter of a |
---|
1258 | generic function on a java class, viz. \code{(java:jclass CLASS-STRING)} |
---|
1259 | where \code{CLASS-STRING} is a string naming a Java class in dotted package |
---|
1260 | form. |
---|
1261 | |
---|
1262 | For instance the following specialization would perhaps allow one to |
---|
1263 | print more information about the contents of a \code{java.util.Collection} |
---|
1264 | object |
---|
1265 | |
---|
1266 | \begin{listing-lisp} |
---|
1267 | (defmethod print-object ((coll (java:jclass "java.util.Collection")) |
---|
1268 | stream) |
---|
1269 | ;;; ... |
---|
1270 | ) |
---|
1271 | \end{listing-lisp} |
---|
1272 | |
---|
1273 | If the class had been loaded via a classloader other than the original |
---|
1274 | the class you wish to specialize on, one needs to specify the |
---|
1275 | classloader as an optional third argument. |
---|
1276 | |
---|
1277 | \begin{listing-lisp} |
---|
1278 | |
---|
1279 | (defparameter *other-classloader* |
---|
1280 | (jcall "getBaseLoader" cl-user::*classpath-manager*)) |
---|
1281 | |
---|
1282 | (defmethod print-object |
---|
1283 | ((device-id (java:jclass "dto.nbi.service.hdm.alcatel.com.NBIDeviceID" |
---|
1284 | *other-classloader*)) |
---|
1285 | stream) |
---|
1286 | ;;; ... |
---|
1287 | ) |
---|
1288 | \end{listing-lisp} |
---|
1289 | |
---|
1290 | \section{Extensions to the Reader} |
---|
1291 | |
---|
1292 | We implement a special hexadecimal escape sequence for specifying 32 |
---|
1293 | bit characters to the Lisp reader\footnote{This represents a |
---|
1294 | compromise with contemporary in 2011 32bit hosting architectures for |
---|
1295 | which we wish to make text processing efficient. Should the User |
---|
1296 | require more control over \textsc{UNICODE} processing we recommend Edi Weisz' |
---|
1297 | excellent work with \textsc|{FLEXI-STREAMS} which we fully support}, namely we |
---|
1298 | allow a sequences of the form \verb~#\U~\emph{\texttt{xxxx}} to be processed |
---|
1299 | by the reader as character whose code is specified by the hexadecimal |
---|
1300 | digits \emph{\texttt{xxxx}}. The hexadecimal sequence may be one to four digits |
---|
1301 | long. |
---|
1302 | |
---|
1303 | % Why doesn't ALEXANDRIA work? Good question: Alexandria from |
---|
1304 | % Quicklisp 2010-10-07 fails a number of tests: |
---|
1305 | %% Form: (ALEXANDRIA.0.DEV:TYPE= 'LIST '(OR NULL CONS)) |
---|
1306 | %% Expected values: T |
---|
1307 | %% T |
---|
1308 | %% Actual values: NIL |
---|
1309 | %% T. |
---|
1310 | %% Test ALEXANDRIA-TESTS::TYPE=.3 failed |
---|
1311 | %% Form: (ALEXANDRIA.0.DEV:TYPE= 'NULL '(AND SYMBOL LIST)) |
---|
1312 | %% Expected values: T |
---|
1313 | %% T |
---|
1314 | %% Actual values: NIL |
---|
1315 | %% NIL. |
---|
1316 | |
---|
1317 | |
---|
1318 | Note that this sequence is never output by the implementation. Instead, |
---|
1319 | the corresponding Unicode character is output for characters whose |
---|
1320 | code is greater than 0x00ff. |
---|
1321 | |
---|
1322 | \section{Overloading of the CL:REQUIRE Mechanism} |
---|
1323 | |
---|
1324 | The \code{CL:REQUIRE} mechanism is overloaded by attaching these |
---|
1325 | semantics to the execution of \code{REQUIRE} on the following symbols: |
---|
1326 | |
---|
1327 | \begin{description} |
---|
1328 | |
---|
1329 | \item{\code{ASDF}} |
---|
1330 | Loads the \textsc{ASDF} implementation shipped |
---|
1331 | with the implementation. After \textsc{ASDF} has been loaded in |
---|
1332 | this manner, symbols passed to \code{CL:REQUIRE} which are |
---|
1333 | otherwise unresolved, are passed to ASDF for a chance for |
---|
1334 | resolution. This means, for instance if \code{CL-PPCRE} can be |
---|
1335 | located as a loadable \textsc{ASDF} system \code{(require |
---|
1336 | :cl-ppcre)} is equivalent to \code{(asdf:load-system |
---|
1337 | :cl-ppcre)}. |
---|
1338 | |
---|
1339 | \item{\code{ABCL-CONTRIB}} |
---|
1340 | Locates and pushes the top-level contents of |
---|
1341 | ``abcl-contrib.jar'' into the \textsc{ASDF} central registry. |
---|
1342 | |
---|
1343 | \begin{enumerate} |
---|
1344 | \item \code{abcl-asdf} |
---|
1345 | Functions for loading JVM artifacts |
---|
1346 | dynamically, hooking into ASDF 3 objects where possible. |
---|
1347 | \item \code{asdf-jar} |
---|
1348 | Package addressable JVM artifacts via |
---|
1349 | \code{abcl-asdf} descriptions as a single binary artifact |
---|
1350 | including recursive dependencies. |
---|
1351 | \item \code{mvn} |
---|
1352 | These systems name common JVM artifacts from |
---|
1353 | the distributed pom.xml graph of Maven Aether: |
---|
1354 | \begin{enumerate} |
---|
1355 | \item \code{jna} |
---|
1356 | Dynamically load 'jna.jar' version 5.5.0 |
---|
1357 | from the network \footnote{This loading can be inhibited |
---|
1358 | if, at runtime, the Java class corresponding |
---|
1359 | ``:classname'' clause of the system definition is present.} |
---|
1360 | \end{enumerate} |
---|
1361 | \item \code{quicklisp-abcl} Boot a local Quicklisp installation |
---|
1362 | via the ASDF:IRI type introduced via ABCL-ASDF. |
---|
1363 | \item \code{jfli} A descendant of Rich Hickey's pre-Clojure work |
---|
1364 | on the JVM. |
---|
1365 | \item \code{jss} Introduces dynamic inspection of present |
---|
1366 | symbols via the \code{SHARPSIGN-QUOTATION\_MARK} macros as Java Syntax |
---|
1367 | Sucks |
---|
1368 | \item \code{abcl-introspect} Provides a framework for |
---|
1369 | introspecting runtime Java and Lisp object values. Include |
---|
1370 | packaging for installing and using java decompilation tools |
---|
1371 | for use with \code{CL:DISASSEMBLE}. |
---|
1372 | \item \code{abcl-build} Provides a toolkit for building ABCL |
---|
1373 | from source, as well as installing the necessary tools for |
---|
1374 | such builds. |
---|
1375 | |
---|
1376 | \end{enumerate} |
---|
1377 | |
---|
1378 | \end{description} |
---|
1379 | |
---|
1380 | The user may extend the \code{CL:REQUIRE} mechanism by pushing |
---|
1381 | function hooks into \code{SYSTEM:*MODULE-PROVIDER-FUNCTIONS*}. Each |
---|
1382 | such hook function takes a single argument containing the symbol |
---|
1383 | passed to \code{CL:REQUIRE} and returns a non-\code{NIL} value if it |
---|
1384 | can successful resolve the symbol. |
---|
1385 | |
---|
1386 | \section{JSS extension of the Reader by SHARPSIGN-DOUBLE-QUOTE} |
---|
1387 | |
---|
1388 | The JSS contrib constitutes an additional, optional extension to the |
---|
1389 | reader in the definition of the \code{SHARPSIGN-DOUBLE-QUOTE} |
---|
1390 | (``\#\"'') reader macro. See section \ref{section:jss} on page |
---|
1391 | \pageref{section:jss} for more information. |
---|
1392 | |
---|
1393 | \section{ASDF} |
---|
1394 | |
---|
1395 | asdf-3.3.3 (see \cite{asdf}) is packaged as core component of \textsc{ABCL}, |
---|
1396 | but not initialized by default, as it relies on the \textsc{CLOS} subsystem |
---|
1397 | which can take a bit of time to start \footnote{While this time is |
---|
1398 | ``merely'' on the order of seconds for contemporary 2011 machines, |
---|
1399 | for applications that need to initialize quickly, for example a web |
---|
1400 | server, this time might be unnecessarily long}. The packaged \textsc{ASDF} |
---|
1401 | may be loaded by the \textsc{ANSI} \code{REQUIRE} mechanism as |
---|
1402 | follows: |
---|
1403 | |
---|
1404 | \begin{listing-lisp} |
---|
1405 | CL-USER> (require :asdf) |
---|
1406 | \end{listing-lisp} |
---|
1407 | |
---|
1408 | \chapter{Contrib} |
---|
1409 | |
---|
1410 | The \textsc{ABCL} contrib is packaged as a separate jar archive usually named |
---|
1411 | \code{abcl-contrib.jar} or possibly something like |
---|
1412 | \code{abcl-contrib-1.6.1.jar}. The contrib jar is not loaded by the |
---|
1413 | implementation by default, and must be first initialized by the |
---|
1414 | \code{REQUIRE} mechanism before using any specific contrib: |
---|
1415 | |
---|
1416 | \begin{listing-lisp} |
---|
1417 | CL-USER> (require :abcl-contrib) |
---|
1418 | \end{listing-lisp} |
---|
1419 | |
---|
1420 | \section{abcl-asdf} |
---|
1421 | |
---|
1422 | This contrib enables an additional syntax for \textsc{ASDF} system |
---|
1423 | definition which dynamically loads \textsc{JVM} artifacts such as jar |
---|
1424 | archives via encapsulation of the Maven build tool. The Maven Aether |
---|
1425 | component can also be directly manipulated by the function associated |
---|
1426 | with the \code{ABCL-ASDF:RESOLVE-DEPENDENCIES} symbol. |
---|
1427 | |
---|
1428 | %ABCL specific contributions to ASDF system definition mainly |
---|
1429 | %concerned with finding JVM artifacts such as jar archives to be |
---|
1430 | %dynamically loaded. |
---|
1431 | |
---|
1432 | |
---|
1433 | When loaded, abcl-asdf adds the following objects to \textsc{ASDF}: |
---|
1434 | \code{JAR-FILE}, \code{JAR-DIRECTORY}, \code{CLASS-FILE-DIRECTORY} and |
---|
1435 | \code{MVN}, exporting them (and others) as public symbols. |
---|
1436 | |
---|
1437 | \subsection{Referencing Maven Artifacts via ASDF} |
---|
1438 | |
---|
1439 | Maven artifacts may be referenced within \textsc{ASDF} system |
---|
1440 | definitions, as the following example references the |
---|
1441 | \code{log4j-1.4.9.jar} JVM artifact which provides a widely-used |
---|
1442 | abstraction for handling logging systems: |
---|
1443 | |
---|
1444 | \begin{listing-lisp} |
---|
1445 | ;;;; -*- Mode: LISP -*- |
---|
1446 | (require :asdf) |
---|
1447 | (in-package :cl-user) |
---|
1448 | |
---|
1449 | (asdf:defsystem :log4j |
---|
1450 | :defsystem-depends-on (abcl-asdf) |
---|
1451 | :components ((:mvn "log4j/log4j" :version "1.4.9"))) |
---|
1452 | \end{listing-lisp} |
---|
1453 | |
---|
1454 | \subsection{API} |
---|
1455 | |
---|
1456 | We define an API for \textsc{ABCL-ASDF} as consisting of the following |
---|
1457 | ASDF classes: |
---|
1458 | |
---|
1459 | \code{JAR-DIRECTORY}, \code{JAR-FILE}, and |
---|
1460 | \code{CLASS-FILE-DIRECTORY} for JVM artifacts that have a currently |
---|
1461 | valid pathname representation. |
---|
1462 | |
---|
1463 | Both the \code{MVN} and \code{IRI} classes descend from |
---|
1464 | \code{ASDF-COMPONENT}, but do not directly have a filesystem location. |
---|
1465 | |
---|
1466 | For use outside of ASDF system definitions, we currently define one |
---|
1467 | method, \code{ABCL-ASDF:RESOLVE-DEPENDENCIES} which locates, |
---|
1468 | downloads, caches, and then loads into the currently executing JVM |
---|
1469 | process all recursive dependencies annotated in the Maven pom.xml |
---|
1470 | graph. |
---|
1471 | |
---|
1472 | \subsection{Directly Instructing Maven to Download JVM Artifacts} |
---|
1473 | |
---|
1474 | Bypassing \textsc{ASDF}, one can directly issue requests for the Maven |
---|
1475 | artifacts to be downloaded |
---|
1476 | |
---|
1477 | \begin{listing-lisp} |
---|
1478 | CL-USER> (abcl-asdf:resolve-dependencies "com.google.gwt" |
---|
1479 | "gwt-user") |
---|
1480 | WARNING: Using LATEST for unspecified version. |
---|
1481 | "/Users/evenson/.m2/repository/com/google/gwt/gwt-user/2.4.0-rc1 |
---|
1482 | /gwt-user-2.4.0-rc1.jar:/Users/evenson/.m2/repository/javax/vali |
---|
1483 | dation/validation-api/1.0.0.GA/validation-api-1.0.0.GA.jar:/User |
---|
1484 | s/evenson/.m2/repository/javax/validation/validation-api/1.0.0.G |
---|
1485 | A/validation-api-1.0.0.GA-sources.jar" |
---|
1486 | \end{listing-lisp} |
---|
1487 | |
---|
1488 | To actually load the dependency, use the \code{JAVA:ADD-TO-CLASSPATH} generic |
---|
1489 | function: |
---|
1490 | |
---|
1491 | \begin{listing-lisp} |
---|
1492 | CL-USER> (java:add-to-classpath |
---|
1493 | (abcl-asdf:resolve-dependencies "com.google.gwt" |
---|
1494 | "gwt-user")) |
---|
1495 | \end{listing-lisp} |
---|
1496 | |
---|
1497 | Notice that all recursive dependencies have been located and installed |
---|
1498 | locally from the network as well. |
---|
1499 | |
---|
1500 | More extensive documentations and examples can be found at |
---|
1501 | \url{http://abcl.org/svn/tags/1.6.1/contrib/abcl-asdf/README.markdown}. |
---|
1502 | |
---|
1503 | \section{asdf-jar} |
---|
1504 | |
---|
1505 | The asdf-jar contrib provides a system for packaging \textsc{ASDF} |
---|
1506 | systems into jar archives for \textsc{ABCL}. Given a running |
---|
1507 | \textsc{ABCL} image with loadable \textsc{ASDF} systems the code in |
---|
1508 | this package will recursively package all the required source and |
---|
1509 | fasls in a jar archive. |
---|
1510 | |
---|
1511 | The documentation for this contrib can be found at |
---|
1512 | \url{http://abcl.org/svn/tags/1.6.1/contrib/asdf-jar/README.markdown}. |
---|
1513 | |
---|
1514 | \section{jss} |
---|
1515 | \label{section:jss} |
---|
1516 | |
---|
1517 | To one used to the more universal syntax of Lisp pairs upon which the |
---|
1518 | definition of read and compile time macros is quite |
---|
1519 | natural \footnote{See Graham's ``On Lisp'' |
---|
1520 | http://lib.store.yahoo.net/lib/paulgraham/onlisp.pdf.}, the Java |
---|
1521 | syntax available to the Java programmer may be said to suck. To |
---|
1522 | alleviate this situation, the JSS contrib introduces the |
---|
1523 | \code{SHARPSIGN-DOUBLE-QUOTE} (\code{\#"}) reader macro, which allows |
---|
1524 | the the specification of the name of invoking function as the first |
---|
1525 | element of the relevant s-expr which tends to be more congruent to how |
---|
1526 | Lisp programmers seem to be wired to think. |
---|
1527 | |
---|
1528 | While quite useful, we don't expect that the JSS contrib will be the |
---|
1529 | last experiment in wrangling Java from Common Lisp. |
---|
1530 | |
---|
1531 | \subsection{JSS usage} |
---|
1532 | |
---|
1533 | Example: |
---|
1534 | |
---|
1535 | \begin{listing-lisp} |
---|
1536 | CL-USER> (require :abcl-contrib) |
---|
1537 | ==> ("ABCL-CONTRIB") |
---|
1538 | CL-USER> (require :jss) |
---|
1539 | ==> ("JSS") |
---|
1540 | CL-USER) (#"getProperties" 'java.lang.System) |
---|
1541 | ==> #<java.util.Properties {java.runtime.name=Java.... {2FA21ACF}> |
---|
1542 | CL-USER) (#"propertyNames" (#"getProperties" 'java.lang.System)) |
---|
1543 | ==> #<java.util.Hashtable$Enumerator java.util.Has.... {36B4361A}> |
---|
1544 | \end{listing-lisp} %$ <-- un-confuse Emacs font-lock |
---|
1545 | |
---|
1546 | Some more information on jss can be found in its documentation at |
---|
1547 | \url{http://abcl.org/svn/tags/1.6.1/contrib/jss/README.markdown} |
---|
1548 | |
---|
1549 | \section{jfli} |
---|
1550 | \label{section:jfli} |
---|
1551 | |
---|
1552 | The contrib contains a pure-Java version of \textsc{JFLI}, apparently |
---|
1553 | a descendent of Rich Hickey's early experimentations with using Java |
---|
1554 | from Common Lisp. |
---|
1555 | |
---|
1556 | \url{http://abcl.org/svn/tags/1.6.1/contrib/jfli/README}. |
---|
1557 | |
---|
1558 | \section{abcl-introspect} |
---|
1559 | |
---|
1560 | \textsc{ABCL-INTROSPECT} offers more extensive functionality for |
---|
1561 | inspecting the state of the implementation, most notably in |
---|
1562 | integration with SLIME, where the backtrace mechanism is augmented to |
---|
1563 | the point that local variables are inspectable. |
---|
1564 | |
---|
1565 | A compiled function is an instance of a class - This class has |
---|
1566 | multiple instances if it represents a closure, or a single instance if |
---|
1567 | it represents a non-closed-over function. |
---|
1568 | |
---|
1569 | The \textsc{ABCL} compiler stores constants that are used in function |
---|
1570 | execution as private java fields. This includes symbols used to invoke |
---|
1571 | function, locally-defined functions (such as via \code{LABEL} or |
---|
1572 | \code{flet}) and string and other literal objects. |
---|
1573 | \textsc{ABCL-INTROSPECT} implements a ``do what I mean'' API for |
---|
1574 | introspecting these constants. |
---|
1575 | |
---|
1576 | \textsc{ABCL-INTROSPECT} provides access to those internal values, and |
---|
1577 | uses them in at least two ways. First, to annotate locally defined |
---|
1578 | functions with the top-level function they are defined within, and |
---|
1579 | second to search for callers of a give function \footnote{ Since java |
---|
1580 | functions are strings, local fields also have these strings. In the |
---|
1581 | context of looking for callers of a function you can also give a |
---|
1582 | string that names a java method. Same caveat re: false positives.} |
---|
1583 | . This may yield some false positives, such as when a symbol that |
---|
1584 | names a function is also used for some other purpose. It can also have |
---|
1585 | false negatives, as when a function is inlined. Still, it's pretty |
---|
1586 | useful. The second use to to find source locations for frames in the |
---|
1587 | debugger. If the source location for a local function is asked for the |
---|
1588 | location of its 'owner' is instead returns. |
---|
1589 | |
---|
1590 | In order to record information about local functions, \textsc{ABCL} |
---|
1591 | defines a function-plist, which is for the most part unused, but is |
---|
1592 | used here with set of keys indicating where the local function was |
---|
1593 | defined and in what manner, i.e. as normal local function, as a method |
---|
1594 | function, or as an initarg function. There may be other places |
---|
1595 | functions are stashed away (defstructs come to mind) and this file |
---|
1596 | should be added to to take them into account as they are discovered. |
---|
1597 | |
---|
1598 | \textsc{ABCL-INTROSPECT} does not depend on \textsc{JSS}, but provides |
---|
1599 | a bit of jss-specific functionality if \textsc{JSS} *is* loaded. |
---|
1600 | |
---|
1601 | \subsection{Implementations for CL:DISASSEMBLE} |
---|
1602 | \label{abcl-introspect-disassemblers} |
---|
1603 | |
---|
1604 | The following ASDF systems packages various external tools that may be |
---|
1605 | selected by the \code{SYS:CHOOSE-DISASSEMBLER} interface: |
---|
1606 | |
---|
1607 | \begin{enumerate} |
---|
1608 | \item \code{objectweb} |
---|
1609 | \item \code{jad} |
---|
1610 | \item \code{javap} |
---|
1611 | \item \code{fernweb} |
---|
1612 | \item \code{cfr} |
---|
1613 | \item \code{procyon} |
---|
1614 | \end{enumerate} |
---|
1615 | |
---|
1616 | To use one of these tools, first load the system via \textsc{ASDF} |
---|
1617 | (and/or \textsc{Quicklisp}), then use the |
---|
1618 | \code{SYS:CHOOSE-DISASSEMBLER} function to select the keyword that |
---|
1619 | appears in \code{SYS:*DISASSEMBLERS*}. |
---|
1620 | \begin{listing-lisp} |
---|
1621 | CL-USER> (require :abcl-contrib)(asdf:load-system :objectweb) |
---|
1622 | CL-USER> sys:*disassemblers* |
---|
1623 | ((:OBJECTWEB |
---|
1624 | . ABCL-INTROSPECT/JVM/TOOLS/OBJECTWEB:DISASSEMBLE-CLASS-BYTES) |
---|
1625 | (:SYSTEM-JAVAP . SYSTEM:DISASSEMBLE-CLASS-BYTES)) |
---|
1626 | CL-USER> (sys:choose-disassembler :objectweb) |
---|
1627 | ABCL-INTROSPECT/JVM/TOOLS/OBJECTWEB:DISASSEMBLE-CLASS-BYTES |
---|
1628 | CL-USER> (disassemble 'cons) |
---|
1629 | ; // class version 52.0 (52) |
---|
1630 | ; // access flags 0x30 |
---|
1631 | ; final class org/armedbear/lisp/Primitives$pf_cons extends org/armedbear/lisp/Primitive { |
---|
1632 | ; |
---|
1633 | ; // access flags 0x1A |
---|
1634 | ; private final static INNERCLASS org/armedbear/lisp/Primitives$pf_cons org/armedbear/lisp/Primitives pf_cons |
---|
1635 | ; |
---|
1636 | ; // access flags 0x0 |
---|
1637 | ; <init>()V |
---|
1638 | ; ALOAD 0 |
---|
1639 | ; GETSTATIC org/armedbear/lisp/Symbol.CONS : Lorg/armedbear/lisp/Symbol; |
---|
1640 | ; LDC "object-1 object-2" |
---|
1641 | ; INVOKESPECIAL org/armedbear/lisp/Primitive.<init> (Lorg/armedbear/lisp/Symbol;Ljava/lang/String;)V |
---|
1642 | ; RETURN |
---|
1643 | ; MAXSTACK = 3 |
---|
1644 | ; MAXLOCALS = 1 |
---|
1645 | ; |
---|
1646 | ; // access flags 0x1 |
---|
1647 | ; public execute(Lorg/armedbear/lisp/LispObject;Lorg/armedbear/lisp/LispObject;)Lorg/armedbear/lisp/LispObject; |
---|
1648 | ; NEW org/armedbear/lisp/Cons |
---|
1649 | ; DUP |
---|
1650 | ; ALOAD 1 |
---|
1651 | ; ALOAD 2 |
---|
1652 | ; INVOKESPECIAL org/armedbear/lisp/Cons.<init> (Lorg/armedbear/lisp/LispObject;Lorg/armedbear/lisp/LispObject;)V |
---|
1653 | ; ARETURN |
---|
1654 | ; MAXSTACK = 4 |
---|
1655 | ; MAXLOCALS = 3 |
---|
1656 | ; } |
---|
1657 | NIL |
---|
1658 | \end{listing-lisp} |
---|
1659 | |
---|
1660 | |
---|
1661 | \url{http://abcl.org/svn/tags/1.6.1/contrib/abcl-introspect/}. |
---|
1662 | |
---|
1663 | \section{abcl-build} |
---|
1664 | \label{sec:abcl-build} |
---|
1665 | |
---|
1666 | \textsc{ABCL-BUILD} constitutes a new implementation for the original |
---|
1667 | Lisp-hosted ABCL build system API in the package \code{ABCL-BUILD} |
---|
1668 | that uses the same build artifacts as all of the other current builds. |
---|
1669 | |
---|
1670 | \subsection{Utilities} |
---|
1671 | |
---|
1672 | \textsc{ABCL-BUILD} consolidates various utilities that are useful |
---|
1673 | for system construction, namely |
---|
1674 | \begin{itemize} |
---|
1675 | |
---|
1676 | \item The ability to introspect the invocation of given executable in |
---|
1677 | the current implementation process PATH. |
---|
1678 | |
---|
1679 | \item Downloading and unpackaging selected JVM artifacts, namely the |
---|
1680 | Ant and Maven build tools. The \code{ABCL-BUILD:WITH-ANT} and |
---|
1681 | \code{ABCL-BUILD:WITH-MVN} macros abstracts this installation |
---|
1682 | procedure conveniently away from the User. |
---|
1683 | |
---|
1684 | \item The beginnings of a generic framework to download arbitrary |
---|
1685 | archives from the network. |
---|
1686 | \end{itemize} |
---|
1687 | |
---|
1688 | \url{http://abcl.org/svn/tags/1.6.1/contrib/abcl-build/}. |
---|
1689 | |
---|
1690 | \section{named-readtables} |
---|
1691 | |
---|
1692 | \code{NAMED-READTABLES} is a library that provides a namespace for |
---|
1693 | readtables akin to the already-existing namespace of packages. |
---|
1694 | |
---|
1695 | \url{https://github.com/melisgl/named-readtables/}. |
---|
1696 | \url{http://abcl.org/svn/tags/1.6.1/contrib/named-readtables/}. |
---|
1697 | |
---|
1698 | \chapter{History} |
---|
1699 | \index{History} |
---|
1700 | |
---|
1701 | \textsc{ABCL} was originally the extension language for the J editor, which was |
---|
1702 | started in 1998 by Peter Graves. Sometime in 2003, a whole lot of |
---|
1703 | code that had previously not been released publicly was suddenly |
---|
1704 | committed that enabled ABCL to be plausibly termed an emergent ANSI |
---|
1705 | Common Lisp implementation candidate. |
---|
1706 | |
---|
1707 | From 2006 to 2008, Peter manned the development lists, incorporating |
---|
1708 | patches as made sense. After a suitable search, Peter nominated Erik |
---|
1709 | H\"{u}lsmann to take over the project. |
---|
1710 | |
---|
1711 | In 2008, the implementation was transferred to the current |
---|
1712 | maintainers, who have strived to improve its usability as a |
---|
1713 | contemporary Common Lisp implementation. |
---|
1714 | |
---|
1715 | On October 22, 2011, with the publication of this Manual explicitly |
---|
1716 | stating the conformance of Armed Bear Common Lisp to \textsc{ANSI}, we |
---|
1717 | released abcl-1.0.0. We released abcl-1.0.1 as a maintenance release |
---|
1718 | on January 10, 2012. |
---|
1719 | |
---|
1720 | In December 2012, we revised the implementation by adding |
---|
1721 | \textsc{(A)MOP} with the release of abcl-1.1.0. We released |
---|
1722 | abcl-1.1.1 as a maintenance release on February 14, 2013. |
---|
1723 | |
---|
1724 | At the beginning of June 2013, we enhanced the stability of the |
---|
1725 | implementation with the release of abcl-1.2.1. |
---|
1726 | |
---|
1727 | In March 2014, we introduced the Fourth Edition of the implementation |
---|
1728 | with abcl-1.3.0. At the end of April 2014, we released abcl-1.3.1 as |
---|
1729 | a maintenance release. |
---|
1730 | |
---|
1731 | In October 2016 we blessed the current \textsc{svn} trunk |
---|
1732 | \url{http://abcl.org/svn/trunk/} as 1.4.0, which includes the |
---|
1733 | community contributions from Vihbu, Olof, Pipping, and Cyrus. We |
---|
1734 | gingerly stepped into current century by establishing \textsc{git} |
---|
1735 | bridges to the source repositories avaiable via the URIs |
---|
1736 | \url{https://github.com/armedbear/abcl/} and |
---|
1737 | \url{https://gitlab.common-lisp.net/abcl/abcl/} so that pull requests |
---|
1738 | for enhancements to the implementation many be more easily |
---|
1739 | facilitated. |
---|
1740 | |
---|
1741 | In June 2017, we released ABCL 1.5.0 which dropped support for running |
---|
1742 | upon Java 5. |
---|
1743 | |
---|
1744 | Against the falling canvas of 2019 we released ABCL 1.6.0 which |
---|
1745 | provided compatibility with Java 11 while skipping Java 9 and 10. In |
---|
1746 | April 2020, we offered abcl-1.6.1 as a maintenance release for usage |
---|
1747 | around ELS2020. |
---|
1748 | |
---|
1749 | \appendix |
---|
1750 | |
---|
1751 | \chapter{The MOP Dictionary} |
---|
1752 | |
---|
1753 | \include{mop} |
---|
1754 | |
---|
1755 | \chapter{The SYSTEM Dictionary} |
---|
1756 | |
---|
1757 | The public interfaces in this package are subject to change with |
---|
1758 | \textsc{ABCL} 1.7. |
---|
1759 | |
---|
1760 | \include{system} |
---|
1761 | |
---|
1762 | \chapter{The JSS Dictionary} |
---|
1763 | |
---|
1764 | These public interfaces are provided by the JSS contrib. |
---|
1765 | |
---|
1766 | \include{jss} |
---|
1767 | |
---|
1768 | \bibliography{abcl} |
---|
1769 | \bibliographystyle{alpha} |
---|
1770 | |
---|
1771 | \printindex |
---|
1772 | |
---|
1773 | \end{document} |
---|