Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Moringen
asdf
Commits
24fb1118
Commit
24fb1118
authored
11 years ago
by
Robert P. Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Patch from Fare documenting the BUILD-OP.
parent
fa192c7d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
action.lisp
+1
-14
1 addition, 14 deletions
action.lisp
interface.lisp
+1
-1
1 addition, 1 deletion
interface.lisp
operate.lisp
+23
-5
23 additions, 5 deletions
operate.lisp
with
25 additions
and
20 deletions
action.lisp
+
1
−
14
View file @
24fb1118
...
@@ -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
))))
This diff is collapsed.
Click to expand it.
interface.lisp
+
1
−
1
View file @
24fb1118
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
operate.lisp
+
23
−
5
View file @
24fb1118
...
@@ -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-
bas
ed strategy
This may change in the future
if
we implement component-
direct
ed 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
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment