<div dir="ltr">Hello again,<div><br></div><div>As often happens, describing the problem in detail prompted my brain to come up with another idea. I changed my output translation configuration to:</div><div><br></div><div><div>  `(:output-translations</div><div>    ;; (ABSOLUTE-COMPONENT-DESIGNATOR ABSOLUTE-COMPONENT-DESIGNATOR)</div><div>    (,(let* ((device (pathname-device *application-jar-path*))</div><div><span class="" style="white-space:pre">     </span>     (path (merge-pathnames "**/*.*" *application-jar-path*)))</div><div><span class="" style="white-space:pre"> </span>  (make-pathname :defaults path :device device)))</div><div>    :ignore-inherited-configuration<br></div><div>    :disable-cache)</div></div><div class="gmail_extra"><br></div><div class="gmail_extra">And now I don't get the "access denied" error, but it seems that ASDF:INITIALIZE-OUTPUT-TRANSLATIONS never returns...</div><div class="gmail_extra"><div><div class="gmail_signature"><br></div></div><div class="gmail_quote">On 14 December 2015 at 22:39, John Pallister <span dir="ltr"><<a href="mailto:john@synchromesh.com" target="_blank">john@synchromesh.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">Hello list,<div><br></div><div>I'm trying to configure ASDF to load my application while running within the Google App Engine development server (Jetty 6.1). My Ant build script uses ASDF-JAR:PACKAGE to produce a single JAR file containing my application and all dependencies, and copies this to the war/WEB-INF/lib/ directory so that it's in the classpath.</div><div><br></div><div>At runtime (in a separate bootstrap.lisp file), following the example of ASDF-JAR:ADD-TO-ASDF[1], I search the application JAR file (obtained by grovelling JAVA:DUMP-CLASSPATH) for the .ASD files and push them all onto ASDF:*CENTRAL-REGISTRY*. So far so good. (Having read the ASDF manual I now know I should either build a .cl-source-registry.cache file into the JAR or compute an ASDF source registry configuration and include that.)</div><div><br></div><div>When ASDF starts up it tries to read various configuration files from the filesystem, for both the source registry and for its output translations. This isn't allowed by App Engine. On #lisp, Attila Lendvai suggested that giving ASDF a source registry configuration of '(:SOURCE-REGISTRY :IGNORE-INHERITED-CONFIGURATION) should suppress this behaviour, and it does seem to work.</div><div><br></div><div>Now I'm struggling to get the output translations to work. Based on ADD-TO-ASDF again I'm using an output translations configuration of:</div><div><br></div><div>`(:output-translations</div><div>    (,(merge-pathnames "/**/*.*" *application-jar-path*)) ; => #P"/**/*.*"<br></div><div>    :ignore-inherited-configuration<br></div><div>    :disable-cache)</div><div><br></div><div>My *APPLICATION-JAR-PATH* is #P"jar:file:/Volumes/SoftRAID/Users/john/src/synchromesh/forumfeedme/war/WEB-INF/lib/forumfeedme-lisp-0.1.0.jar!/", i.e. a pathname with the JAR path as the PATHNAME-DEVICE.</div><div><br></div><div>With this I get the error "access denied ("java.io.FilePermission" "/___jar___file___root___" "read")". This matches the default translations seen in asdf.lisp:WRAPPING-OUTPUT-TRANSLATIONS:</div><div><br></div><div><div><div>  (defun wrapping-output-translations ()</div><div>    `(:output-translations</div><div>    ;; Some implementations have precompiled ASDF systems,</div><div>    ;; so we must disable translations for implementation paths.</div><div>      #+(or #|clozure|# ecl mkcl sbcl)</div><div>      ,@(let ((h (resolve-symlinks* (lisp-implementation-directory))))</div><div>          (when h `(((,h ,*wild-path*) ()))))</div><div>      #+mkcl (,(translate-logical-pathname "CONTRIB:") ())</div><div>      ;; All-import, here is where we want user stuff to be:</div><div>      :inherit-configuration</div><div>      ;; These are for convenience, and can be overridden by the user:</div><div>      #+abcl (#p"/___jar___file___root___/**/*.*" (:user-cache #p"**/*.*"))</div><div>      #+abcl (#p"jar:file:/**/*.jar!/**/*.*" (:function translate-jar-pathname))</div><div>      ;; We enable the user cache by default, and here is the place we do:</div><div>      :enable-user-cache))</div></div></div><div><br></div><div>Although I don't understand exactly how the "JAR file as device" (JFAD) translations are supposed to work, one thing that struck me as odd while investigating things was this:</div><div><br></div><div><div>CL-USER> (make-pathname :device (list #P"/foo.jar"))</div><div>#P"jar:file:/foo.jar!/"</div><div>CL-USER> (merge-pathnames "**/*.*" *)</div><div>#P"jar:file:/foo.jar!/**/*.*"</div><div>CL-USER> (merge-pathnames "/**/*.*" **)</div><div>#P"/**/*.*"</div></div><div><div>CL-USER> (pathname-directory **)</div><div>(:RELATIVE :WILD-INFERIORS)</div><div>CL-USER> (pathname-directory **)</div><div>(:ABSOLUTE :WILD-INFERIORS)</div></div><div><br></div><div>That is, merging a relative path with the (absolute) JFAD path retained the default JAR file "device" (and remains a relative path, which ASDF won't accept), but merging an absolute path reset the device component. I've read through the documentation for MERGE-PATHNAMES in the HyperSpec[2] and AFAICT the device component should be copied across. I'm reasonably confident that if it were, things would work better. But I could be (doubly) wrong.</div><div><br></div><div>I am trying to figure this out for myself, but I'm stuck for now, so I'm hoping someone (i.e. Mark) can, on reading this, offer some guidance as to where I should go from here. I haven't (yet) tried posting to the ASDF mailing list as this seems like a fairly ABCL-specific issue.</div><div><br></div><div>I guess the fallback is to unpack the application JAR and just load the FASLs directly, but (based again on ADD-TO-ASDF) I'm pretty sure that this should work, and it does seem to be the Right Thing.</div><div><br></div><div>Any or all comments and/or advice appreciated,</div><div><br></div><div>Cheers,</div><div><br></div><div>John :^P</div>







<div><br></div><div>[1] <a href="http://abcl.org/trac/browser/trunk/abcl/contrib/asdf-jar/asdf-jar.lisp" target="_blank">http://abcl.org/trac/browser/trunk/abcl/contrib/asdf-jar/asdf-jar.lisp</a></div><div>[2] <a href="http://www.lispworks.com/documentation/HyperSpec/Body/f_merge_.htm#merge-pathnames" target="_blank">http://www.lispworks.com/documentation/HyperSpec/Body/f_merge_.htm#merge-pathnames</a><br clear="all"><div><div>--<br>John Pallister<br><a href="mailto:john@johnp.net" target="_blank">john@johnp.net</a><br><a href="mailto:john@synchromesh.com" target="_blank">john@synchromesh.com</a></div></div>
</div></div>
</blockquote></div><br></div></div>