r3593: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 9 Dec 2002 16:30:20 +0000 (16:30 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 9 Dec 2002 16:30:20 +0000 (16:30 +0000)
debian/changelog
doc/html.tar.gz
doc/uffi.pdf
examples/compress.lisp
examples/union.lisp
tests/compress.lisp
tests/union.lisp

index b8f46d39deed7619add0e37e57a11924ded12fbe..1df933a6cc616b2f34b22f420070ac85c814fd73 100644 (file)
@@ -1,3 +1,9 @@
+cl-uffi (1.2.1-1) unstable; urgency=low
+
+  * Add uncompression test
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Mon,  9 Dec 2002 09:05:52 -0700
+
 cl-uffi (1.2.0-1) unstable; urgency=low
 
   * Fixes in allocate-foreign-object and deref-array for allegro
index 31797e6658310eb228a8c9753b70c643bb5fe771..e45c5143424da11add8c90d9fe449345a97f96b4 100644 (file)
Binary files a/doc/html.tar.gz and b/doc/html.tar.gz differ
index 7caca46df988c17bfc51f5be873efadef3fcb2c9..2c121f7f474b8cc026172e8b6a56c1dcfeb2b3b1 100644 (file)
Binary files a/doc/uffi.pdf and b/doc/uffi.pdf differ
index e5140aea57b6d4b60988d5dd2cb670b7175142cc..1229be56e75ac1962099665ffb398786821cce6e 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: compress.lisp,v 1.2 2002/12/03 06:58:39 kevin Exp $
+;;;; $Id: compress.lisp,v 1.3 2002/12/09 16:30:20 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
            (uffi:free-foreign-object destlen)
            (uffi:free-foreign-object dest)))))))
 
+(uffi:def-function ("uncompress" c-uncompress)
+    ((dest (* :unsigned-char))
+     (destlen (* :long))
+     (source :cstring)
+     (source-len :long))
+  :returning :int
+  :module "zlib")
+
+(defun uncompress (source)
+  (let* ((sourcelen (length source))
+        (destsize 200000)  ;adjust as needed
+        (dest (uffi:allocate-foreign-string destsize :unsigned t))
+        (destlen (uffi:allocate-foreign-object :long)))
+    (setf (uffi:deref-pointer destlen :long) destsize)
+    (uffi:with-cstring (source-native source)
+      (let ((result (c-uncompress dest destlen source-native sourcelen))
+           (newdestlen (uffi:deref-pointer destlen :long)))
+       (unwind-protect
+            (if (zerop result)
+                (uffi:convert-from-foreign-string 
+                 dest
+                 :length newdestlen
+                 :null-terminated-p nil)
+                (error "zlib error, code ~D" result))
+         (progn
+           (uffi:free-foreign-object destlen)
+           (uffi:free-foreign-object dest)))))))
 
 #+examples-uffi
 (progn
     (print-results "test")
     (print-results "test2")))
 
+#+test-uffi
+(progn
+  (flet ((test-compress (str)
+          (multiple-value-bind (compressed len) (compress str)
+            (multiple-value-bind (uncompressed len2) (uncompress compressed)
+              (util.test:test str uncompressed :test #'string=
+                              :fail-info "Error uncompressing a compressed string")))))
+    (test-compress "")
+    (test-compress "test")
+    (test-compress "test2")))
+
 ;; Results of the above on my system:
 ;; (compress "") => 789c300001,8
 ;; (compress "test") => 789c2b492d2e1045d1c1,12
index 5b22be2cdfa0e03615363c26327ab69bd874f5a6..2e186d84e8f0119050b74ca9ed75157981921b2b 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: union.lisp,v 1.2 2002/12/03 06:58:39 kevin Exp $
+;;;; $Id: union.lisp,v 1.3 2002/12/09 16:30:20 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -29,7 +29,7 @@
   (let ((u (uffi:allocate-foreign-object 'tunion1)))
     (setf (uffi:get-slot-value u 'tunion1 'uint)
       ;; little endian
-      #-(or sparc sparc-v9 powerpc ppc little-endian)
+      #-(or sparc sparc-v9 powerpc ppc big-endian)
       (+ (* 1 (char-code #\A))
         (* 256 (char-code #\B))
         (* 65536 (char-code #\C))
index e5140aea57b6d4b60988d5dd2cb670b7175142cc..1229be56e75ac1962099665ffb398786821cce6e 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: compress.lisp,v 1.2 2002/12/03 06:58:39 kevin Exp $
+;;;; $Id: compress.lisp,v 1.3 2002/12/09 16:30:20 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
            (uffi:free-foreign-object destlen)
            (uffi:free-foreign-object dest)))))))
 
+(uffi:def-function ("uncompress" c-uncompress)
+    ((dest (* :unsigned-char))
+     (destlen (* :long))
+     (source :cstring)
+     (source-len :long))
+  :returning :int
+  :module "zlib")
+
+(defun uncompress (source)
+  (let* ((sourcelen (length source))
+        (destsize 200000)  ;adjust as needed
+        (dest (uffi:allocate-foreign-string destsize :unsigned t))
+        (destlen (uffi:allocate-foreign-object :long)))
+    (setf (uffi:deref-pointer destlen :long) destsize)
+    (uffi:with-cstring (source-native source)
+      (let ((result (c-uncompress dest destlen source-native sourcelen))
+           (newdestlen (uffi:deref-pointer destlen :long)))
+       (unwind-protect
+            (if (zerop result)
+                (uffi:convert-from-foreign-string 
+                 dest
+                 :length newdestlen
+                 :null-terminated-p nil)
+                (error "zlib error, code ~D" result))
+         (progn
+           (uffi:free-foreign-object destlen)
+           (uffi:free-foreign-object dest)))))))
 
 #+examples-uffi
 (progn
     (print-results "test")
     (print-results "test2")))
 
+#+test-uffi
+(progn
+  (flet ((test-compress (str)
+          (multiple-value-bind (compressed len) (compress str)
+            (multiple-value-bind (uncompressed len2) (uncompress compressed)
+              (util.test:test str uncompressed :test #'string=
+                              :fail-info "Error uncompressing a compressed string")))))
+    (test-compress "")
+    (test-compress "test")
+    (test-compress "test2")))
+
 ;; Results of the above on my system:
 ;; (compress "") => 789c300001,8
 ;; (compress "test") => 789c2b492d2e1045d1c1,12
index 5b22be2cdfa0e03615363c26327ab69bd874f5a6..2e186d84e8f0119050b74ca9ed75157981921b2b 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: union.lisp,v 1.2 2002/12/03 06:58:39 kevin Exp $
+;;;; $Id: union.lisp,v 1.3 2002/12/09 16:30:20 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -29,7 +29,7 @@
   (let ((u (uffi:allocate-foreign-object 'tunion1)))
     (setf (uffi:get-slot-value u 'tunion1 'uint)
       ;; little endian
-      #-(or sparc sparc-v9 powerpc ppc little-endian)
+      #-(or sparc sparc-v9 powerpc ppc big-endian)
       (+ (* 1 (char-code #\A))
         (* 256 (char-code #\B))
         (* 65536 (char-code #\C))