You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/restructure/array.rkt

47 lines
1.7 KiB
Racket

7 years ago
#lang restructure/racket
7 years ago
(require "number.rkt" "utils.rkt" "stream.rkt")
(provide (all-defined-out))
7 years ago
#|
approximates
https://github.com/mbutterick/restructure/blob/master/src/Array.coffee
|#
7 years ago
(define-subclass Streamcoder (Array type [_length #f] [lengthType 'count])
7 years ago
(define/augment (decode stream [parent #f])
7 years ago
(let ([len (cond
;; explicit length
[_length (resolveLength _length stream parent)]
[else ;; implicit length: length of stream divided by size of item
(define num (send stream length))
(define denom (send type size))
(unless (andmap (λ (x) (and x (number? x))) (list num denom))
(raise-argument-error 'Array:decode "valid length and size" (list num denom)))
(floor (/ (send stream length) (send type size)))])])
(caseq lengthType
7 years ago
[(count) (for/list ([i (in-range len)])
(send type decode stream this))])))
7 years ago
(define/override (size array)
7 years ago
(unless (list? array) (raise-argument-error 'Array:size "list" array))
(* (send type size) (length array)))
7 years ago
(define/augment (encode stream array [parent #f])
7 years ago
(unless (list? array) (raise-argument-error 'Array:encode "list" array))
7 years ago
(for ([item (in-list array)])
7 years ago
(send type encode stream item))))
7 years ago
(test-module
7 years ago
(define stream (+DecodeStream #"ABCDEFG"))
7 years ago
7 years ago
(define A (+Array uint16be 3))
7 years ago
(check-equal? (send A decode stream) '(16706 17220 17734))
7 years ago
(define os (+EncodeStream))
7 years ago
(send A encode os '(16706 17220 17734))
(check-equal? (send os dump) #"ABCDEF")
7 years ago
(check-equal? (send (+Array uint16be) size '(1 2 3)) 6)
(check-equal? (send (+Array doublebe) size '(1 2 3 4 5)) 40))