|
#!/bin/sh |
|
exec guile -q -s "$0" "$@" |
|
!# |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(use-modules (system foreign) |
|
(system foreign-object) |
|
(rnrs bytevectors) |
|
(oop goops)) |
|
|
|
(define (libc-ptr name) |
|
(catch #t |
|
(lambda () |
|
(dynamic-pointer name |
|
(cond |
|
((string-contains %host-type "cygwin") |
|
|
|
|
|
|
|
|
|
(dynamic-link "cygwin1")) |
|
((string-contains %host-type "mingw") |
|
(dynamic-link "msvcrt")) |
|
(else |
|
(dynamic-link))))) |
|
(lambda (k . args) |
|
(print-exception (current-error-port) #f k args) |
|
(write "Skipping test.\n" (current-error-port)) |
|
(exit 0)))) |
|
|
|
(define malloc (pointer->procedure '* (libc-ptr "malloc") (list size_t))) |
|
(define memcpy (pointer->procedure void (libc-ptr "memcpy") (list '* '* size_t))) |
|
(define free (pointer->procedure void (libc-ptr "free") '(*))) |
|
|
|
(define (finalize-cstr cstr) |
|
(free (make-pointer (addr cstr)))) |
|
|
|
(define-foreign-object-type <cstr> make-cstr (addr len) |
|
#:finalizer finalize-cstr) |
|
|
|
(define (cstr->string cstr) |
|
(pointer->string (make-pointer (addr cstr)) (len cstr) "UTF-8")) |
|
|
|
(define* (string->cstr str #:optional (k make-cstr)) |
|
(let* ((bv (string->utf8 str)) |
|
(len (bytevector-length bv)) |
|
(mem (malloc len))) |
|
(when (null-pointer? mem) |
|
(error "Out of memory.")) |
|
(memcpy mem (bytevector->pointer bv) len) |
|
(k (pointer-address mem) len))) |
|
|
|
(define-method (write (cstr <cstr>) port) |
|
(format port "<<cstr> ~s>" (cstr->string cstr))) |
|
|
|
(define-method (display (cstr <cstr>) port) |
|
(display (cstr->string cstr) port)) |
|
|
|
(define-method (+ (a <cstr>) (b <cstr>)) |
|
(string->cstr (string-append (cstr->string a) (cstr->string b)))) |
|
|
|
(define-method (equal? (a <cstr>) (b <cstr>)) |
|
(equal? (cstr->string a) (cstr->string b))) |
|
|
|
(define failed? #f) |
|
(define-syntax test |
|
(syntax-rules () |
|
((_ exp res) |
|
(let ((expected res) |
|
(actual exp)) |
|
(if (not (equal? actual expected)) |
|
(begin |
|
(set! failed? #t) |
|
(format (current-error-port) |
|
"bad return from expression `~a': expected ~A; got ~A~%" |
|
'exp expected actual))))))) |
|
|
|
(test (string->cstr "Hello, world!") |
|
(+ (string->cstr "Hello, ") (string->cstr "world!"))) |
|
|
|
|
|
(test (string->cstr "Hello, world!") |
|
(string->cstr "Hello, world!" |
|
(lambda (addr len) |
|
(make <cstr> #:addr addr #:len len)))) |
|
|
|
|
|
(define-class <wrapped-cstr> (<cstr>) |
|
(wrapped-string #:init-keyword #:wrapped-string |
|
#:getter wrapped-string |
|
#:init-form (error "missing #:wrapped-string"))) |
|
|
|
(define (string->wrapped-cstr string) |
|
(string->cstr string (lambda (addr len) |
|
(make <wrapped-cstr> #:addr addr #:len len |
|
#:wrapped-string string)))) |
|
|
|
(let ((wrapped-cstr (string->wrapped-cstr "Hello, world!"))) |
|
|
|
(test "Hello, world!" (cstr->string wrapped-cstr)) |
|
|
|
(test "Hello, world!" (wrapped-string wrapped-cstr))) |
|
|
|
(gc) (gc) (gc) |
|
|
|
|
|
(usleep #e50e3) |
|
|
|
|
|
|
|
(exit (if failed? 1 0)) |
|
|
|
|
|
|
|
|
|
|