annotate lisp/emacs-lisp/bindat.el @ 54873:bbf96a27b6c5

(checkdoc-output-mode-map, checkdoc-find-error-mouse, checkdoc-find-error): Use posn-set-point to merge the mouse and non-mouse case.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 14 Apr 2004 17:48:47 +0000
parents 695cf19ef79e
children 3fc0c472c166 375f2633d815
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1 ;;; bindat.el --- binary data structure packing and unpacking.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3 ;; Copyright (C) 2002 Free Software Foundation, Inc.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5 ;; Author: Kim F. Storm <storm@cua.dk>
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6 ;; Assignment name: struct.el
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
7 ;; Keywords: comm data processes
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
8
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
10
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
14 ;; any later version.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
15
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
19 ;; GNU General Public License for more details.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
20
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
24 ;; Boston, MA 02111-1307, USA.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
25
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
26 ;;; Commentary:
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
27
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
28 ;; Packing and unpacking of (binary) data structures.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
29 ;;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
30 ;; The data formats used in binary files and network protocols are
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
31 ;; often structed data which can be described by a C-style structure
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
32 ;; such as the one shown below. Using the bindat package, decoding
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
33 ;; and encoding binary data formats like these is made simple using a
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
34 ;; structure specification which closely resembles the C style
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
35 ;; structure declarations.
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
36 ;;
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
37 ;; Encoded (binary) data is stored in a unibyte string or vector,
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
38 ;; while the decoded data is stored in an alist with (FIELD . VALUE)
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
39 ;; pairs.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
40
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
41 ;; Example:
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
42
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
43 ;; Consider the following C structures:
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
44 ;;
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
45 ;; struct header {
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
46 ;; unsigned long dest_ip;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
47 ;; unsigned long src_ip;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
48 ;; unsigned short dest_port;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
49 ;; unsigned short src_port;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
50 ;; };
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
51 ;;
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
52 ;; struct data {
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
53 ;; unsigned char type;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
54 ;; unsigned char opcode;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
55 ;; unsigned long length; /* In little endian order */
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
56 ;; unsigned char id[8]; /* nul-terminated string */
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
57 ;; unsigned char data[/* (length + 3) & ~3 */];
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
58 ;; };
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
59 ;;
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
60 ;; struct packet {
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
61 ;; struct header header;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
62 ;; unsigned char items;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
63 ;; unsigned char filler[3];
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
64 ;; struct data item[/* items */];
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
65 ;; };
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
66 ;;
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
67 ;; The corresponding Lisp bindat specification looks like this:
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
68 ;;
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
69 ;; (setq header-spec
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
70 ;; '((dest-ip ip)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
71 ;; (src-ip ip)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
72 ;; (dest-port u16)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
73 ;; (src-port u16)))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
74 ;;
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
75 ;; (setq data-spec
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
76 ;; '((type u8)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
77 ;; (opcode u8)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
78 ;; (length u16r) ;; little endian order
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
79 ;; (id strz 8)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
80 ;; (data vec (length))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
81 ;; (align 4)))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
82 ;;
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
83 ;; (setq packet-spec
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
84 ;; '((header struct header-spec)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
85 ;; (items u8)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
86 ;; (fill 3)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
87 ;; (item repeat (items)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
88 ;; ((struct data-spec)))))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
89 ;;
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
90 ;;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
91 ;; A binary data representation may look like
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
92 ;; [ 192 168 1 100 192 168 1 101 01 28 21 32 2 0 0 0
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
93 ;; 2 3 5 0 ?A ?B ?C ?D ?E ?F 0 0 1 2 3 4 5 0 0 0
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
94 ;; 1 4 7 0 ?B ?C ?D ?E ?F ?G 0 0 6 7 8 9 10 11 12 0 ]
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
95 ;;
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
96 ;; The corresponding decoded structure looks like
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
97 ;;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
98 ;; ((header
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
99 ;; (dest-ip . [192 168 1 100])
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
100 ;; (src-ip . [192 168 1 101])
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
101 ;; (dest-port . 284)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
102 ;; (src-port . 5408))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
103 ;; (items . 2)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
104 ;; (item ((data . [1 2 3 4 5])
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
105 ;; (id . "ABCDEF")
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
106 ;; (length . 5)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
107 ;; (opcode . 3)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
108 ;; (type . 2))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
109 ;; ((data . [6 7 8 9 10 11 12])
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
110 ;; (id . "BCDEFG")
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
111 ;; (length . 7)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
112 ;; (opcode . 4)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
113 ;; (type . 1))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
114 ;;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
115 ;; To access a specific value in this structure, use the function
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
116 ;; bindat-get-field with the structure as first arg followed by a list
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
117 ;; of field names and array indexes, e.g. using the data above,
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
118 ;; (bindat-get-field decoded-structure 'item 1 'id)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
119 ;; returns "BCDEFG".
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
120
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
121 ;; Binary Data Structure Specification Format
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
122 ;; ------------------------------------------
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
123
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
124 ;; The data specification is formatted as follows:
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
125
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
126 ;; SPEC ::= ( ITEM... )
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
127
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
128 ;; ITEM ::= ( [FIELD] TYPE )
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
129 ;; | ( [FIELD] eval FORM ) -- eval FORM for side-effect only
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
130 ;; | ( [FIELD] fill LEN ) -- skip LEN bytes
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
131 ;; | ( [FIELD] align LEN ) -- skip to next multiple of LEN bytes
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
132 ;; | ( [FIELD] struct SPEC_NAME )
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
133 ;; | ( [FIELD] union TAG_VAL (TAG SPEC)... [(t SPEC)] )
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
134 ;; | ( [FIELD] repeat COUNT SPEC )
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
135
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
136 ;; -- In (eval EXPR), the value of the last field is available in
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
137 ;; the dynamically bound variable `last'.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
138
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
139 ;; TYPE ::= ( eval EXPR ) -- interpret result as TYPE
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
140 ;; | u8 | byte -- length 1
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
141 ;; | u16 | word | short -- length 2, network byte order
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
142 ;; | u24 -- 3-byte value
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
143 ;; | u32 | dword | long -- length 4, network byte order
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
144 ;; | u16r | u24r | u32r -- little endian byte order.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
145 ;; | str LEN -- LEN byte string
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
146 ;; | strz LEN -- LEN byte (zero-terminated) string
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
147 ;; | vec LEN -- LEN byte vector
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
148 ;; | ip -- 4 byte vector
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
149 ;; | bits LEN -- List with bits set in LEN bytes.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
150 ;;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
151 ;; -- Note: 32 bit values may be limited by emacs' INTEGER
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
152 ;; implementation limits.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
153 ;;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
154 ;; -- Example: bits 2 will map bytes 0x1c 0x28 to list (2 3 7 11 13)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
155
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
156 ;; FIELD ::= ( eval EXPR ) -- use result as NAME
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
157 ;; | NAME
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
158
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
159 ;; LEN ::= ARG
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
160 ;; | <omitted> | nil -- LEN = 1
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
161
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
162
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
163 ;; TAG_VAL ::= ARG
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
164
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
165 ;; TAG ::= LISP_CONSTANT
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
166 ;; | ( eval EXPR ) -- return non-nil if tag match;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
167 ;; current TAG_VAL in `tag'.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
168
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
169 ;; ARG ::= ( eval EXPR ) -- interpret result as ARG
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
170 ;; | INTEGER_CONSTANT
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
171 ;; | DEREF
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
172
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
173 ;; DEREF ::= ( [NAME | INTEGER]... ) -- Field NAME or Array index relative to
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
174 ;; current structure spec.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
175 ;; -- see bindat-get-field
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
176
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
177 ;; A `union' specification
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
178 ;; ([FIELD] union TAG_VAL (TAG SPEC) ... [(t SPEC)])
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
179 ;; is interpreted by evalling TAG_VAL and then comparing that to
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
180 ;; each TAG using equal; if a match is found, the corresponding SPEC
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
181 ;; is used.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
182 ;; If TAG is a form (eval EXPR), EXPR is evalled with `tag' bound to the
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
183 ;; value of TAG_VAL; the corresponding SPEC is used if the result is non-nil.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
184 ;; Finally, if TAG is t, the corresponding SPEC is used unconditionally.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
185 ;;
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
186 ;; An `eval' specification
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
187 ;; ([FIELD] eval FORM)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
188 ;; is interpreted by evalling FORM for its side effects only.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
189 ;; If FIELD is specified, the value is bound to that field.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
190 ;; The FORM may access and update `raw-data' and `pos' (see `bindat-unpack'),
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
191 ;; as well as the lisp data structure in `struct'.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
192
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
193 ;;; Code:
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
194
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
195 ;; Helper functions for structure unpacking.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
196 ;; Relies on dynamic binding of RAW-DATA and POS
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
197
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
198 (defvar raw-data)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
199 (defvar pos)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
200
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
201 (defun bindat--unpack-u8 ()
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
202 (prog1
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
203 (if (stringp raw-data)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
204 (string-to-char (substring raw-data pos (1+ pos)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
205 (aref raw-data pos))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
206 (setq pos (1+ pos))))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
207
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
208 (defun bindat--unpack-u16 ()
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
209 (let* ((a (bindat--unpack-u8)) (b (bindat--unpack-u8)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
210 (logior (lsh a 8) b)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
211
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
212 (defun bindat--unpack-u24 ()
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
213 (let* ((a (bindat--unpack-u16)) (b (bindat--unpack-u8)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
214 (logior (lsh a 8) b)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
215
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
216 (defun bindat--unpack-u32 ()
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
217 (let* ((a (bindat--unpack-u16)) (b (bindat--unpack-u16)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
218 (logior (lsh a 16) b)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
219
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
220 (defun bindat--unpack-u16r ()
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
221 (let* ((a (bindat--unpack-u8)) (b (bindat--unpack-u8)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
222 (logior a (lsh b 8))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
223
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
224 (defun bindat--unpack-u24r ()
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
225 (let* ((a (bindat--unpack-u16r)) (b (bindat--unpack-u8)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
226 (logior a (lsh b 16))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
227
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
228 (defun bindat--unpack-u32r ()
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
229 (let* ((a (bindat--unpack-u16r)) (b (bindat--unpack-u16r)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
230 (logior a (lsh b 16))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
231
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
232 (defun bindat--unpack-item (type len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
233 (if (eq type 'ip)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
234 (setq type 'vec len 4))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
235 (cond
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
236 ((memq type '(u8 byte))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
237 (bindat--unpack-u8))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
238 ((memq type '(u16 word short))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
239 (bindat--unpack-u16))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
240 ((eq type 'u24)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
241 (bindat--unpack-u24))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
242 ((memq type '(u32 dword long))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
243 (bindat--unpack-u32))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
244 ((eq type 'u16r)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
245 (bindat--unpack-u16r))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
246 ((eq type 'u24r)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
247 (bindat--unpack-u24r))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
248 ((eq type 'u32r)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
249 (bindat--unpack-u32r))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
250 ((eq type 'bits)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
251 (let ((bits nil) (bnum (1- (* 8 len))) j m)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
252 (while (>= bnum 0)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
253 (if (= (setq m (bindat--unpack-u8)) 0)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
254 (setq bnum (- bnum 8))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
255 (setq j 128)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
256 (while (> j 0)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
257 (if (/= 0 (logand m j))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
258 (setq bits (cons bnum bits)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
259 (setq bnum (1- bnum)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
260 j (lsh j -1)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
261 bits))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
262 ((eq type 'str)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
263 (let ((s (substring raw-data pos (+ pos len))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
264 (setq pos (+ pos len))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
265 (if (stringp s) s
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
266 (string-make-unibyte (concat s)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
267 ((eq type 'strz)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
268 (let ((i 0) s)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
269 (while (and (< i len) (/= (aref raw-data (+ pos i)) 0))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
270 (setq i (1+ i)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
271 (setq s (substring raw-data pos (+ pos i)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
272 (setq pos (+ pos len))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
273 (if (stringp s) s
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
274 (string-make-unibyte (concat s)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
275 ((eq type 'vec)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
276 (let ((v (make-vector len 0)) (i 0))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
277 (while (< i len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
278 (aset v i (bindat--unpack-u8))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
279 (setq i (1+ i)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
280 v))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
281 (t nil)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
282
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
283 (defun bindat--unpack-group (spec)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
284 (let (struct last)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
285 (while spec
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
286 (let* ((item (car spec))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
287 (field (car item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
288 (type (nth 1 item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
289 (len (nth 2 item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
290 (tail 3)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
291 data)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
292 (setq spec (cdr spec))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
293 (if (and (consp field) (eq (car field) 'eval))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
294 (setq field (eval (car (cdr field)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
295 (if (and type (consp type) (eq (car type) 'eval))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
296 (setq type (eval (car (cdr type)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
297 (if (and len (consp len) (eq (car len) 'eval))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
298 (setq len (eval (car (cdr len)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
299 (if (memq field '(eval fill align struct union))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
300 (setq tail 2
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
301 len type
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
302 type field
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
303 field nil))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
304 (if (and (consp len) (not (eq type 'eval)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
305 (setq len (apply 'bindat-get-field struct len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
306 (if (not len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
307 (setq len 1))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
308 (cond
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
309 ((eq type 'eval)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
310 (if field
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
311 (setq data (eval len))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
312 (eval len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
313 ((eq type 'fill)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
314 (setq pos (+ pos len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
315 ((eq type 'align)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
316 (while (/= (% pos len) 0)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
317 (setq pos (1+ pos))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
318 ((eq type 'struct)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
319 (setq data (bindat--unpack-group (eval len))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
320 ((eq type 'repeat)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
321 (let ((index 0))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
322 (while (< index len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
323 (setq data (cons (bindat--unpack-group (nthcdr tail item)) data))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
324 (setq index (1+ index)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
325 (setq data (nreverse data))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
326 ((eq type 'union)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
327 (let ((tag len) (cases (nthcdr tail item)) case cc)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
328 (while cases
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
329 (setq case (car cases)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
330 cases (cdr cases)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
331 cc (car case))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
332 (if (or (equal cc tag) (equal cc t)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
333 (and (consp cc) (eval cc)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
334 (setq data (bindat--unpack-group (cdr case))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
335 cases nil)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
336 (t
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
337 (setq data (bindat--unpack-item type len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
338 last data)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
339 (if data
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
340 (if field
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
341 (setq struct (cons (cons field data) struct))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
342 (setq struct (append data struct))))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
343 struct))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
344
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
345 (defun bindat-unpack (spec raw-data &optional pos)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
346 "Return structured data according to SPEC for binary data in RAW-DATA.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
347 RAW-DATA is a string or vector. Optional third arg POS specifies the
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
348 starting offset in RAW-DATA."
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
349 (unless pos (setq pos 0))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
350 (bindat--unpack-group spec))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
351
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
352 (defun bindat-get-field (struct &rest field)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
353 "In structured data STRUCT, return value of field named FIELD.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
354 If multiple field names are specified, use the field names to
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
355 lookup nested sub-structures in STRUCT, corresponding to the
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
356 C-language syntax STRUCT.FIELD1.FIELD2.FIELD3...
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
357 An integer value in the field list is taken as an array index,
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
358 e.g. corresponding to STRUCT.FIELD1[INDEX2].FIELD3..."
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
359 (while (and struct field)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
360 (setq struct (if (integerp (car field))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
361 (nth (car field) struct)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
362 (let ((val (assq (car field) struct)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
363 (if (consp val) (cdr val)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
364 (setq field (cdr field)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
365 struct)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
366
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
367
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
368 ;; Calculate raw-data length of structured data
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
369
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
370 (defvar bindat--fixed-length-alist
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
371 '((u8 . 1) (byte . 1)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
372 (u16 . 2) (u16r . 2) (word . 2) (short . 2)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
373 (u24 . 3) (u24r . 3)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
374 (u32 . 4) (u32r . 4) (dword . 4) (long . 4)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
375 (ip . 4)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
376
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
377 (defun bindat--length-group (struct spec)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
378 (let (last)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
379 (while spec
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
380 (let* ((item (car spec))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
381 (field (car item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
382 (type (nth 1 item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
383 (len (nth 2 item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
384 (tail 3))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
385 (setq spec (cdr spec))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
386 (if (and (consp field) (eq (car field) 'eval))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
387 (setq field (eval (car (cdr field)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
388 (if (and type (consp type) (eq (car type) 'eval))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
389 (setq type (eval (car (cdr type)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
390 (if (and len (consp len) (eq (car len) 'eval))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
391 (setq len (eval (car (cdr len)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
392 (if (memq field '(eval fill align struct union))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
393 (setq tail 2
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
394 len type
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
395 type field
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
396 field nil))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
397 (if (and (consp len) (not (eq type 'eval)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
398 (setq len (apply 'bindat-get-field struct len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
399 (if (not len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
400 (setq len 1))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
401 (cond
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
402 ((eq type 'eval)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
403 (if field
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
404 (setq struct (cons (cons field (eval len)) struct))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
405 (eval len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
406 ((eq type 'fill)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
407 (setq pos (+ pos len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
408 ((eq type 'align)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
409 (while (/= (% pos len) 0)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
410 (setq pos (1+ pos))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
411 ((eq type 'struct)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
412 (bindat--length-group
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
413 (if field (bindat-get-field struct field) struct) (eval len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
414 ((eq type 'repeat)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
415 (let ((index 0))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
416 (while (< index len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
417 (bindat--length-group (nth index (bindat-get-field struct field)) (nthcdr tail item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
418 (setq index (1+ index)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
419 ((eq type 'union)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
420 (let ((tag len) (cases (nthcdr tail item)) case cc)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
421 (while cases
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
422 (setq case (car cases)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
423 cases (cdr cases)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
424 cc (car case))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
425 (if (or (equal cc tag) (equal cc t)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
426 (and (consp cc) (eval cc)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
427 (progn
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
428 (bindat--length-group struct (cdr case))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
429 (setq cases nil))))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
430 (t
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
431 (if (setq type (assq type bindat--fixed-length-alist))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
432 (setq len (cdr type)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
433 (if field
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
434 (setq last (bindat-get-field struct field)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
435 (setq pos (+ pos len))))))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
436
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
437 (defun bindat-length (spec struct)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
438 "Calculate raw-data length for STRUCT according to bindat specification SPEC."
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
439 (let ((pos 0))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
440 (bindat--length-group struct spec)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
441 pos))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
442
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
443
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
444 ;; Pack structured data into raw-data
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
445
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
446 (defun bindat--pack-u8 (v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
447 (aset raw-data pos (logand v 255))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
448 (setq pos (1+ pos)))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
449
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
450 (defun bindat--pack-u16 (v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
451 (aset raw-data pos (logand (lsh v -8) 255))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
452 (aset raw-data (1+ pos) (logand v 255))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
453 (setq pos (+ pos 2)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
454
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
455 (defun bindat--pack-u24 (v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
456 (bindat--pack-u8 (lsh v -16))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
457 (bindat--pack-u16 v))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
458
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
459 (defun bindat--pack-u32 (v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
460 (bindat--pack-u16 (lsh v -16))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
461 (bindat--pack-u16 v))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
462
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
463 (defun bindat--pack-u16r (v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
464 (aset raw-data (1+ pos) (logand (lsh v -8) 255))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
465 (aset raw-data pos (logand v 255))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
466 (setq pos (+ pos 2)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
467
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
468 (defun bindat--pack-u24r (v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
469 (bindat--pack-u16r v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
470 (bindat--pack-u8 (lsh v -16)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
471
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
472 (defun bindat--pack-u32r (v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
473 (bindat--pack-u16r v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
474 (bindat--pack-u16r (lsh v -16)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
475
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
476 (defun bindat--pack-item (v type len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
477 (if (eq type 'ip)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
478 (setq type 'vec len 4))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
479 (cond
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
480 ((null v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
481 (setq pos (+ pos len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
482 ((memq type '(u8 byte))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
483 (bindat--pack-u8 v))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
484 ((memq type '(u16 word short))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
485 (bindat--pack-u16 v))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
486 ((eq type 'u24)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
487 (bindat--pack-u24 v))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
488 ((memq type '(u32 dword long))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
489 (bindat--pack-u32 v))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
490 ((eq type 'u16r)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
491 (bindat--pack-u16r v))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
492 ((eq type 'u24r)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
493 (bindat--pack-u24r v))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
494 ((eq type 'u32r)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
495 (bindat--pack-u32r v))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
496 ((eq type 'bits)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
497 (let ((bnum (1- (* 8 len))) j m)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
498 (while (>= bnum 0)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
499 (setq m 0)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
500 (if (null v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
501 (setq bnum (- bnum 8))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
502 (setq j 128)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
503 (while (> j 0)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
504 (if (memq bnum v)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
505 (setq m (logior m j)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
506 (setq bnum (1- bnum)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
507 j (lsh j -1))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
508 (bindat--pack-u8 m))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
509 ((memq type '(str strz vec))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
510 (let ((l (length v)) (i 0))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
511 (if (> l len) (setq l len))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
512 (while (< i l)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
513 (aset raw-data (+ pos i) (aref v i))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
514 (setq i (1+ i)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
515 (setq pos (+ pos len))))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
516 (t
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
517 (setq pos (+ pos len)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
518
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
519 (defun bindat--pack-group (struct spec)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
520 (let (last)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
521 (while spec
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
522 (let* ((item (car spec))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
523 (field (car item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
524 (type (nth 1 item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
525 (len (nth 2 item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
526 (tail 3))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
527 (setq spec (cdr spec))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
528 (if (and (consp field) (eq (car field) 'eval))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
529 (setq field (eval (car (cdr field)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
530 (if (and type (consp type) (eq (car type) 'eval))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
531 (setq type (eval (car (cdr type)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
532 (if (and len (consp len) (eq (car len) 'eval))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
533 (setq len (eval (car (cdr len)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
534 (if (memq field '(eval fill align struct union))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
535 (setq tail 2
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
536 len type
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
537 type field
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
538 field nil))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
539 (if (and (consp len) (not (eq type 'eval)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
540 (setq len (apply 'bindat-get-field struct len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
541 (if (not len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
542 (setq len 1))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
543 (cond
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
544 ((eq type 'eval)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
545 (if field
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
546 (setq struct (cons (cons field (eval len)) struct))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
547 (eval len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
548 ((eq type 'fill)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
549 (setq pos (+ pos len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
550 ((eq type 'align)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
551 (while (/= (% pos len) 0)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
552 (setq pos (1+ pos))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
553 ((eq type 'struct)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
554 (bindat--pack-group
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
555 (if field (bindat-get-field struct field) struct) (eval len)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
556 ((eq type 'repeat)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
557 (let ((index 0))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
558 (while (< index len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
559 (bindat--pack-group (nth index (bindat-get-field struct field)) (nthcdr tail item))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
560 (setq index (1+ index)))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
561 ((eq type 'union)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
562 (let ((tag len) (cases (nthcdr tail item)) case cc)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
563 (while cases
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
564 (setq case (car cases)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
565 cases (cdr cases)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
566 cc (car case))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
567 (if (or (equal cc tag) (equal cc t)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
568 (and (consp cc) (eval cc)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
569 (progn
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
570 (bindat--pack-group struct (cdr case))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
571 (setq cases nil))))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
572 (t
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
573 (setq last (bindat-get-field struct field))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
574 (bindat--pack-item last type len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
575 ))))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
576
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
577 (defun bindat-pack (spec struct &optional raw-data pos)
48031
5adaaf91c4d5 Fixed typo in docstring.
Kim F. Storm <storm@cua.dk>
parents: 46122
diff changeset
578 "Return binary data packed according to SPEC for structured data STRUCT.
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
579 Optional third arg RAW-DATA is a pre-allocated string or vector to unpack into.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
580 Optional fourth arg POS is the starting offset into RAW-DATA.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
581 Note: The result is a multibyte string; use `string-make-unibyte' on it
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
582 to make it unibyte if necessary."
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
583 (let ((no-return raw-data))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
584 (unless pos (setq pos 0))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
585 (unless raw-data (setq raw-data (make-vector (+ pos (bindat-length spec struct)) 0)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
586 (bindat--pack-group struct spec)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
587 (if no-return nil (concat raw-data))))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
588
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
589
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
590 ;; Misc. format conversions
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
591
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
592 (defun bindat-format-vector (vect fmt sep &optional len)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
593 "Format vector VECT using element format FMT and separator SEP.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
594 Result is a string with each element of VECT formatted using FMT and
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
595 separated by the string SEP. If optional fourth arg LEN is given, use
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
596 only that many elements from VECT."
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
597 (unless len
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
598 (setq len (length vect)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
599 (let ((i len) (fmt2 (concat sep fmt)) (s nil))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
600 (while (> i 0)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
601 (setq i (1- i)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
602 s (cons (format (if (= i 0) fmt fmt2) (aref vect i)) s)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
603 (apply 'concat s)))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48031
diff changeset
604
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
605 (defun bindat-vector-to-dec (vect &optional sep)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
606 "Format vector VECT in decimal format separated by dots.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
607 If optional second arg SEP is a string, use that as separator."
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
608 (bindat-format-vector vect "%d" (if (stringp sep) sep ".")))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
609
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
610 (defun bindat-vector-to-hex (vect &optional sep)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
611 "Format vector VECT in hex format separated by dots.
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
612 If optional second arg SEP is a string, use that as separator."
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
613 (bindat-format-vector vect "%02x" (if (stringp sep) sep ":")))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
614
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
615 (defun bindat-ip-to-string (ip)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
616 "Format vector IP as an ip address in dotted notation."
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
617 (format "%d.%d.%d.%d"
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
618 (aref ip 0) (aref ip 1) (aref ip 2) (aref ip 3)))
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
619
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
620 (provide 'bindat)
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
621
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49598
diff changeset
622 ;;; arch-tag: 5e6708c3-03e2-4ad7-9885-5041b779c3fb
46122
17067a24204d New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
623 ;;; bindat.el ends here