Skip to content
Snippets Groups Projects
Commit 386b4440 authored by lhealy's avatar lhealy Committed by Liam Healy
Browse files

Remove obsolete files for data.

git-svn-id: svn+ssh://common-lisp.net/project/gsll/svn/branches/ffa@62 af03a46b-e846-0410-96e5-d5653c316fd0
parent 5eaf5234
No related branches found
No related tags found
No related merge requests found
;; Blocks of data
;; Liam Healy, Mon Mar 27 2006 - 12:28
;; Time-stamp: <2008-03-09 18:54:10EDT block.lisp>
;; $Id$
(in-package :gsl)
;;; Block definition
(cffi:defcstruct block
(size size)
(data :pointer))
(add-data-class block double-float block-double-float block "block")
(add-data-class block single-float block-single-float block "block")
(add-data-class block fixnum block-fixnum block "block")
(add-data-class block complex block-complex block "block")
(defdata block double-float)
(defdata block single-float)
(defdata block fixnum)
(defdata block complex)
;; Expansions for GSL data objects
;; Liam Healy 2008-03-23 14:22:01EDT data-expansions.lisp
;; Time-stamp: <2008-03-23 18:06:22EDT data-expansions.lisp>
;; $Id$
(in-package :gsl)
;;; Replace the data-go macro from data.lisp
(defmacro data-go (type matrixp)
"Define the letm function for data types."
)
;; Using GSL bulk data (vectors, matrices, etc.) storage.
;; Liam Healy, Sun Mar 26 2006 - 16:32
;; Time-stamp: <2008-03-30 14:16:25EDT data.lisp>
;; $Id$
(in-package :gsl)
;;; To do:
;;; - create a CL object of class gsl-data with the right GSL
;;; pointer just from a raw CL object
;;; - recreate GSL object should be possible to recreate the C object
;;; (need this?)
;;; - master list of objects, for manual memory management?
;;;;****************************************************************************
;;;; Class gsl-data and generic functions
;;;;****************************************************************************
(defclass gsl-data ()
((pointer :initarg :pointer :accessor pointer
:documentation "A C pointer to the GSL representation of the data.")
(storage-size :initarg :storage-size :reader storage-size)
(data :accessor data-cache
:documentation "The Lisp object corresponding to the GSL data.")
(cl-invalid
:initform t :accessor cl-invalid
:documentation
"An indication of whether the Lisp object (slot 'data) agrees with the
GSL C data. If NIL, they agree. If T, they disagree in an unspecified
way. If a list of index sets, those indices disagree and the remainder
are correct."))
(:documentation
"A superclass for all GSL data storage structures, such as vector, matrix,
etc."))
(defmethod print-object ((object gsl-data) stream)
(print-data-object object *print-array* stream))
(defparameter *print-data-contents* t)
(defun print-data-object (object contents stream)
"Print the data object to the stream, possibly showing contents."
(print-unreadable-object (object stream :type t :identity t)
(when (and contents *print-data-contents*)
(princ (data object) stream))))
(defgeneric gsl-array (object)
(:documentation "A pointer to the GSL array with the data contents."))
(defun dim0 (object)
"The first dimension of the object."
(first (storage-size object)))
(defun dim1 (object)
"The second dimension of the object."
(second (storage-size object)))
(defgeneric cl-elt-type (object)
(:documentation "The CL type of an element."))
;;; Accessing elements
(export 'maref)
(defgeneric maref (object &rest indices)
(:documentation "An element of the data."))
(defgeneric (setf maref) (value object &rest indices)
(:method :after (value (object gsl-data) &rest indices)
(push indices (cl-invalid object)))
(:documentation "Set an element of the data."))
(export '(write-binary read-binary write-formatted read-formatted))
(defgeneric write-binary (object stream)
(:documentation "Write the binary GSL data."))
(defgeneric read-binary (object stream)
(:documentation "Read the binary GSL data."))
(defgeneric write-formatted (object stream format)
(:documentation "Write the formatted GSL data."))
(defgeneric read-formatted (object stream format)
(:documentation "Read the formatted GSL data."))
;;;;****************************************************************************
;;;; Macro defdata to define class etc.
;;;;****************************************************************************
(defun assign-pointer (object pointer)
"Check that a GSL data pointer is not null, then assign it to the object."
(check-null-pointer
pointer
:ENOMEM
(format nil "for ~a."
(with-output-to-string (stream)
(print-data-object object nil stream))))
(setf (pointer object) pointer))
;;; (args (loop for i below dimensions collect (intern (format nil "I~d" i))))
;;; (mapcar (lambda (v) `(,v size)) args)
(defmacro data-go (type matrixp)
"Define the letm function for data types."
(if matrixp ; Matrix (two indices)
`(defgo ,type (size-or-initial &optional size-or-zero zero)
(cond ((and (numberp size-or-initial) (numberp size-or-zero))
;; Array dimensions are given as literal numbers for matrix
(list
`(make-data ',',type ,zero ,size-or-initial ,size-or-zero)
'free))
((typep size-or-initial 'array)
(let ((argsymb (gensym "ARG")))
(list
`(apply #'make-data
',',type ,size-or-zero (array-dimensions ,argsymb))
'free
(lambda (symb)
`(setf (data ,symb) ,argsymb))
(lambda () (list argsymb size-or-initial)))))
(t
;; Determine at runtime whether first arg is initial or dimension
(let ((argsymb (gensym "ARG")))
(list
`(apply #'make-data ',',type nil
(if (and (numberp ,argsymb) (numberp ,size-or-zero))
(list ,argsymb ,size-or-zero)
(array-dimensions ,argsymb)))
'free
(lambda (symb)
`(unless (and (numberp ,argsymb) (numberp ,size-or-zero))
(setf (data ,symb) ,argsymb)))
(lambda () (list argsymb size-or-initial)))))))
;; Vector or other one-index object
`(defgo ,type (size-or-initial &optional zero)
(typecase size-or-initial
(number
;; Size is given as literal number
(list
`(make-data ',',type ,zero ,size-or-initial)
'free))
(vector
;; Initial value supplied as literal CL vector)
(let ((argsymb (gensym "ARG")))
(list
`(make-data ',',type ,zero
(length ,argsymb))
'free
(lambda (symb) `(setf (data ,symb) ,argsymb))
(lambda () (list argsymb size-or-initial)))))
(t
;; Determine at runtime whether first arg is initial or size
(let ((argsymb (gensym "ARG")))
(list
`(make-data ',',type ,zero
(if (numberp ,argsymb) ,argsymb (length ,argsymb)))
'free
(lambda (symb) `(unless (numberp ,argsymb) (setf (data ,symb) ,argsymb)))
(lambda () (list argsymb size-or-initial)))))))))
(defparameter *data-class-name* nil
"A list classes, each consisting of a list
superclass, CL element type, class, GSL splice name.")
(defmacro add-data-class (category element-type class superclass GSL-string)
`(eval-when (:compile-toplevel :load-toplevel :execute)
(pushnew (list ',category ',element-type ',class ',superclass ',GSL-string)
*data-class-name*
:test #'equal)))
(defun data-type-lookup (category element-type)
(find (list category element-type)
*data-class-name*
:key (lambda (l) (subseq l 0 2))
:test #'equal))
(defun data-class-name (category element-type)
(third (data-type-lookup category element-type)))
(defun data-superclass-name (category element-type)
(fourth (data-type-lookup category element-type)))
(defun data-gsl-string (category element-type)
(fifth (data-type-lookup category element-type)))
(defmacro defdata (category cl-elt-type &optional (dimensions 1) splice-name)
"For the type named in the string,
define the allocator (gsl-*-alloc), zero allocator (gsl-*-calloc),
freeing (gsl-*-free), binary writing (binary-*-write) and
reading (binary-*-read), formatted writing (write-*-formatted)
and reading (read-*-formatted) functions."
(flet ((gsl-name (function-name)
(format nil "gsl_~a~a_~a"
(data-gsl-string category cl-elt-type)
(or splice-name
(lookup-splice-name cl-elt-type)) function-name)))
(let* ((cargs (loop for i below dimensions
collect `((nth ,i (storage-size object)) size)))
(class-name (data-class-name category cl-elt-type)))
`(progn
(defclass ,class-name (,(data-superclass-name category cl-elt-type))
((cl-elt-type :initform ',cl-elt-type :reader cl-elt-type
:allocation :class)))
(data-go ,class-name
,(or (member category '(matrix combination))))
(defmfun alloc ((object ,class-name))
,(gsl-name "alloc") ,cargs
:type :method
:c-return (cr :pointer)
:return ((assign-pointer object cr)))
(defmfun calloc ((object ,class-name))
,(gsl-name "calloc") ,cargs
:type :method
:c-return (cr :pointer)
:return ((assign-pointer object cr)))
(defmfun free ((object ,class-name))
,(gsl-name "free") (((pointer object) :pointer))
:type :method
:c-return :void)
(defmfun write-binary ((object ,class-name) stream)
,(gsl-name "fwrite") ((stream :pointer) ((pointer object) :pointer))
:type :method)
(defmfun read-binary ((object ,class-name) stream)
,(gsl-name "fread") ((stream :pointer) ((pointer object) :pointer))
:type :method)
(defmfun write-formatted ((object ,class-name) stream format)
,(gsl-name "fprintf")
((stream :pointer) ((pointer object) :pointer) (format :string))
:type :method)
(defmfun read-formatted ((object ,class-name) stream format)
,(gsl-name "fscanf")
((stream :pointer) ((pointer object) :pointer) (format :string))
:type :method)))))
(defun defmfun-all (category cl-types args &optional key-string)
"A defmfun for each of the declared data types."
(let ((categories (if (listp category) category (list category))))
`(progn
,@(loop for type in cl-types
for ctype = (lookup-C-type type)
collect
`(defmfun ,(first args)
;; Set the class name for the arglist
,(mapcar
(lambda (x)
(if (and (listp x) (member (second x) categories))
(list (first x)
(data-class-name (second x) type))
x))
(second args))
;; Create the correct GSL C library function name
,(splice-name
(third args)
;; Use key-string to override the lookup of the category.
(or key-string (data-gsl-string (first categories) type))
type)
,(mapcar
(lambda (x)
(if (eq (st-type x) :c-base-type)
(list (st-symbol x) ctype)
x))
(fourth args))
,@(let ((restargs (copy-list (nthcdr 4 args))))
(when (eq (getf restargs :c-return) :c-base-type)
(setf (getf restargs :c-return) ctype))
(setf (getf restargs :type) :method)
restargs))))))
;;;;****************************************************************************
;;;; Making data objects and initializing storage
;;;;****************************************************************************
(export '(make-data))
(defgeneric alloc (object)
(:documentation "Allocate GSL data; used internally."))
(defgeneric calloc (object)
(:documentation "Allocate GSL data and clear; used internally."))
(export 'free)
(defgeneric free (object)
(:documentation "Free GSL data.")
(:method :after ((object gsl-data)) (setf (pointer object) nil)))
(defun make-data (type zero &rest size)
"Make the GSL data object, including the allocation of space.
The user is responsible for calling #'free to free the foreign
memory when done."
(let ((obj (make-instance type :storage-size size)))
(if zero (calloc obj) (alloc obj))
obj))
;;;;****************************************************************************
;;;; Getting values into CL
;;;;****************************************************************************
(defun cl-invalidate (&rest objects)
"Mark the CL image of the GSL array as invalid."
(mapc (lambda (obj) (setf (cl-invalid obj) t))
objects))
(export 'data)
(defgeneric data (object &optional destination)
(:documentation "Extract the values in the object to a CL object.
The destination may be a sequence, 'vector, 'list.
If it is a sequence, that object is filled with the values.
If it is any other object, a new sequence is made of the type
specified.")
;; Default method is to make a sequence
(:method ((object gsl-data) &optional (sequence 'vector))
(if (eq (cl-invalid object) t)
;; set everything
(let* ((total-size (apply #'* (storage-size object)))
(seq
(case sequence
(list (make-list total-size))
((nil vector)
(make-array (list total-size)
:element-type (cl-elt-type object)))
(t sequence))))
(loop for i from 0
below (min (length seq) total-size)
do (setf (elt seq i) (maref object i)))
seq)
;; set selected
(let ((seq (data-cache object)))
(mapc (lambda (is)
(let ((i (first is)))
(setf (elt seq i) (maref object i))))
(cl-invalid object))
seq)))
;; Around method looks for cached value and returns it if valid;
;; otherwise computes CL element(s).
(:method :around ((object gsl-data) &optional (sequence 'vector))
(declare (ignore sequence))
(when (cl-invalid object)
(setf (data-cache object)
(call-next-method)
(cl-invalid object)
nil))
(data-cache object)))
;; Using GSL bulk data (vectors, matrices, etc.) storage.
;; Liam Healy, Sun Mar 26 2006 - 16:32
;; Time-stamp: <2008-04-26 22:13:16EDT mathematical.lisp>
;; $Id$
(in-package :gsl)
;;;;****************************************************************************
;;;; Setting values from CL
;;;;****************************************************************************
(defgeneric (setf data) (cl-array object)
(:documentation "Set the values in the object from a CL array.")
;; Default method is to read from a sequence
(:method (sequence (object gsl-data))
(loop for i from 0
below (min (length sequence) (apply #'* (storage-size object)))
do (setf (maref object i) (elt sequence i))))
(:method :after (source (object gsl-data))
(setf (cl-invalid object) t)))
(export 'set-identity)
(defgeneric set-identity (object)
(:documentation "Set elements to represent the identity.")
(:method :after ((object gsl-data)) (cl-invalidate object)))
(export 'set-basis)
(defgeneric set-basis (object index)
(:documentation "Set indexth basis vector."))
(export 'data-valid)
(defgeneric data-valid (object)
(:documentation "Validate the values in the object."))
;;;;****************************************************************************
;;;; Copying
;;;;****************************************************************************
(export '(copy swap))
(defgeneric copy (destination source)
(:documentation "Copy from source to destination."))
(defgeneric swap (obj1 obj2)
(:documentation "Swap contents of obj1 and obj2."))
;;;;****************************************************************************
;;;; Arithmetic operations
;;;;****************************************************************************
(export '(m+ m- m* m/ m*c m+c))
(defgeneric m+ (a b)
(:documentation "Add."))
(defgeneric m- (a b)
(:documentation "Subtract."))
(defgeneric m* (a b)
(:documentation "Multiply."))
(defgeneric m/ (a b)
(:documentation "Divide."))
(defgeneric m+c (a x)
(:documentation "Add scalar."))
(defgeneric m*c (a x)
(:documentation "Multiply by scalar."))
;;;;****************************************************************************
;;;; Maximum and minimum elements
;;;;****************************************************************************
(export
'(gsl-max gsl-min gsl-minmax gsl-max-index gsl-min-index gsl-minmax-index))
(defgeneric gsl-min (a)
(:documentation "Minimum."))
(defgeneric gsl-max (a)
(:documentation "Maximum."))
(defgeneric gsl-minmax (a)
(:documentation "Minimum and maximum."))
(defgeneric gsl-min-index (a)
(:documentation "Index of minimum."))
(defgeneric gsl-max-index (a)
(:documentation "Index of maximum."))
(defgeneric gsl-minmax-index (a)
(:documentation "Indices of minimum and maximum."))
;;;;****************************************************************************
;;;; Properties
;;;;****************************************************************************
(export '(gsl-zerop))
(defgeneric gsl-zerop (a)
(:documentation "Object is zero."))
This diff is collapsed.
This diff is collapsed.
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