aboutsummaryrefslogtreecommitdiff
path: root/stream.go
blob: 31272245dcc4bd71564fb5df0630e2c71b9588f1 (plain) (blame)
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
package salticidae

// #include <stdlib.h>
// #include "salticidae/stream.h"
// #include "salticidae/endian.h"
// uint16_t _salti_htole16(uint16_t x) { return htole16(x); }
// uint32_t _salti_htole32(uint32_t x) { return htole32(x); }
// uint64_t _salti_htole64(uint64_t x) { return htole64(x); }
//
// uint16_t _salti_letoh16(uint16_t x) { return le16toh(x); }
// uint32_t _salti_letoh32(uint32_t x) { return le32toh(x); }
// uint64_t _salti_letoh64(uint64_t x) { return le64toh(x); }
//
// uint16_t _salti_htobe16(uint16_t x) { return htobe16(x); }
// uint32_t _salti_htobe32(uint32_t x) { return htobe32(x); }
// uint64_t _salti_htobe64(uint64_t x) { return htobe64(x); }
//
// uint16_t _salti_betoh16(uint16_t x) { return be16toh(x); }
// uint32_t _salti_betoh32(uint32_t x) { return be32toh(x); }
// uint64_t _salti_betoh64(uint64_t x) { return be64toh(x); }
//
import "C"
import "runtime"

type CByteArray = *C.bytearray_t

// The C pointer to a ByteArray object.
type byteArray struct {
	inner    CByteArray
	autoFree bool
}

// Array of binary data.
type ByteArray = *byteArray

func ByteArrayFromC(ptr CByteArray) ByteArray {
	return &byteArray{inner: ptr}
}

func byteArraySetFinalizer(res ByteArray, autoFree bool) {
	res.autoFree = autoFree
	if res != nil && autoFree {
		runtime.SetFinalizer(res, func(self ByteArray) { self.Free() })
	}
}

// Create an empty byte array (with zero contained bytes).
func NewByteArray(autoFree bool) ByteArray {
	res := ByteArrayFromC(C.bytearray_new())
	byteArraySetFinalizer(res, autoFree)
	return res
}

// Free the ByteArray manually. If the object is constructed with autoFree =
// true, this will immediately free the object.
func (self ByteArray) Free() {
	C.bytearray_free(self.inner)
	if self.autoFree {
		runtime.SetFinalizer(self, nil)
	}
}

// Create a byte array by taking out all data from src. Notice this is a
// zero-copy operation that consumes and invalidates the data in src ("move"
// semantics) so that no more operation should be done to src after this
// function call. Also notice unlike copying, the entire DataStream buffer is
// moved (including the possibily consumed part).
func NewByteArrayMovedFromDataStream(src DataStream, autoFree bool) (res ByteArray) {
	res = ByteArrayFromC(C.bytearray_new_moved_from_datastream(src.inner))
	byteArraySetFinalizer(res, autoFree)
	return
}

// Create a byte array by copying the remaining data from src.
func NewByteArrayCopiedFromDataStream(src DataStream, autoFree bool) (res ByteArray) {
	res = ByteArrayFromC(C.bytearray_new_copied_from_datastream(src.inner))
	byteArraySetFinalizer(res, autoFree)
	return
}

func NewByteArrayFromHex(hex string) (res ByteArray, autoFree bool) {
	c_str := C.CString(hex)
	res = ByteArrayFromC(C.bytearray_new_from_hex(c_str))
	C.free(rawptr_t(c_str))
	byteArraySetFinalizer(res, autoFree)
	return
}

func NewByteArrayFromBytes(bytes []byte, autoFree bool) (res ByteArray) {
	size := len(bytes)
	if size > 0 {
		base := (*C.uint8_t)(&bytes[0])
		res = ByteArrayFromC(C.bytearray_new_from_bytes(base, C.size_t(size)))
	} else {
		res = ByteArrayFromC(C.bytearray_new())
	}
	byteArraySetFinalizer(res, autoFree)
	return
}

// The C pointer to a DataStream object.
type CDataStream = *C.datastream_t
type dataStream struct {
	inner    CDataStream
	attached map[uintptr]interface{}
	autoFree bool
}

// Stream of binary data.
type DataStream = *dataStream

func DataStreamFromC(ptr CDataStream) DataStream {
	return &dataStream{
		inner:    ptr,
		attached: make(map[uintptr]interface{}),
	}
}

func dataStreamSetFinalizer(res DataStream, autoFree bool) {
	res.autoFree = autoFree
	if res != nil && autoFree {
		runtime.SetFinalizer(res, func(self DataStream) { self.Free() })
	}
}

// Create an empty DataStream.
func NewDataStream(autoFree bool) DataStream {
	res := DataStreamFromC(C.datastream_new())
	dataStreamSetFinalizer(res, autoFree)
	return res
}

// Create a DataStream with data copied from bytes.
func NewDataStreamFromBytes(bytes []byte, autoFree bool) (res DataStream) {
	size := len(bytes)
	if size > 0 {
		base := (*C.uint8_t)(&bytes[0])
		res = DataStreamFromC(C.datastream_new_from_bytes(base, C.size_t(size)))
	} else {
		res = DataStreamFromC(C.datastream_new())
	}
	dataStreamSetFinalizer(res, autoFree)
	return
}

// Create a DataStream with content moved from a ByteArray.
func NewDataStreamMovedFromByteArray(bytes ByteArray, autoFree bool) (res DataStream) {
	res = DataStreamFromC(C.datastream_new_moved_from_bytearray(bytes.inner))
	dataStreamSetFinalizer(res, autoFree)
	return
}

// Create a DataStream with content copied from a ByteArray.
func NewDataStreamFromByteArray(bytes ByteArray, autoFree bool) (res DataStream) {
	res = DataStreamFromC(C.datastream_new_from_bytearray(bytes.inner))
	dataStreamSetFinalizer(res, autoFree)
	return
}

func (self DataStream) Free() {
	C.datastream_free(self.inner)
	if self.autoFree {
		runtime.SetFinalizer(self, nil)
	}
}

func (self DataStream) attach(ptr rawptr_t, obj interface{}) { self.attached[uintptr(ptr)] = obj }
func (self DataStream) detach(ptr rawptr_t)                  { delete(self.attached, uintptr(ptr)) }

// Make a copy of the object.
func (self DataStream) Copy(autoFree bool) (res DataStream) {
	res = DataStreamFromC(C.datastream_copy(self.inner))
	dataStreamSetFinalizer(res, autoFree)
	return
}

// TODO: datastream_data

// Empty the DataStream.
func (self DataStream) Clear() { C.datastream_clear(self.inner) }

func (self DataStream) Size() int { return int(C.datastream_size(self.inner)) }

// Write a uint8 integer to the stream (no byte order conversion).
func (self DataStream) PutU8(v uint8) bool { return bool(C.datastream_put_u8(self.inner, C.uint8_t(v))) }

// Write a uint16 integer to the stream (no byte order conversion).
func (self DataStream) PutU16(v uint16) bool {
	return bool(C.datastream_put_u16(self.inner, C.uint16_t(v)))
}

// Write a uint32 integer to the stream (no byte order conversion).
func (self DataStream) PutU32(v uint32) bool {
	return bool(C.datastream_put_u32(self.inner, C.uint32_t(v)))
}

// Write a uint64 integer to the stream (no byte order conversion).
func (self DataStream) PutU64(v uint64) bool {
	return bool(C.datastream_put_u64(self.inner, C.uint64_t(v)))
}

// Write an int8 integer to the stream (no byte order conversion).
func (self DataStream) PutI8(v int8) bool { return bool(C.datastream_put_i8(self.inner, C.int8_t(v))) }

// Write an int16 integer to the stream (no byte order conversion).
func (self DataStream) PutI16(v int16) bool {
	return bool(C.datastream_put_i16(self.inner, C.int16_t(v)))
}

// Write an int32 integer to the stream (no byte order conversion).
func (self DataStream) PutI32(v int32) bool {
	return bool(C.datastream_put_i32(self.inner, C.int32_t(v)))
}

// Write an int64 integer to the stream (no byte order conversion).
func (self DataStream) PutI64(v int32) bool {
	return bool(C.datastream_put_i64(self.inner, C.int64_t(v)))
}

// Write arbitrary bytes to the stream.
func (self DataStream) PutData(bytes []byte) bool {
	size := len(bytes)
	if size > 0 {
		base := (*C.uint8_t)(&bytes[0])
		return bool(C.datastream_put_data(self.inner, base, C.size_t(size)))
	} else {
		return true
	}
}

// Parse a uint8 integer by consuming the stream (no byte order conversion).
func (self DataStream) GetU8(succ *bool) uint8 {
	return uint8(C.datastream_get_u8(self.inner, (*C.bool)(succ)))
}

// Parse a uint16 integer by consuming the stream (no byte order conversion).
func (self DataStream) GetU16(succ *bool) uint16 {
	return uint16(C.datastream_get_u16(self.inner, (*C.bool)(succ)))
}

// Parse a uint32 integer by consuming the stream (no byte order conversion).
func (self DataStream) GetU32(succ *bool) uint32 {
	return uint32(C.datastream_get_u32(self.inner, (*C.bool)(succ)))
}

// Parse a uint64 integer by consuming the stream (no byte order conversion).
func (self DataStream) GetU64(succ *bool) uint64 {
	return uint64(C.datastream_get_u64(self.inner, (*C.bool)(succ)))
}

// Parse an int8 integer by consuming the stream (no byte order conversion).
func (self DataStream)