Skip to content

Commit

Permalink
First record as a project on its own
Browse files Browse the repository at this point in the history
darcs-hash:20080527004704-3cc5d-43684fef4edd5ba9ee3db68b0c0b479e465d4a23.gz
  • Loading branch information
Gary King committed May 27, 2008
0 parents commit 54e1e36
Show file tree
Hide file tree
Showing 29 changed files with 11,403 additions and 0 deletions.
19 changes: 19 additions & 0 deletions COPYING
@@ -0,0 +1,19 @@
Copyright (c) 2008-2008 Gary Warren King (gwking@metabang.com)

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.
59 changes: 59 additions & 0 deletions dev/api.lisp
@@ -0,0 +1,59 @@
(in-package #:metatilities)

(defgeneric choose-directory-question* (interface &rest args)
(:documentation ""))

(defgeneric choose-file-question* (interface &rest args)
(:documentation ""))

(defgeneric choose-item-from-pup* (interface the-list &rest args &key &allow-other-keys)
(:documentation ""))

(defgeneric choose-item-question* (interface list &rest args &key title &allow-other-keys)
(:documentation ""))

(defgeneric choose-new-file-question* (interface &rest args)
(:documentation ""))

(defgeneric gui-error* (interface condition &optional prefix standard-message)
(:documentation ""))

(defgeneric gui-warn* (interface string &rest args &key ok-text title size &allow-other-keys)
(:documentation ""))

(defgeneric help-spec (view)
(:documentation ""))

(defgeneric interface-beep* (interface &rest args)
(:documentation ""))

(defgeneric make-color** (interface red green blue)
(:documentation ""))

(defgeneric make-gray* (interface level)
(:documentation ""))

(defgeneric make-scaled-color* (interface red green blue scale)
(:documentation ""))

(defgeneric name (x)
(:documentation ""))

(defgeneric process-parameters* (interface &rest args)
(:documentation ""))

(defgeneric prompt-for* (interface type prompt &rest args &key &allow-other-keys)
(:documentation ""))

(defgeneric put-item-on-clipboard* (interface thing)
(:documentation ""))

(defgeneric select-instrument* (interface instrument &rest args)
(:documentation ""))

(defgeneric sound-note* (interface pitch velocity &rest args)
(:documentation ""))

(defgeneric stop-notes* (interface)
(:documentation ""))

121 changes: 121 additions & 0 deletions dev/copy-file.lisp
@@ -0,0 +1,121 @@
(in-package #:metatilities)

(eval-always
(export '(source/target-file-error
source-pathname
target-pathname
source/target-target-already-exists-error
source/target-source-does-not-exist-error
copy-file)))

(define-condition source/target-file-error (file-error)
((pathname :reader source-pathname
:initarg :source-pathname)
(target-pathname :reader target-pathname
:initarg :target-pathname :initform nil))
(:report (lambda (c s)
(format s "Copy of ~S to ~S failed"
(source-pathname c) (target-pathname c))))
(:documentation "General condition for file errors that have a source and target."))

(define-condition source/target-target-already-exists-error (source/target-file-error)
()
(:report (lambda (c s)
(format s "File action failed because target ~S already exists"
(target-pathname c))))
(:documentation "This error is signaled when the target pathname already exists."))

(define-condition source/target-source-does-not-exist-error
(source/target-file-error)
()
(:report (lambda (c s)
(format s "File action failed because source ~S does not exist"
(source-pathname c))))
(:documentation "This error is signaled when the source file does not exist."))

(defun copy-file (from to &key (if-does-not-exist :error)
(if-exists :error))
"Copies the file designated by the non-wild pathname designator FROM
to the file designated by the non-wild pathname designator TO. The following
keyword parameters are supported:
* :if-exists
this can be either :supersede or :error (the default). If it is :error then
a source/target-target-already-exists-error will be signaled if the file designated
by the TO pathname already exists.
* :if-does-not-exist
this can be either :ignore or :error (the default). If it is :error then
a source/target-source-does-not-exist-error will be signaled if the FROM pathname
designator does not exist.
"
(assert (member if-exists '(:error :supersede))
nil
"The if-exists keyword parameter must be one of :error or :supersede. It is currently set to ~S"
if-exists)
(assert (member if-does-not-exist '(:error :ignore))
nil
"The if-does-not-exist keyword parameter must be one of :error or :ignore. It is currently set to ~S"
if-does-not-exist)
(ensure-directories-exist to)
(cond ((probe-file from)
#+:allegro
(excl.osi:copy-file
from to
:overwrite (if (eq if-exists :supersede) :ignore nil))
#-:allegro
(let ((element-type #-:cormanlisp '(unsigned-byte 8)
#+:cormanlisp 'unsigned-byte))
(with-open-file (in from :element-type element-type)
(with-open-file (out to :element-type element-type
:direction :output
:if-exists if-exists)
(unless out
(error (make-condition 'source/target-target-already-exists
:pathname from
:target-pathname to)))
(copy-stream in out))))
(values t))
(t
;; no source file!
(ecase if-does-not-exist
((:error) (error 'source/target-source-does-not-exist-error
:pathname from :target-pathname to))
((:ignore) nil)))))

(defun move-file (from to &rest args &key (if-does-not-exist :error)
(if-exists :error))
(declare (dynamic-extent args)
(ignore if-exists if-does-not-exist))
(when (apply #'copy-file from to args)
(delete-file from)))

;;; borrowed from asdf-install -- how did this ever work ?!
;; for non-SBCL we just steal this from SB-EXECUTABLE
#-(or :digitool)
(defvar *stream-buffer-size* 8192)
#-(or :digitool)
(defun copy-stream (from to)
"Copy into TO from FROM until end of the input stream, in blocks of
*stream-buffer-size*. The streams should have the same element type."
(unless (subtypep (stream-element-type to) (stream-element-type from))
(error "Incompatible streams ~A and ~A." from to))
(let ((buf (make-array *stream-buffer-size*
:element-type (stream-element-type from))))
(loop
(let ((pos #-(or :clisp :cmu) (read-sequence buf from)
#+:clisp (ext:read-byte-sequence buf from :no-hang nil)
#+:cmu (sys:read-n-bytes from buf 0 *stream-buffer-size* nil)))
(when (zerop pos) (return))
(write-sequence buf to :end pos)))))

#+:digitool
(defun copy-stream (from to)
"Perform copy and map EOL mode."
(multiple-value-bind (reader reader-arg) (ccl::stream-reader from)
(multiple-value-bind (writer writer-arg) (ccl::stream-writer to)
(let ((datum nil))
(loop (unless (setf datum (funcall reader reader-arg))
(return))
(funcall writer writer-arg datum))))))

0 comments on commit 54e1e36

Please sign in to comment.