Now to the point.<div><br></div><div>ASDF right now has two modes of operation. One is "building" the other one is "loading". User defined operations belong to one or another class.</div><div><br></div>
<div>* compile-op is clearly a "building" operation, for it takes lisp files and compiles them</div><div>* load-op is clearly a "loading" operation: it just loads a compiled file</div><div>* load-source-op just as well.</div>
<div>* cffi-grovel is a "building" operation: it takes some header and produces a lisp file</div><div>* a ficticious ffi-dlopen would be a "loading" operation, installing a shared library in memory.</div>
<div><br></div><div>One would be tempted to classify these operations according to the value of OUTPUT-FILES. If it is NIL, then is a "builder", otherwise it is a "loader". However this is not always the case as ASDF has not imposed that restriction so far.</div>
<div><br></div><div>A simpler way to differentiate "builders" and "loaders" is the one I mentioned before: the two lisp images process, which is close to xvcb philosophy</div><div>1 Start a clean lisp image.</div>
<div>2 Apply a (asdf:oos 'load-op :target-system)</div><div>3 Quit the image</div><div>4 Start another clean lisp image</div><div>5 Apply (asdf:oos 'load-op :target-system)</div><div>The second pass will give a set of operations that is just "loaders", for the first phase created all files that the lisp needs: shared libraries, etc, etc</div>
<div><br></div><div>We thus all agree that a standalone system consists only of "loaders": from the second lisp image I could dump whatever is needed and produce a fresh and ready lisp image.</div><div><br></div>
<div>The same concept can be applied to binary distributed, standalone replacements for an ASDF system. If in step "5" I identify all the operations that are done on a given system I can identify all "loaders" that relate to that particular system.</div>
<div><br></div><div>The only missing ingredient would be identifying that the system needs, such as "resources" that are neither produced nor actually related to an ASDF operation, because currently there is no need for that. This can be left for a second stage, an ASDF 2.1 if you wish, for 3.0 looks too far and more like an excuse to forget things. In that ASDF 2.1 we can add another component such as</div>
<div><br></div><div>(:resource "my-bitmap-file" :type "bmp")</div><div><br></div><div>and force that component have always OUTPUT-FILES the file itself. Actually I can happily do it right now it is just two lines.</div>
<div><br></div><div>Now the question is how do we "fake" the two lisp images process, which is a perfectly valid specification of what we need.</div><div><br></div><div>Right now the extensions do not implement the previous specification. Instead, at the risk of including spurious things, I just invoke TRAVERSE with a LOAD-OP and find out all files that are actually loaded. I know this is a hack but it worked so far.</div>
<div><br></div><div>One way that conforms better to the previous specification would be as follows: First force a COMPILE-OP on the system, either in the current or in a forked image. This ensures that al build operations are performed. A second LOAD-OP using </div>
<div><div>  (defmethod operation-done-p :around ((operation load-op) c)</div><div>     (if *force-load-p* nil (call-next-method)))</div><div>and setting *force-load-p* to T will then identify which components actually form part of the lisp image.</div>
<div><br></div><div>This has the disadvantage that it triggers a full compilation of a system for a simple query. It is justified if the goal is just to make a bundle operation, but it may be too prohibiting for other extensions.</div>
<div><br></div><div>A third way would be to TRAVERSE using a system that assumes all builders are done and only "loaders" are required. How would I do that? Explicitely telling TRAVERSE what I assume that has been done and what not.</div>
<div><br></div><div><div>(defvar *gather-component-filter* nil)</div><div><br></div><div>(defmethod builder-operation-p ((o compile-op) c)</div><div>  t)</div><div><br></div><div>(defmethod builder-operation-p (o c)</div>
<div>  (and (output-files o c) t))</div><div><br></div><div>(defmethod operation-done-p :around ((o t) c)</div><div>  (if *gather-component-filter*</div><div>      (funcall *gather-component-filter* o c)</div><div>      (call-next-method)))</div>
<div><br></div><div>(defun gather-loaded-components (system &key (op-type 'compile-op)</div><div>                                 filter-system (filter-type t) include-self)</div><div> "Finds all components that SYSTEM depends on when applying LOAD-OP.</div>
<div>The output is a list of pairs of operations of the type OP-TYPE and</div><div>components they act upon. The list can be filtered either by component</div><div>type (FILTER-TYPE) or by imposing that the component belong to a given</div>
<div>system (FILTER-SYSTEM). INCLUDE-SELF adds a final pair for the</div><div>operation and the system itself."</div><div>  (let* ((system (find-system system))</div><div>         (*gather-component-filter* #'builder-operation-p)</div>
<div>         (operation (make-instance op-type))</div><div>         (tree (traverse (make-instance 'LOAD-OP) system)))</div><div>    (append (loop for (op . component) in tree</div><div>               when (and (typep component filter-type)</div>
<div>                         (or (not filter-system)</div><div>                             (eq (component-system component) filter-system)))</div><div>               collect (progn</div><div>                         (when (eq component system) (setf include-self nil))</div>
<div>                         (cons operation component)))</div><div>            (and include-self (list (cons operation system))))))</div><div><br></div><div>This is an extension of what is currently being used in asdf-ext.lisp but in a more reasonable way because it would be extensible to other things like resources, etc. Note that the :around method is harmless: it only takes effect when gathering components and what it does is discarding the operations we assume done.</div>
<div><br></div><div>Juanjo</div></div><div><br></div>-- <br>Instituto de Física Fundamental, CSIC<br>c/ Serrano, 113b, Madrid 28006 (Spain) <br><a href="http://tream.dreamhosters.com">http://tream.dreamhosters.com</a><br>

</div>