私はこれまでこれを行うには良いライブラリは見つかりませんでしたが、動作するものを一緒にハッキングしました。私は入力操作としてread-byte
とread-string
しか利用できないことに注意してください。
;;
;; These are some unfun C routines to convert 4 int-promoted bytes to a float
;; by manually assembling the float using bitwise operators
;;
;; Caveat! These will only work on platforms in which floats are 32-bit Big
;; Endian IEEE754-2008 numbers and doubles are 64-bit Big Endian IEEE754-2008
;; numbers! Also, stdint.h.
;;
(define (readFloat)
(let ([c-read-float
(foreign-lambda* float
((int i1)
(int i2)
(int i3)
(int i4))
"uint8_t b1 = (uint8_t) i1;
uint8_t b2 = (uint8_t) i2;
uint8_t b3 = (uint8_t) i3;
uint8_t b4 = (uint8_t) i4;
uint32_t i = 0;
i = b1;
i = (i << 8) | b2;
i = (i << 8) | b3;
i = (i << 8) | b4;
float f = *(float*)&i;
C_return(f);")])
(let* ([i1 (read-byte)]
[i2 (read-byte)]
[i3 (read-byte)]
[i4 (read-byte)])
(c-read-float i1 i2 i3 i4))))
[bitstring egg](http://wiki.call-cc.org/eggref/4/bitstring)が利用可能になりました。これにより、これはずっと簡単になりました。 – sjamaan