Skip to content
Snippets Groups Projects
  1. Feb 28, 2002
    • Daniel Barlow's avatar
      -(define-condition system-definition-error (error)) · 7265988e
      Daniel Barlow authored
       +(define-condition system-definition-error (error) ())
      fix for syntax error in probably any implementation other than cmucl.
      Thanks to John M Adams for pointing this out
      lose the special variables for tracking visited nodes; keep this data
      in the operation instead
       +(defmethod operation-ancestor ((operation operation))
       +  "Recursively chase the operation's parent pointer until we get to the head of the tree"
       +(defun make-sub-operation (o type)
      use this when creating new operations so that they inherit initargs
      appropriately from their parent
      7265988e
    • Daniel Barlow's avatar
      initarg handling in oos · 228b251a
      Daniel Barlow authored
      +** proclamations probably aren't
      228b251a
  2. Feb 22, 2002
    • Daniel Barlow's avatar
      make it work with CMUCL too · 120735f2
      Daniel Barlow authored
      120735f2
    • Daniel Barlow's avatar
      - (:use "CL")) · cc1db98b
      Daniel Barlow authored
       +  (:use :cl))
      may help people with odd read/print case (or ACL "modern" mode users)
       -    "telent:asdf;systems;"))
       +    #+nil "telent:asdf;systems;"))
      clisp objects to this
      fix pathname merging in internal-find-system so it works with CMUCL's
      rather odd *default-pathname-defaults*
      add a run-shell-command dfefintion for cmucl
      cc1db98b
  3. Feb 20, 2002
  4. Feb 19, 2002
    • Daniel Barlow's avatar
      (defclass module (component) · 6f6d3345
      Daniel Barlow authored
       +   (if-component-dep-fails :initform :fail
       +(defgeneric find-component (module name &optional version)
      though presently it ignores the extra arg
      major dependency rewrite to allow for and/or dependencies and specification
      of versions
      compile-and-load-op is dead
      we reuse old components when processing a defsystem form that we've already
      seen once.  this means that eql-specialized methods will continue to work
      and also that we can implement the pathname defaulting properly (it doesn't
      work yet)
      6f6d3345
    • Daniel Barlow's avatar
      new stuff describing · 39401b04
      Daniel Barlow authored
      - tetsing implementation features
      - version dependencies (doesn't yet work)
      - and/or dependencies (likewise, nonfunctional)
      
      proposed asdf system standard moved onto a cliki page
      39401b04
  5. Feb 14, 2002
  6. Feb 12, 2002
  7. Feb 11, 2002
  8. Dec 04, 2001
  9. Aug 20, 2001
  10. Aug 06, 2001
    • Daniel Barlow's avatar
      copile and load on a dso can now be separate operations · 39511286
      Daniel Barlow authored
       +(defmethod perform ((operation load-system) (c c-source-file))
      does nothing but must exist
      fixed dependencies to reflect reality after having played with them a lot
      for testing
      39511286
    • Daniel Barlow's avatar
      8ad709bc
    • Daniel Barlow's avatar
      TODO: +** compiler/loader options · d6d83262
      Daniel Barlow authored
      +** operation instantiation in traverse sucks
      d6d83262
    • Daniel Barlow's avatar
      add minimal (and probably also insufficient) set of :in-order-to args · d1f7aa37
      Daniel Barlow authored
      to see if the dependency chasing actually works
      d1f7aa37
    • Daniel Barlow's avatar
      +(define-condition missing-dependency (system-definition-error) · 3708d88d
      Daniel Barlow authored
       -   (depends-on :initform nil
       +   (in-order-to :initform nil :initarg :in-order-to)
      
       +   ;; the defsystem syntax allows us to define EQL methods with our
       +   ;; components.  We must keep track of them all so we can get rid of
       +   ;; them if need be when the defsystem form is re-evaluated
      
      (although note that we don't yet parse the necessary syntax, but the
      infrastructure is ready when we do)
      
      
       +(defvar *visited-nodes* nil)
       +(defvar *visiting-nodes* nil)
      and logical equivalents in operation slots go away.
      
        (defmethod visit-component ((o operation) (c component))
        (defmethod component-visited-p ((o operation) (c component))
        (defmethod (setf visiting-component) (new-value (o operation) (c component))
        (defmethod component-visiting-p ((o operation) (c component))
      all get updated to use new variables
       +(defmethod component-depends-on ((o operation) (c component))
      looks up dependencies from :depends-on slot
      reintroduce circularity check.  also rewrote the dependency traversing
      to introduce new operations as and when it needs to
       +(defmethod component-depends-on ((operation load-system) (c component))
      depends on compile-system
       -	       (create-instance-for-component c :file (second i) nil)))
       +	       (create-instance-for-component c :file i nil)))
      oops.  thanks csr
      3708d88d
    • Daniel Barlow's avatar
      Rewrote the section on dependencies. Dependencies are now between · 0d60754a
      Daniel Barlow authored
      (operation component) pairs, not just components.
      0d60754a
  11. Aug 03, 2001
  12. Aug 02, 2001
    • Daniel Barlow's avatar
      a component represents a source file, or a · ebaee857
      Daniel Barlow authored
       -collection of source files.
       +collection of components.
      
      "We extend the defsystem syntax to allow for eql-specialised methods on
      modules": updated to fit current operation abstraction
      
      symbols vs strings: Warn the user that they should either use keywords
      or be careful with the package that they evaluate defsystem forms in
      
      the :pathname argument is misnamed
      ebaee857
  13. Aug 01, 2001
Loading