1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
|
;;; guile-bstruct -- Binary structures for Guile
;;; Copyright © 2024 David Thompson <dthompson2@worcester.edu>
;;;
;;; Licensed under the Apache License, Version 2.0 (the "License");
;;; you may not use this file except in compliance with the License.
;;; You may obtain a copy of the License at
;;;
;;; http://www.apache.org/licenses/LICENSE-2.0
;;;
;;; Unless required by applicable law or agreed to in writing, software
;;; distributed under the License is distributed on an "AS IS" BASIS,
;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;;; See the License for the specific language governing permissions and
;;; limitations under the License.
;;; Commentary:
;;
;; A bstruct is a data type that encapsulates a bytevector and an
;; offset which interprets that bytevector based on a given layout.
;; Bstructs are useful for manipulating C structs when using the FFI,
;; or interpreting/manipulating packed binary data such as GPU vertex
;; buffers, or for data types that benefit from unboxed math
;; optimizations such as vectors and matrices.
;;
;; Inspired by guile-opengl's define-packed-struct and based on
;; "Ftypes: Structured foreign types" by Andy Keep and R. Kent Dybvig.
;;
;; http://scheme2011.ucombinator.org/papers/Keep2011.pdf
;;
;; Features:
;;
;; - Efficiency through macro magic. Procedural macros generate tasty
;; code for the compiler to munch on and emit efficient bytecode.
;; Runtime checks are reduced to the bare minimum.
;;
;; - Raw bytevector access mode. Easily read/write structured data
;; from/to raw bytevectors without going through an intermediary
;; struct. Very useful for batch processing in situations when the
;; overhead of creating wrapper structs would hinder throughput.
;;
;; - Cache friendly. In performance sensitive code, many bstructs can
;; be stored in contiguous memory by pre-allocating a large bytevector
;; for the underlying storage. Individual bstruct handles simply
;; point at different offsets.
;;
;;; Code:
(define-module (bstruct)
#:use-module (ice-9 exceptions)
#:use-module (ice-9 match)
#:use-module (rnrs bytevectors)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-9)
#:use-module (srfi srfi-11)
#:use-module (system base target)
#:use-module ((system foreign) #:prefix ffi:)
#:use-module (system syntax)
#:export (bstruct?
bstruct-=?
bstruct-type
bstruct-length
bstruct->sexp
bstruct->pointer
pointer->bstruct
bstruct-wrap
bstruct-unwrap
bstruct-alloc
bstruct-sizeof
bstruct-alignof
bstruct-ref
bstruct-set!
bstruct-unpack
bstruct-pack!
bstruct-copy
bstruct-copy!
define-bstruct))
(define-record-type <scalar>
(make-scalar size align native? type)
scalar?
(size scalar-size)
(align scalar-align)
(native? scalar-native?) ; native endianness?
(type scalar-type))
(define-record-type <struct-field>
(make-struct-field name offset type)
struct-field?
(name struct-field-name)
(offset struct-field-offset)
(type struct-field-type))
(define-record-type <struct>
(make-struct size align fields)
%struct?
(size struct-size)
(align struct-align)
(fields struct-fields))
(define-record-type <union-field>
(make-union-field name type)
union-field?
(name union-field-name)
(type union-field-type))
(define-record-type <union>
(make-union size align fields)
union?
(size union-size)
(align union-align)
(fields union-fields))
(define-record-type <array>
(make-array size align length type)
array?
(size array-size)
(align array-align)
(length array-length)
(type array-type))
(define-record-type <pointer>
(make-pointer size align type)
pointer?
(size pointer-size)
(align pointer-align)
;; Mutable for setting up recursive types.
(type pointer-type set-pointer-type!))
;; TODO: bitfields
(define (struct-field-ref struct name)
(and=> (find (match-lambda
(($ <struct-field> name*)
(eq? name name*)))
(struct-fields struct))
struct-field-type))
(define (union-field-ref struct name)
(and=> (find (match-lambda
(($ <union-field> name*)
(eq? name name*)))
(union-fields struct))
union-field-type))
(define (bstruct-type? obj)
(or (scalar? obj)
(%struct? obj)
(union? obj)
(array? obj)
(pointer? obj)))
(define (sizeof type)
(match type
((or ($ <scalar> size)
($ <struct> size)
($ <union> size)
($ <array> size)
($ <pointer> size))
size)))
(define (alignof type)
(match type
((or ($ <scalar> _ align)
($ <struct> _ align)
($ <union> _ align)
($ <array> _ align)
($ <pointer> _ align))
align)))
(define-syntax-rule (assert expr who)
(unless expr
(raise-exception
(make-exception (make-assertion-failure)
(make-exception-with-origin who)
(make-exception-with-irritants '(expr))))))
(define-syntax-rule (check-size i n who)
(assert (and (>= i 0) (< i n)) who))
(define-inlinable (u64? x)
(and (exact-integer? x) (<= 0 x (ash 1 64))))
;; Bstructs form a shallow vtable hierarchy.
(define <bstruct-descriptor>
(make-vtable (string-append standard-vtable-fields "pwpw")
(lambda (desc port)
(format port "#<bstruct-descriptor ~a>"
(bstruct-descriptor-name desc)))))
(define (bstruct-descriptor-name descriptor)
(struct-ref descriptor vtable-offset-user))
(define (bstruct-descriptor-type descriptor)
(struct-ref descriptor (+ vtable-offset-user 1)))
(define (bstruct-descriptor-sizeof descriptor)
(sizeof (bstruct-descriptor-type descriptor)))
(define (print-bstruct bs port)
(format port "#<~a ~a>"
(bstruct-descriptor-name (struct-vtable bs))
(bstruct->sexp bs)))
(define* (make-bstruct-descriptor name type #:key (printer print-bstruct))
(assert (bstruct-type? type) 'make-bstruct-descriptor)
(make-struct/no-tail <bstruct-descriptor>
(make-struct-layout "pwpwpw")
printer name type))
(define (bstruct-descriptor? obj)
(and (struct? obj) (eq? (struct-vtable obj) <bstruct-descriptor>)))
(define (%bstruct? obj)
(and (struct? obj) (bstruct-descriptor? (struct-vtable obj))))
(define (bstruct-bytevector bs)
(assert (%bstruct? bs) 'bstruct-bytevector)
(struct-ref bs 0))
(define (bstruct-offset bs)
(assert (%bstruct? bs) 'bstruct-bytevector)
(struct-ref bs 1))
(define (bstruct-length bs)
(assert (%bstruct? bs) 'bstruct-bytevector)
(struct-ref bs 2))
(define (bstruct-type bs)
(assert (%bstruct? bs) 'bstruct-bytevector)
(bstruct-descriptor-type (struct-vtable bs)))
;; Bstructs are composed of a type descriptor, a bytevector that
;; provides storage, an offset pointing to the start of the struct
;; data within that bytevector, and the number of contiguous structs
;; within.
(define (%make-bstruct descriptor bv offset n)
(make-struct/no-tail descriptor bv offset n))
(define (make-bstruct descriptor bv offset n)
(assert (bstruct-descriptor? descriptor) 'make-bstruct)
(assert (bytevector? bv) 'make-bstruct)
(assert (exact-integer? offset) 'make-bstruct)
(assert (>= offset 0) 'make-bstruct)
(assert (<= (+ offset (* (bstruct-descriptor-sizeof descriptor) n))
(bytevector-length bv))
'make-bstruct)
(%make-bstruct descriptor bv offset n))
;; Platform ABI details
(define (non-target-endianness)
(if (eq? (target-endianness) (endianness little))
(endianness big)
(endianness little)))
(define (sizeof* type)
(match type
((or 'u8 's8) 1)
((or 'u16 's16) 2)
((or 'u32 's32 'f32) 4)
((or 'u64 's64 'f64) 8)
(_
(if (string=? %host-type (target-type))
(match type
('uint (ffi:sizeof ffi:unsigned-int))
('int (ffi:sizeof ffi:int))
('ulong (ffi:sizeof ffi:unsigned-long))
('long (ffi:sizeof ffi:long))
('ushort (ffi:sizeof ffi:unsigned-short))
('short (ffi:sizeof ffi:short))
('size_t (ffi:sizeof ffi:size_t))
('ssize_t (ffi:sizeof ffi:ssize_t))
('ptrdiff_t (ffi:sizeof ffi:ptrdiff_t))
('intptr_t (ffi:sizeof ffi:intptr_t))
('uintptr_t (ffi:sizeof ffi:uintptr_t)))
;; FIXME: Fill in with proper ABI details. We will lazily
;; evaluate this work when we hit a problem in a cross build.
(match type
('uint 4)
('int 4)
('ulong 8)
('long 8)
('ushort 2)
('short 2)
('size_t (target-word-size))
('ssize_t (target-word-size))
('ptrdiff_t (target-word-size))
('intptr_t (target-word-size))
('uintptr_t (target-word-size)))))))
(define (alignof* type)
(match type
((or 'u8 's8) 1)
((or 'u16 's16) 2)
((or 'u32 's32 'f32) 4)
((or 'u64 's64 'f64) 8)
(_
(if (string=? %host-type (target-type))
(match type
('uint (ffi:sizeof ffi:unsigned-int))
('int (ffi:sizeof ffi:int))
('ulong (ffi:sizeof ffi:unsigned-long))
('long (ffi:sizeof ffi:long))
('ushort (ffi:sizeof ffi:unsigned-short))
('short (ffi:sizeof ffi:short))
('size_t (ffi:sizeof ffi:size_t))
('ssize_t (ffi:sizeof ffi:ssize_t))
('ptrdiff_t (ffi:sizeof ffi:ptrdiff_t))
('intptr_t (ffi:sizeof ffi:intptr_t))
('uintptr_t (ffi:sizeof ffi:uintptr_t))
('* (ffi:sizeof '*)))
(match type
('uint 4)
('int 4)
('ulong 8)
('long 8)
('ushort 2)
('short 2)
('size_t (target-word-size))
('ssize_t (target-word-size))
('ptrdiff_t (target-word-size))
('intptr_t (target-word-size))
('uintptr_t (target-word-size))
('* (target-word-size)))))))
;; It is useful to see bstructs in s-expression form when working
;; at the REPL.
(define (bstruct->sexp bs)
(let ((bv (bstruct-bytevector bs)))
(let loop ((type (bstruct-type bs)) (offset (bstruct-offset bs)))
(match type
((? bstruct-descriptor? desc)
(loop (bstruct-descriptor-type desc) offset))
(($ <scalar> _ _ native? type)
(let ((e (if native? (target-endianness) (non-target-endianness))))
(match type
('u8 (bytevector-u8-ref bv offset))
('s8 (bytevector-s8-ref bv offset))
('u16 (bytevector-u16-ref bv offset e))
('s16 (bytevector-s16-ref bv offset e))
('u32 (bytevector-u32-ref bv offset e))
('s32 (bytevector-s32-ref bv offset e))
('u64 (bytevector-u64-ref bv offset e))
('s64 (bytevector-s64-ref bv offset e))
('f32 (bytevector-ieee-single-ref bv offset e))
('f64 (bytevector-ieee-double-ref bv offset e))
('uint (bytevector-uint-ref bv offset e (ffi:sizeof ffi:unsigned-int)))
('int (bytevector-sint-ref bv offset e (ffi:sizeof ffi:int)))
('ulong (bytevector-uint-ref bv offset e (ffi:sizeof ffi:unsigned-long)))
('long (bytevector-sint-ref bv offset e (ffi:sizeof ffi:long)))
('ushort (bytevector-uint-ref bv offset e (ffi:sizeof ffi:unsigned-short)))
('short (bytevector-sint-ref bv offset e (ffi:sizeof ffi:short)))
('size_t (bytevector-uint-ref bv offset e (ffi:sizeof ffi:size_t)))
('ssize_t (bytevector-sint-ref bv offset e (ffi:sizeof ffi:ssize_t)))
('ptrdiff_t (bytevector-sint-ref bv offset e (ffi:sizeof ffi:ptrdiff_t)))
('intptr_t (bytevector-sint-ref bv offset e (ffi:sizeof ffi:intptr_t)))
('uintptr_t (bytevector-uint-ref bv offset e (ffi:sizeof ffi:uintptr_t))))))
(($ <struct> _ _ fields)
`(struct ,@(map (match-lambda
(($ <struct-field> name offset* type)
(list name (loop type (+ offset offset*)))))
fields)))
(($ <union> _ _ fields)
`(union ,@(map (match-lambda
(($ <union-field> name type)
(list name (loop type offset))))
fields)))
(($ <array> _ _ length type)
(let ((size (sizeof type)))
`(array ,@(map (lambda (i)
(loop type (+ offset (* i size))))
(iota length)))))
(($ <pointer>)
`(* ,(bytevector-uint-ref bv offset (native-endianness)
(ffi:sizeof '*))))))))
;; Macro helpers that use metadata attached to bstruct syntax
;; transformers.
(define (bstruct-descriptor-identifier? id)
(and (identifier? id)
(let-values (((kind val) (syntax-local-binding id)))
(and (eq? kind 'macro)
(procedure-property val 'bstruct?)))))
(define (opaque-bstruct-descriptor-identifier? id)
(and (identifier? id)
(let-values (((kind val) (syntax-local-binding id)))
(and (eq? kind 'macro)
(procedure-property val 'bstruct?)
(procedure-property val 'bstruct-opaque?)))))
(define (non-opaque-bstruct-descriptor-identifier? id)
(not (opaque-bstruct-descriptor-identifier? id)))
(define (bstruct-descriptor-identifier-size id)
(let-values (((_ transformer) (syntax-local-binding id)))
(procedure-property transformer 'bstruct-size)))
(define (bstruct-descriptor-identifier-align id)
(let-values (((_ transformer) (syntax-local-binding id)))
(procedure-property transformer 'bstruct-align)))
;; A predicate that can answer the questions:
;; 1) Is this *any kind* of bstruct?
;; 2) Is this *a specific kind* of bstruct?
(define-syntax bstruct?
(lambda (stx)
(syntax-case stx ()
(x
(identifier? #'x)
#'(case-lambda
((obj) (%bstruct? obj))
((<type> obj)
(match obj
(($ <type>) #t)
(_ #f)))))
((_ obj)
#'(%bstruct? obj))
((_ <type> obj)
(bstruct-descriptor-identifier? #'<type>)
#'(match obj
(($ <type>) #t)
(_ #f))))))
(define-syntax bstruct-=?
(lambda (stx)
(syntax-case stx ()
((_ <type> a b)
(bstruct-descriptor-identifier? #'<type>)
#'(match a
(($ <type> bv-a offset-a)
(match b
(($ <type> bv-b offset-b)
(let ((n (bstruct-sizeof <type>)))
(let loop ((i 0))
(cond
((= i n) #t)
((= (bytevector-u8-ref bv-a (+ offset-a i))
(bytevector-u8-ref bv-b (+ offset-b i)))
(loop (+ i 1)))
(else #f))))))))))))
;; Create a pointer to the bstruct or some element within the bstruct.
(define-syntax bstruct->pointer
(lambda (stx)
(syntax-case stx ()
((_ (<type> i) bs)
(bstruct-descriptor-identifier? #'<type>)
#'(match bs
(($ <type> bv (? u64? offset))
(ffi:bytevector->pointer bv offset))))
((_ (<type> i) bs (elem ...))
(bstruct-descriptor-identifier? #'<type>)
#'(match bs
(($ <type> bv (? u64? offset) (? u64? n))
(check-size i n 'bstruct->pointer)
(let ((offset (+ offset (* (bstruct-sizeof <type>) i))))
(call-with-values (lambda () ((<type> offset elem ...) bv offset))
ffi:bytevector->pointer)))))
((_ (<type> i) bs elem)
#'(bstruct->pointer (<type> i) bs (elem)))
((_ <type> bs)
#'(bstruct->pointer (<type> 0) bs))
((_ <type> bs (elem ...))
#'(bstruct->pointer (<type> 0) bs (elem ...)))
((_ <type> bs elem)
#'(bstruct->pointer (<type> 0) bs (elem))))))
(define-syntax pointer->bstruct
(lambda (stx)
(syntax-case stx ()
((_ <type> ptr n)
(non-opaque-bstruct-descriptor-identifier? #'<type>)
#'(let ((size (* (bstruct-sizeof <type>) n)))
(make-bstruct <type> (ffi:pointer->bytevector ptr size) 0 n)))
((_ <type> ptr)
#'(pointer->bstruct <type> ptr 1)))))
;; Wrap a bytevector in a bstruct.
(define-syntax bstruct-wrap
(lambda (stx)
(syntax-case stx ()
((_ <type> bv offset n)
(non-opaque-bstruct-descriptor-identifier? #'<type>)
#'(make-bstruct <type> bv offset n))
((_ <type> bv offset)
#'(bstruct-wrap <type> bv offset 1)))))
;; Unwrap a bstruct to a bytevector + offset + count.
(define-syntax bstruct-unwrap
(lambda (stx)
(syntax-case stx ()
((_ <type> bs)
(bstruct-descriptor-identifier? #'<type>)
#`(match bs
(($ <type> bv offset n)
(values bv offset n)))))))
;; Size/align queries.
(define-syntax bstruct-sizeof
(lambda (stx)
(syntax-case stx ()
((_ <type>)
(non-opaque-bstruct-descriptor-identifier? #'<type>)
(bstruct-descriptor-identifier-size #'<type>)))))
(define-syntax bstruct-alignof
(lambda (stx)
(syntax-case stx ()
((_ <type>)
(non-opaque-bstruct-descriptor-identifier? #'<type>)
(bstruct-descriptor-identifier-align #'<type>)))))
;; 'bstruct-pack!' and 'bstruct-unpack' allow for directly
;; interpreting bytevector contents as structured data.
(define-syntax bstruct-pack!
(lambda (stx)
(define (flatten-elems stx)
(append-map (lambda (stx)
(syntax-case stx (->)
((-> root-elem sub-elems ...)
(identifier? #'root-elem)
(map (lambda (stx)
(syntax-case stx ()
(((sub-elem ...) val)
#'((root-elem sub-elem ...) val))))
(flatten-elems #'(sub-elems ...))))
(((elem ...) val)
#'(((elem ...) val)))
((elem val)
#'(((elem) val)))))
stx))
(syntax-case stx ()
((_ <type> bv i elem ...)
(non-opaque-bstruct-descriptor-identifier? #'<type>)
(with-syntax (((((elem ...) val) ...)
(flatten-elems #'(elem ...))))
#'(begin
((<type> setter elem ...) bv i val)
...))))))
(define-syntax bstruct-unpack
(lambda (stx)
(syntax-case stx ()
((_ <type> bv i elem ...)
(non-opaque-bstruct-descriptor-identifier? #'<type>)
#`(values
#,@(map (lambda (elem)
(syntax-case elem ()
((e ...)
#'((<type> getter e ...) bv i))
(e
#'((<type> getter e) bv i))))
#'(elem ...)))))))
;; Allocate a fresh bstruct that wraps a fresh bytevector big
;; enough to store the entire structure.
(define-syntax bstruct-alloc
(syntax-rules ()
((_ (<type> n) (i elem ...) ...)
(let* ((size (bstruct-sizeof <type>))
(len (* size n))
(bv (make-bytevector len 0)))
(bstruct-pack! <type> bv (* size i) elem ...)
...
(bstruct-wrap <type> bv 0)))
((_ <type> elem ...)
(bstruct-alloc (<type> 1) (0 elem ...)))))
;; Return the value of some elements.
(define-syntax bstruct-ref
(syntax-rules ()
((_ (<type> i) bs elem ...) ; array
(match bs
(($ <type> bv (? u64? offset) (? u64? n))
(assert (u64? i) 'bstruct-ref)
(check-size i n 'bstruct-ref)
(let ((offset (+ offset (* (bstruct-sizeof <type>) i))))
(bstruct-unpack <type> bv offset elem ...)))))
((_ <type> bs elem ...)
(bstruct-ref (<type> 0) bs elem ...))))
;; Set the value of some elements.
(define-syntax bstruct-set!
(syntax-rules ()
((_ (<type> i) bs elem ...) ; array
(match bs
(($ <type> bv (? u64? offset) (? u64? n))
(assert (u64? i) 'bstruct-set!)
(check-size i n 'bstruct-set!)
(let ((offset (+ offset (* (bstruct-sizeof <type>) i))))
(bstruct-pack! <type> bv offset elem ...)))))
((_ <type> bs elem ...)
(bstruct-set! (<type> 0) bs elem ...))))
;; Imperative/functional struct copying.
(define-syntax-rule (bstruct-copy! <type> src dst)
(match src
(($ <type> src-bv (? u64? src-offset) (? u64? src-n))
(match dst
(($ <type> dst-bv (? u64? dst-offset) (? u64? dst-n))
(check-size src-n (1+ dst-n) 'bstruct-copy!)
(bytevector-copy! src-bv src-offset
dst-bv dst-offset
(* (bstruct-sizeof <type>) src-n)))))))
(define-syntax-rule (bstruct-copy <type> src)
(match src
(($ <type> _ _ (? u64? n))
(let ((dst (bstruct-alloc (<type> n))))
(bstruct-copy! <type> src dst)
dst))))
(define (identifier-eq? stx sym)
(and (identifier? stx) (eq? (syntax->datum stx) sym)))
(define-syntax-rule (symbolic-match? id)
(identifier-eq? #'id 'id))
(define (identifier-memq? stx syms)
(and (identifier? stx) (memq (syntax->datum stx) syms)))
(define-syntax define-bstruct-descriptor
(lambda (stx)
(define (build-struct-field stx)
(syntax-case stx ()
((name offset type)
#`(make-struct-field 'name offset #,(build-type #'type)))))
(define (build-union-field stx)
(syntax-case stx ()
((name type)
#`(make-union-field 'name #,(build-type #'type)))))
(define (build-type desc)
(syntax-case desc ()
(id
(identifier? #'id)
desc)
((scalar size align native? type)
(symbolic-match? scalar)
#'(make-scalar size align native? 'type))
((struct size align (field ...))
(symbolic-match? struct)
(with-syntax (((field ...) (map build-struct-field #'(field ...))))
#'(make-struct size align (list field ...))))
((union size align (field ...))
(symbolic-match? union)
(with-syntax (((field ...) (map build-union-field #'(field ...))))
#'(make-union size align (list field ...))))
((array size align length desc)
(symbolic-match? array)
#`(make-array size align length #,(build-type #'desc)))
((pointer size align (recur _))
(and (symbolic-match? pointer) (symbolic-match? recur))
#'(make-pointer size align #f))
((pointer size align void)
(and (symbolic-match? pointer) (symbolic-match? void))
#'(make-pointer size align #f))
((pointer size align desc)
(symbolic-match? pointer)
#`(make-pointer size align #,(build-type #'desc)))))
(syntax-case stx ()
((_ id name layout . kwargs)
(with-syntax ((type (build-type #'layout)))
#`(define id (make-bstruct-descriptor 'name type . kwargs)))))))
(define (sizeof/syntax type)
(syntax-case type ()
((scalar size _ _ _)
(symbolic-match? scalar)
(syntax->datum #'size))
((struct size _ _)
(symbolic-match? struct)
(syntax->datum #'size))
((union size _ _)
(symbolic-match? union)
(syntax->datum #'size))
((array size _ _ _)
(symbolic-match? array)
(syntax->datum #'size))
((pointer size _ _)
(symbolic-match? pointer)
(syntax->datum #'size))
((opaque)
(symbolic-match? opaque)
0)
(_
(bstruct-descriptor-identifier? type)
(bstruct-descriptor-identifier-size type))))
(define (alignof/syntax type)
(syntax-case type ()
((scalar _ align _ _)
(symbolic-match? scalar)
(syntax->datum #'align))
((struct _ align _)
(symbolic-match? struct)
(syntax->datum #'align))
((union _ align _)
(symbolic-match? union)
(syntax->datum #'align))
((array _ align _ _)
(symbolic-match? array)
(syntax->datum #'align))
((pointer _ align _)
(symbolic-match? pointer)
(syntax->datum #'align))
((opaque)
(symbolic-match? opaque)
0)
(_
(bstruct-descriptor-identifier? type)
(bstruct-descriptor-identifier-align type))))
(define (expand-accessor proc stx id op type)
(syntax-case stx ()
(() (proc id 0)) ; self reference
((elem ...)
(let loop ((stx #'(elem ...)) (type type) (offset 0))
(syntax-case type ()
(id
(bstruct-descriptor-identifier? #'id)
;; Recursively invoke macro for referenced type to produce
;; the accessor.
(syntax-case stx ()
((elem ...)
(proc #`(id #,(datum->syntax #f op) elem ...)
offset))))
((scalar _ _ _ _)
(symbolic-match? scalar)
(syntax-case stx ()
(() (proc type offset))))
((struct _ _ (field ...))
(symbolic-match? struct)
(syntax-case stx ()
((e elem ...)
(identifier? #'e)
(let ((name (syntax->datum #'e)))
(let field-lp ((fields #'(field ...)))
(syntax-case fields ()
(() (error "no such struct field" name))
(((name* offset* type*) . rest)
(if (eq? name (syntax->datum #'name*))
(loop #'(elem ...) #'type* #`(+ #,offset offset*))
(field-lp #'rest)))))))))
((union _ _ (field ...))
(symbolic-match? union)
(syntax-case stx ()
((e elem ...)
(identifier? #'e)
(let ((name (syntax->datum #'e)))
(let field-lp ((fields #'(field ...)))
(syntax-case fields ()
(() (error "no such union field" name))
(((name* type) . rest)
(if (eq? name (syntax->datum #'name*))
(loop #'(elem ...) #'type offset)
(field-lp #'rest)))))))))
((array _ _ length type)
(symbolic-match? array)
(syntax-case stx ()
((i elem ...)
(loop #'(elem ...) #'type
#`(+ #,offset
(* (let ()
;; if 'i' is a constant then
;; these checks will be elided
;; by the compiler.
(assert (u64? i) 'bstruct-accessor)
(assert (< -1 i length) 'bstruct-accessor)
i)
#,(sizeof/syntax #'type)))))))
;; Void/opaque pointers cannot be dereferenced.
((pointer _ _ void)
(and (symbolic-match? pointer)
(symbolic-match? void))
(syntax-case stx ()
(() (proc type offset))))
((pointer _ _ opaque)
(and (symbolic-match? pointer)
(opaque-bstruct-descriptor-identifier? #'opaque))
(syntax-case stx ()
(() (proc type offset))))
((pointer _ _ type*)
(symbolic-match? pointer)
(let ((type* (syntax-case #'type* ()
((recur type*)
(symbolic-match? recur)
#'type*)
(_ #'type*))))
(define (expand-pointer-accessor stx)
(syntax-case stx ()
(() (proc type offset))
;; Pointer dereference.
(((* index) elem ...)
(symbolic-match? *)
(with-syntax ((e (datum->syntax #f (target-endianness)))
(ptr-size (target-word-size))
(size (sizeof/syntax type*))
(body (syntax-case type* ()
(id
(identifier? #'id)
(proc #`(id #,(datum->syntax #f op)
elem ...)
0))
(_ (loop #'(elem ...) type* 0)))))
;; 'bv' and 'i' are the lexical variables
;; containing the bytevector and offset for
;; getting/setting. Every time we encounter a
;; pointer dereference we need to shadow the old
;; variables with new ones.
#`(let* ((base (bytevector-sint-ref bv (+ i #,offset)
'e ptr-size))
(address (+ base (* size index)))
(ptr (ffi:make-pointer address))
(bv (ffi:pointer->bytevector ptr size))
(i 0))
body)))
;; Pointer dereference with implied index of 0.
((* elem ...)
(symbolic-match? *)
(expand-pointer-accessor #'((* 0) elem ...)))))
(expand-pointer-accessor stx))))))))
(define (expand-offset elems id type)
#`(lambda (bv i)
#,(expand-accessor
(lambda (type offset)
(with-syntax ((offset offset))
(syntax-case type ()
(id*
(bstruct-descriptor-identifier? #'id*)
#'(values bv offset))
((pointer _ _ _)
(symbolic-match? pointer)
#'(values bv offset))
((scalar size align native? type)
(symbolic-match? scalar)
#'(values bv offset))
(sub-offset
#'(sub-offset bv (+ i offset))))))
elems id 'offset type)))
(define (expand-getter elems id type)
;; Primitive getter/setter helpers
(define (ref/endianness proc endianness)
#`(lambda (bv i)
(#,proc bv i #,endianness)))
(define (uint-ref size endianness)
#`(lambda (bv i)
(bytevector-uint-ref bv i '#,(datum->syntax #f endianness) #,size)))
(define (sint-ref size endianness)
#`(lambda (bv i)
(bytevector-sint-ref bv i '#,(datum->syntax #f endianness) #,size)))
;; Scalar types are divided into two categories: machine
;; indepenent and machine dependent. The machine independent
;; types (i32, f32, etc.) have a known size and alignment on all
;; platforms. The machine dependent types have a size and
;; alignment that can vary depending on the ABI of the system that
;; is compiling the code.
(define (abi-ref type e) ; e for endianness
(match type
('uint (uint-ref (sizeof* 'uint) e))
('int (sint-ref (sizeof* 'int) e))
('ulong (uint-ref (sizeof* 'ulong) e))
('long (sint-ref (sizeof* 'long) e))
('ushort (uint-ref (sizeof* 'ushort) e))
('short (sint-ref (sizeof* 'short) e))
('size_t (uint-ref (sizeof* 'size_t) e))
('ssize_t (sint-ref (sizeof* 'ssize_t) e))
('ptrdiff_t (sint-ref (sizeof* 'ptrdiff_t) e))
('intptr_t (sint-ref (sizeof* 'intptr_t) e))
('uintptr_t (uint-ref (sizeof* 'uintptr_t) e))))
(define (primitive-getter size native? type)
(if native?
(match type
('u8 #'bytevector-u8-ref)
('s8 #'bytevector-s8-ref)
('u16 #'bytevector-u16-native-ref)
('s16 #'bytevector-s16-native-ref)
('u32 #'bytevector-u32-native-ref)
('s32 #'bytevector-s32-native-ref)
('u64 #'bytevector-u64-native-ref)
('s64 #'bytevector-s64-native-ref)
('f32 #'bytevector-ieee-single-native-ref)
('f64 #'bytevector-ieee-double-native-ref)
(_ (abi-ref type (target-endianness))))
(let ((e (non-target-endianness)))
(match type
('u8 #'bytevector-u8-ref)
('s8 #'bytevector-s8-ref)
('u16 (ref/endianness #'bytevector-u16-ref e))
('s16 (ref/endianness #'bytevector-s16-ref e))
('u32 (ref/endianness #'bytevector-u32-ref e))
('s32 (ref/endianness #'bytevector-s32-ref e))
('u64 (ref/endianness #'bytevector-u64-ref e))
('s64 (ref/endianness #'bytevector-s64-ref e))
('f32 (ref/endianness #'bytevector-ieee-single-ref e))
('f64 (ref/endianness #'bytevector-ieee-double-ref e))
(_ (abi-ref type e))))))
#`(lambda (bv i)
#,(expand-accessor
(lambda (type offset)
(with-syntax ((offset offset))
(syntax-case type ()
(id*
(bstruct-descriptor-identifier? #'id*)
#'(make-bstruct id* bv (+ i offset)))
((pointer _ _ _)
(symbolic-match? pointer)
#`(ffi:make-pointer
(bytevector-sint-ref bv (+ i offset)
'#,(datum->syntax #f (target-endianness))
#,(target-word-size))))
((scalar size align native? type)
(symbolic-match? scalar)
(with-syntax ((getter (primitive-getter (syntax->datum #'size)
(syntax->datum #'native?)
(syntax->datum #'type))))
#'(getter bv (+ i offset))))
(sub-get
#'(sub-get bv (+ i offset))))))
elems id 'getter type)))
(define (expand-setter elems id type size)
(define (set!/endianness proc endianness)
#`(lambda (bv i x)
(#,proc bv i x #,endianness)))
(define (uint-set! size endianness)
#`(lambda (bv i x)
(bytevector-uint-set! bv i x '#,(datum->syntax #f endianness) #,size)))
(define (sint-set! size endianness)
#`(lambda (bv i x)
(bytevector-sint-set! bv i x '#,(datum->syntax #f endianness) #,size)))
(define (abi-set! type e)
(match type
('uint (uint-set! (sizeof* 'uint) e))
('int (sint-set! (sizeof* 'int) e))
('ulong (uint-set! (sizeof* 'ulong) e))
('long (sint-set! (sizeof* 'long) e))
('ushort (uint-set! (sizeof* 'ushort) e))
('short (sint-set! (sizeof* 'short) e))
('size_t (uint-set! (sizeof* 'size_t) e))
('ssize_t (sint-set! (sizeof* 'ssize_t) e))
('ptrdiff_t (sint-set! (sizeof* 'ptrdiff_t) e))
('intptr_t (sint-set! (sizeof* 'intptr_t) e))
('uintptr_t (uint-set! (sizeof* 'uintptr_t) e))))
(define (primitive-setter size native? type)
(if native?
(match type
('u8 #'bytevector-u8-set!)
('s8 #'bytevector-s8-set!)
('u16 #'bytevector-u16-native-set!)
('s16 #'bytevector-s16-native-set!)
('u32 #'bytevector-u32-native-set!)
('s32 #'bytevector-s32-native-set!)
('u64 #'bytevector-u64-native-set!)
('s64 #'bytevector-s64-native-set!)
('f32 #'bytevector-ieee-single-native-set!)
('f64 #'bytevector-ieee-double-native-set!)
(_ (abi-set! type (target-endianness))))
(let ((e (non-target-endianness)))
(match type
('u8 #'bytevector-u8-set!)
('s8 #'bytevector-s8-set!)
('u16 (set!/endianness #'bytevector-u16-set! e))
('s16 (set!/endianness #'bytevector-s16-set! e))
('u32 (set!/endianness #'bytevector-u32-set! e))
('s32 (set!/endianness #'bytevector-s32-set! e))
('u64 (set!/endianness #'bytevector-u64-set! e))
('s64 (set!/endianness #'bytevector-s64-set! e))
('f32 (set!/endianness #'bytevector-ieee-single-set! e))
('f64 (set!/endianness #'bytevector-ieee-double-set! e))
(_ (abi-set! type e))))))
#`(lambda (bv i x)
#,(expand-accessor
(lambda (type offset)
(with-syntax ((offset offset))
(syntax-case type ()
(id
(bstruct-descriptor-identifier? #'id)
#`(match x
(($ id src j)
(bytevector-copy! src j bv (+ i offset)
#,(bstruct-descriptor-identifier-size type)))))
((pointer _ _ _)
(symbolic-match? pointer)
#`(bytevector-sint-set! bv (+ i offset)
(ffi:pointer-address x)
'#,(datum->syntax #f (target-endianness))
#,(target-word-size)))
((scalar size align native? type)
(symbolic-match? scalar)
(with-syntax ((setter (primitive-setter (syntax->datum #'size)
(syntax->datum #'native?)
(syntax->datum #'type))))
#'(setter bv (+ i offset) x)))
(sub-set!
#'(sub-set! bv (+ i offset) x)))))
elems id 'setter type)))
(define-syntax define-bstruct-macro
(lambda (stx)
(syntax-case stx ()
((_ id type-id (opaque))
(symbolic-match? opaque)
#'(define-syntax id
(lambda (stx)
#((bstruct? . #t)
(bstruct-opaque? . #t))
(syntax-case stx ()
;; Identifier syntax to provide the illusion that
;; this macro is just a record type descriptor.
(self
(identifier? #'self)
#'type-id)))))
((_ id type-id size align desc . kwargs)
#'(define-syntax id
(lambda (stx)
#((bstruct? . #t)
(bstruct-opaque? . #f)
(bstruct-size . size)
(bstruct-align . align))
(let ((type #'desc))
(syntax-case stx ()
(self
(identifier? #'self)
#'type-id)
;; Private interface for code generation.
((_ offset . elems)
(symbolic-match? offset)
(expand-offset #'elems #'id type))
((_ getter . elems)
(symbolic-match? getter)
(expand-getter #'elems #'id type))
((_ setter . elems)
(symbolic-match? setter)
(expand-setter #'elems #'id type size))))))))))
(define-syntax define-bstruct*
(lambda (stx)
;; Types can be recursive by referencing a type within the same
;; type group, possibly itself. So, we maintain a list of pointer
;; type accessor forms that need to be patched with a cyclical
;; reference *after* all the types are defined.
(define recursive-pointers '())
(define primitives
'(u8 s8 u16 s16 u32 s32 u64 s64 f32 f64
int uint long ulong short ushort
size_t ssize_t ptrdiff_t intptr_t uintptr_t))
(define (target-endianness? e)
(eq? e (target-endianness)))
(define (resolve-endianness e)
(match e
('native (target-endianness))
('non-native (non-target-endianness))
(_ e)))
(define (compute-layout expr accessor group-ids packed? endianness)
(syntax-case expr ()
;; Modifiers
((packed expr)
(symbolic-match? packed)
(compute-layout #'expr accessor group-ids #t endianness))
((unpacked expr)
(symbolic-match? unpacked)
(compute-layout #'expr accessor group-ids #f endianness))
((endian e expr)
(and (symbolic-match? endian)
(identifier-memq? #'e '(native non-native big little)))
(compute-layout #'expr accessor group-ids packed?
(resolve-endianness (syntax->datum #'e))))
;; Previously defined types
(type-id
(bstruct-descriptor-identifier? #'type-id)
#'type-id)
(primitive
(identifier-memq? #'primitive primitives)
(let ((type (syntax->datum #'primitive)))
#`(scalar #,(sizeof* type)
#,(alignof* type)
#,(target-endianness? endianness)
primitive)))
((struct field ...)
(and (symbolic-match? struct)
(not (null? #'(field ...))))
(let loop ((stx #'(field ...)) (fields '()) (offset 0) (align 0))
(syntax-case stx ()
(()
;; Round up to a multiple of align to get final
;; size.
(let ((size (* (ceiling (/ offset align)) align)))
#`(struct #,size #,align #,(reverse fields))))
;; An underscore indicates a padding pseudo-field. It is
;; not included in the struct field list and just adds to
;; the offset.
(((underscore expr) . rest)
(identifier-eq? #'underscore '_)
(let ((type (compute-layout #'expr #f group-ids packed? endianness)))
(loop #'rest fields (+ offset (sizeof/syntax type)) align)))
(((name expr) . rest)
(identifier? #'name)
(let* ((type (compute-layout #'expr
#`(struct-field-ref #,accessor 'name)
group-ids packed? endianness))
(field-align (alignof/syntax type))
(padding (if packed?
0
(modulo (- field-align
(modulo offset field-align))
field-align)))
(offset (+ offset padding))
(align (max align field-align)))
(loop #'rest
(cons #`(name #,offset #,type) fields)
(+ offset (sizeof/syntax type))
align))))))
((union field ...)
(and (symbolic-match? union)
(not (null? #'(field ...))))
(let loop ((stx #'(field ...)) (fields '()) (size 0) (align 0))
(syntax-case stx ()
(()
#`(union #,size #,align #,(reverse fields)))
(((underscore expr) . rest-exprs)
(identifier-eq? #'underscore '_)
(let ((type (compute-layout #'expr #f group-ids packed? endianness)))
(loop #'rest-exprs fields (max size (sizeof/syntax type)) align)))
(((name expr) . rest)
(identifier? #'name)
(let ((type (compute-layout #'expr
#`(struct-field-ref #,accessor 'name)
group-ids packed? endianness)))
(loop #'rest
(cons #`(name #,type) fields)
(max size (sizeof/syntax type))
(max align (alignof/syntax type))))))))
((array length expr)
(and (symbolic-match? array)
(exact-integer? (syntax->datum #'length))
(positive? (syntax->datum #'length)))
(let ((length (syntax->datum #'length))
(type (compute-layout #'expr #`(array-type #,accessor)
group-ids packed? endianness)))
#`(array #,(* (sizeof/syntax type) length)
#,(alignof/syntax type)
#,length #,type)))
((ptr expr)
(identifier-eq? #'ptr '*)
;; TODO: pointer size depends on the target.
(let ((size (ffi:sizeof '*))
(align (ffi:alignof '*)))
(let loop ((expr #'expr))
(syntax-case expr ()
(void
(symbolic-match? void)
#`(pointer #,size #,align void))
;; Primitive pointer
(prim
(identifier-memq? #'prim primitives)
(let ((type (compute-layout #'prim #f group-ids packed? endianness)))
#`(pointer #,size #,align #,type)))
;; Pointer to a pointer
((ptr expr)
(identifier-eq? #'ptr '*)
#`(pointer #,size #,align #,(loop #'expr)))
;; Recursive reference to a type within this type group.
(type-id
(any (lambda (id) (bound-identifier=? #'type-id id)) group-ids)
(begin
(set! recursive-pointers
(cons (list accessor #'type-id) recursive-pointers))
#`(pointer #,size #,align (recur type-id))))
;; Reference to a type outside of this type group.
(type-id
(bstruct-descriptor-identifier? #'type-id)
#`(pointer #,size #,align type-id))))))))
(define (compute-layout* expr id group-ids)
(compute-layout expr #`(bstruct-descriptor-type #,id)
group-ids #f (target-endianness)))
(define (type-descriptor-id id)
(datum->syntax id (symbol-append (string->symbol "% bstruct-descriptor-")
(syntax->datum id))))
(syntax-case stx ()
((_ (id expr . kwargs) ...)
(with-syntax (((type ...)
(map (lambda (id* expr)
(compute-layout* expr id* #'(id ...)))
#'(id ...)
#'(expr ...)))
((type-id ...) (map type-descriptor-id #'(id ...)))
(((recur-accessor recur-id) ...) recursive-pointers))
(with-syntax ((((size align) ...)
(map (lambda (type)
(list (sizeof/syntax type) (alignof/syntax type)))
#'(type ...))))
#'(begin
;; First, define the type descriptors.
(define-bstruct-descriptor type-id id type . kwargs) ...
;; Then tie the knots for recursive pointer types.
(set-pointer-type! recur-accessor recur-id) ...
;; Finally, define the wrapper macros.
(define-bstruct-macro id type-id size align type . kwargs) ...)))))))
(define-syntax define-bstruct
(lambda (stx)
(define (distinct? lst)
(let lp ((remaining lst) (seen '()))
(match remaining
(() #t)
((x . rest)
(if (memq x seen)
#f
(lp rest (cons x seen)))))))
(syntax-case stx ()
;; Type group definition. Types defined in the same group can
;; contain recursive pointer references to each other.
((_ (id . args) ...)
(and (not (null? #'(id ...)))
(every identifier? #'(id ...))
;; Duplicate ids not allowed in a type group.
(distinct? (syntax->datum #'(id ...))))
;; Handle the special case of opaque types having empty
;; specifications.
(with-syntax ((((expr . kwargs) ...)
(map (lambda (stx)
(syntax-case stx ()
(() #'(opaque))
(_ stx)))
#'(args ...))))
#'(define-bstruct* (id expr . kwargs) ...)))
;; A single type definition is a type group of one.
((_ id . args)
(identifier? #'id)
#'(define-bstruct (id . args))))))
|