diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-08-04 15:18:12 +0200 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-08-04 15:18:12 +0200 |
commit | 5cbcd439f32529596ef929a7def75bc054dfc3e4 (patch) | |
tree | 9d603af0d955e38e59e056920f827b076d2232bf | |
parent | 4765624c39dffb085554b1459b3e80bcbf347791 (diff) |
More file and directory layout refactoring.
darcs-hash:9efff3ff2e22c9d8a85f8fcc7fa4487937ddd62f
-rw-r--r-- | Lisp/constant-data.lisp | 44 | ||||
-rw-r--r-- | Lisp/method-invocation.lisp | 34 | ||||
-rw-r--r-- | Lisp/objcl.lisp | 1 | ||||
-rw-r--r-- | Lisp/type-conversion.lisp | 35 | ||||
-rw-r--r-- | objective-cl.asd | 32 |
5 files changed, 79 insertions, 67 deletions
diff --git a/Lisp/constant-data.lisp b/Lisp/constant-data.lisp index 3d424f5..eebe3e9 100644 --- a/Lisp/constant-data.lisp +++ b/Lisp/constant-data.lisp @@ -1,28 +1,6 @@ (in-package #:mulk.objective-cl) -;;;; (@* "Constant accessors") -(defun lisp-value->type-name (value) - (car (rassoc-if #'(lambda (type) - (typep value type)) - *objcl-type-map*))) - -(defun type-name->lisp-type (type-name) - (cdr (assoc type-name *objcl-type-map*))) - -(defun type-name->slot-name (type-name) - (cdr (assoc type-name *objcl-data-map*))) - -(defun type-name->type-id (type-name) - (string (cdr (assoc type-name *objcl-api-type-names*)))) - -(defun type-id->type-name (type-id) - (car (rassoc (char type-id 0) *objcl-api-type-names*))) - -(defun type-name->c-type (type-name) - (cdr (assoc type-name *objcl-c-type-map*))) - - ;;;; (@* "The constant data") ;;; Copied from objc-api.h ;;; Probably ought to be generated by C code at initialisation time. @@ -121,3 +99,25 @@ (bool . :boolean) (ptr . :pointer) (charptr . :pointer))) + + +;;;; (@* "Constant accessors") +(defun lisp-value->type-name (value) + (car (rassoc-if #'(lambda (type) + (typep value type)) + *objcl-type-map*))) + +(defun type-name->lisp-type (type-name) + (cdr (assoc type-name *objcl-type-map*))) + +(defun type-name->slot-name (type-name) + (cdr (assoc type-name *objcl-data-map*))) + +(defun type-name->type-id (type-name) + (string (cdr (assoc type-name *objcl-api-type-names*)))) + +(defun type-id->type-name (type-id) + (car (rassoc (char type-id 0) *objcl-api-type-names*))) + +(defun type-name->c-type (type-name) + (cdr (assoc type-name *objcl-c-type-map*))) diff --git a/Lisp/method-invocation.lisp b/Lisp/method-invocation.lisp index ebd6fca..3cc927b 100644 --- a/Lisp/method-invocation.lisp +++ b/Lisp/method-invocation.lisp @@ -43,40 +43,6 @@ (dealloc-obj-data return-value)))) -;;; (@* "Data conversion") -(defun lisp->obj-data (value) - (let ((obj-data (foreign-alloc 'obj-data)) - (type-name (lisp-value->type-name value))) - (with-foreign-slots ((type data) obj-data obj-data) - (setf (foreign-slot-value data - 'obj-data-union - (type-name->slot-name type-name)) - (typecase value - ((or objc-id objc-class objc-selector objc-exception) - (pointer-to value)) - (string (foreign-string-alloc value)) - (otherwise value))) - (setf type - (foreign-string-alloc (type-name->type-id type-name)))) - obj-data)) - - -(defun obj-data->lisp (obj-data) - (with-foreign-slots ((type data) obj-data obj-data) - (let* ((type-name (type-id->type-name (foreign-string-to-lisp type))) - (lisp-type (type-name->lisp-type type-name)) - (value (if (eq 'void type-name) - (values) - (foreign-slot-value data - 'obj-data-union - (type-name->slot-name type-name))))) - (case lisp-type - ((objc-id objc-class objc-selector objc-exception) - (make-instance lisp-type :pointer value)) - ((string) (foreign-string-to-lisp value)) - (otherwise value))))) - - ;;; (@* "Helper functions") (defun arglist-intersperse-types (arglist) (mapcan #'(lambda (arg) diff --git a/Lisp/objcl.lisp b/Lisp/objcl.lisp deleted file mode 100644 index ec9b2e0..0000000 --- a/Lisp/objcl.lisp +++ /dev/null @@ -1 +0,0 @@ -(in-package #:mulk.objective-cl) diff --git a/Lisp/type-conversion.lisp b/Lisp/type-conversion.lisp new file mode 100644 index 0000000..6869ff9 --- /dev/null +++ b/Lisp/type-conversion.lisp @@ -0,0 +1,35 @@ +(in-package #:mulk.objective-cl) + + +;;; (@* "Data conversion") +(defun lisp->obj-data (value) + (let ((obj-data (foreign-alloc 'obj-data)) + (type-name (lisp-value->type-name value))) + (with-foreign-slots ((type data) obj-data obj-data) + (setf (foreign-slot-value data + 'obj-data-union + (type-name->slot-name type-name)) + (typecase value + ((or objc-id objc-class objc-selector objc-exception) + (pointer-to value)) + (string (foreign-string-alloc value)) + (otherwise value))) + (setf type + (foreign-string-alloc (type-name->type-id type-name)))) + obj-data)) + + +(defun obj-data->lisp (obj-data) + (with-foreign-slots ((type data) obj-data obj-data) + (let* ((type-name (type-id->type-name (foreign-string-to-lisp type))) + (lisp-type (type-name->lisp-type type-name)) + (value (if (eq 'void type-name) + (values) + (foreign-slot-value data + 'obj-data-union + (type-name->slot-name type-name))))) + (case lisp-type + ((objc-id objc-class objc-selector objc-exception) + (make-instance lisp-type :pointer value)) + ((string) (foreign-string-to-lisp value)) + (otherwise value)))))
\ No newline at end of file diff --git a/objective-cl.asd b/objective-cl.asd index b3f7f8a..f609d4d 100644 --- a/objective-cl.asd +++ b/objective-cl.asd @@ -4,14 +4,26 @@ :author "Matthias Benkard <matthias@benkard.de>" :licence "GNU General Public License, version 3 or higher" :depends-on (#:cffi #:trivial-garbage) - :components ((:file "defpackage") - (:file "constant-data") - (:file "data-types") - (:file "libobjcl") - (:file "utilities") - (:file "weak-hash-tables") - (:file "memory-management") - (:file "method-invocation") - (:file "reader-syntax") - (:file "objcl")) + :components + ((:module "Lisp" + :components ((:file "defpackage") + (:file "constant-data" :depends-on ("defpackage")) + (:file "data-types" :depends-on ("defpackage")) + (:file "type-conversion" :depends-on ("defpackage" + "data-types")) + (:file "libobjcl" :depends-on ("defpackage" + "data-types" + "type-conversion")) + (:file "utilities" :depends-on ("defpackage")) + (:file "weak-hash-tables" :depends-on ("defpackage")) + (:file "memory-management" :depends-on ("defpackage" + "weak-hash-tables" + "data-types" + "method-invocation")) + (:file "method-invocation" :depends-on ("defpackage" + "type-conversion" + "libobjcl" + "utilities")) + (:file "reader-syntax" :depends-on ("defpackage" + "method-invocation"))))) :serial t) |