Skip to content
Snippets Groups Projects
Commit 24fb1118 authored by Robert P. Goldman's avatar Robert P. Goldman
Browse files

Patch from Fare documenting the BUILD-OP.

parent fa192c7d
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,6 @@ ...@@ -18,7 +18,6 @@
#:traverse-actions #:traverse-sub-actions #:required-components ;; in plan #:traverse-actions #:traverse-sub-actions #:required-components ;; in plan
#:action-path #:find-action #:stamp #:done-p #:action-path #:find-action #:stamp #:done-p
#:operation-definition-warning #:operation-definition-error ;; condition #:operation-definition-warning #:operation-definition-error ;; condition
#:build-op ;; THE generic operation
)) ))
(in-package :asdf/action) (in-package :asdf/action)
...@@ -57,6 +56,7 @@ ...@@ -57,6 +56,7 @@
(component 'component) (component 'component)
(opix (position operation formals)) (opix (position operation formals))
(coix (position component formals)) (coix (position component formals))
(prefix (subseq formals 0 opix)) (prefix (subseq formals 0 opix))
(suffix (subseq formals (1+ coix) len)) (suffix (subseq formals (1+ coix) len))
(more-args (when keyp `(&rest ,rest &key &allow-other-keys)))) (more-args (when keyp `(&rest ,rest &key &allow-other-keys))))
...@@ -222,7 +222,6 @@ dependencies."))) ...@@ -222,7 +222,6 @@ dependencies.")))
(:documentation "Error condition related to definition of incorrect OPERATION objects.")) (:documentation "Error condition related to definition of incorrect OPERATION objects."))
(defmethod initialize-instance :before ((o operation) &key) (defmethod initialize-instance :before ((o operation) &key)
;; build-op is a special case.
(unless (typep o '(or downward-operation upward-operation sideway-operation (unless (typep o '(or downward-operation upward-operation sideway-operation
selfward-operation non-propagating-operation)) selfward-operation non-propagating-operation))
(warn 'operation-definition-warning (warn 'operation-definition-warning
...@@ -399,15 +398,3 @@ in some previous image, or T if it needs to be done.") ...@@ -399,15 +398,3 @@ in some previous image, or T if it needs to be done.")
(action-description operation component))) (action-description operation component)))
(mark-operation-done operation component) (mark-operation-done operation component)
(return)))))) (return))))))
;;; Generic build operation
(with-upgradability ()
;; BUILD-OP was intended to be the default "master" operation to invoke on a system in ASDF3
;; (LOAD-OP typically serves that function now).
;; This feature has not yet been fully implemented yet, and is not used by anyone yet.
;; This is a path forward, and its default below is to backward compatibly depend on LOAD-OP.
;; [2014/01/26:rpg]
(defclass build-op (non-propagating-operation) ())
(defmethod component-depends-on ((o build-op) (c component))
`((,(or (component-build-operation c) 'load-op) ,c))))
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#:operation #:make-operation #:find-operation #:operation #:make-operation #:find-operation
#:upward-operation #:downward-operation #:sideway-operation #:selfward-operation #:upward-operation #:downward-operation #:sideway-operation #:selfward-operation
#:non-propagating-operation #:non-propagating-operation
#:build-system #:build-op #:build-op #:build #:build-system
#:load-op #:prepare-op #:compile-op #:load-op #:prepare-op #:compile-op
#:prepare-source-op #:load-source-op #:test-op #:prepare-source-op #:load-source-op #:test-op
#:feature #:version #:version-satisfies #:upgrade-asdf #:feature #:version #:version-satisfies #:upgrade-asdf
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
(:export (:export
#:operate #:oos #:operate #:oos
#:*systems-being-operated* #:*systems-being-operated*
#:build-system #:build-op #:build #:build-system
#:load-system #:load-systems #:load-systems* #:load-system #:load-systems #:load-systems*
#:compile-system #:test-system #:require-system #:compile-system #:test-system #:require-system
#:*load-system-operation* #:module-provide-asdf #:*load-system-operation* #:module-provide-asdf
...@@ -106,17 +106,35 @@ The :FORCE or :FORCE-NOT argument to OPERATE can be: ...@@ -106,17 +106,35 @@ The :FORCE or :FORCE-NOT argument to OPERATE can be:
(with-upgradability () (with-upgradability ()
(defvar *load-system-operation* 'load-op (defvar *load-system-operation* 'load-op
"Operation used by ASDF:LOAD-SYSTEM. By default, ASDF:LOAD-OP. "Operation used by ASDF:LOAD-SYSTEM. By default, ASDF:LOAD-OP.
You may override it with e.g. ASDF:LOAD-FASL-OP from asdf-bundle, You may override it with e.g. ASDF:LOAD-FASL-OP from asdf-bundle (recommended on ECL?)
or ASDF:LOAD-SOURCE-OP if your fasl loading is somehow broken. or ASDF:LOAD-SOURCE-OP if your fasl loading is somehow broken.
This may change in the future as we will implement component-based strategy This may change in the future if we implement component-directed strategy
for how to load or compile stuff") for how to load or compile stuff")
(defun build-system (system &rest keys) (defclass build-op (non-propagating-operation) ()
"Shorthand for `(operate 'asdf:build-op system)`." (:documentation "Since ASDF3, BUILD-OP is the recommended 'master' operation,
to operate by default on a system or component.
Its meaning is configurable via the :BUILD-OPERATION option of a component,
which is typically the name of a specific operation to which to delegate the build,
and may be NIL, which designates the *LOAD-SYSTEM-OPERATION*
that will load the system in the current image, and its typically LOAD-OP."))
(defmethod component-depends-on ((o build-op) (c component))
`((,(or (component-build-operation c) *load-system-operation*) ,c)))
(defun build (system &rest keys)
"The recommended way to interact with ASDF3.1 is via (ASDF:BUILD :FOO).
It will build system FOO using the operation BUILD-OP,
the meaning of which is configurable by the system, and
defaults to *LOAD-SYSTEM-OPERATION*, usually LOAD-OP, to load it in current image."
(apply 'operate 'build-op system keys) (apply 'operate 'build-op system keys)
t) t)
(defun build-system (system &rest keys)
"Alias for function BUILD"
(apply 'build system keys))
(defun load-system (system &rest keys &key force force-not verbose version &allow-other-keys) (defun load-system (system &rest keys &key force force-not verbose version &allow-other-keys)
"Shorthand for `(operate 'asdf:load-op system)`. See OPERATE for details." "Shorthand for `(operate 'asdf:load-op system)`. See OPERATE for details."
(declare (ignore force force-not verbose version)) (declare (ignore force force-not verbose version))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment