Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 723830890bac44da3d113209b14e090b > files > 245

sbcl-1.0.31-1mdv2010.0.i586.rpm

<html lang="en">
<head>
<title>Operations - asdf Manual</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="asdf Manual">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="The-object-model-of-asdf.html#The-object-model-of-asdf" title="The object model of asdf">
<link rel="prev" href="The-object-model-of-asdf.html#The-object-model-of-asdf" title="The object model of asdf">
<link rel="next" href="Components.html#Components" title="Components">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
This manual describes asdf, a system definition facility for Common
Lisp programs and libraries.

asdf Copyright (C) 2001-2004 Daniel Barlow and contributors

This manual Copyright (C) 2001-2004 Daniel Barlow and
contributors

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
``Software''), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
  pre.display { font-family:inherit }
  pre.format  { font-family:inherit }
  pre.smalldisplay { font-family:inherit; font-size:smaller }
  pre.smallformat  { font-family:inherit; font-size:smaller }
  pre.smallexample { font-size:smaller }
  pre.smalllisp    { font-size:smaller }
  span.sc    { font-variant:small-caps }
  span.roman { font-family:serif; font-weight:normal; } 
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
--></style>
</head>
<body>
<div class="node">
<a name="Operations"></a>
<p>
Next:&nbsp;<a rel="next" accesskey="n" href="Components.html#Components">Components</a>,
Previous:&nbsp;<a rel="previous" accesskey="p" href="The-object-model-of-asdf.html#The-object-model-of-asdf">The object model of asdf</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="The-object-model-of-asdf.html#The-object-model-of-asdf">The object model of asdf</a>
<hr>
</div>

<!-- node-name,  next,  previous,  up -->
<h3 class="section">3.1 Operations</h3>

<p><a name="index-operation-3"></a>
An <dfn>operation</dfn> object of the appropriate type is instantiated
whenever the user wants to do something with a system like

     <ul>
<li>compile all its files
<li>load the files into a running lisp environment
<li>copy its source files somewhere else
</ul>

   <p>Operations can be invoked directly, or examined to see what their
effects would be without performing them.  <em>FIXME: document how!</em>  There
are a bunch of methods specialised on operation and component type
that actually do the grunt work.

   <p>The operation object contains whatever state is relevant for this
purpose (perhaps a list of visited nodes, for example) but primarily
is a nice thing to specialise operation methods on and easier than
having them all be EQL methods.

   <p>Operations are invoked on systems via <code>operate</code>.

<div class="defun">
&mdash; Generic function: <b>operate</b><var> operation system &amp;rest initargs<a name="index-operate-4"></a></var><br>
&mdash; Generic function: <b>oos</b><var> operation system &amp;rest initargs<a name="index-oos-5"></a></var><br>
<blockquote><p><code>operate</code> invokes <var>operation</var> on <var>system</var>.  <code>oos</code>
is a synonym for <code>operate</code>.

        <p><var>operation</var> is a symbol that is passed, along with the supplied
<var>initargs</var>, to <code>make-instance</code> to create the operation object. 
<var>system</var> is a system designator.

        <p>The initargs are passed to the <code>make-instance</code> call when creating
the operation object.  Note that dependencies may cause the operation
to invoke other operations on the system or its components: the new
operations will be created with the same initargs as the original one.

        </blockquote></div>

<ul class="menu">
<li><a accesskey="1" href="Predefined-operations-of-asdf.html#Predefined-operations-of-asdf">Predefined operations of asdf</a>
<li><a accesskey="2" href="Creating-new-operations.html#Creating-new-operations">Creating new operations</a>
</ul>

   </body></html>