-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeti.myr
63 lines (53 loc) · 1.6 KB
/
geti.myr
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
use std
use "bio.use"
pkg bio =
/* unsigned big endian */
generic getbe8 : (f : file# -> std.option(@a::(numeric,integral)))
generic getbe16 : (f : file# -> std.option(@a::(numeric,integral)))
generic getbe32 : (f : file# -> std.option(@a::(numeric,integral)))
generic getbe64 : (f : file# -> std.option(@a::(numeric,integral)))
/* signed big endian */
generic getle8 : (f : file# -> std.option(@a::(numeric,integral)))
generic getle16 : (f : file# -> std.option(@a::(numeric,integral)))
generic getle32 : (f : file# -> std.option(@a::(numeric,integral)))
generic getle64 : (f : file# -> std.option(@a::(numeric,integral)))
;;
/*
reads a single integer-like value to the output stream, in
little endian format
*/
generic getle = {f, n -> std.option(@a::(numeric,integral))
var v, i
v = 0
if !ensureread(f, n)
-> `std.None
;;
for i = 0; i < n; i++
v |= (f.rbuf[f.rstart++] castto(uint64)) << (8*(i castto(uint64)))
;;
-> `std.Some v castto(@a::(numeric,integral))
}
/*
reads a single integer-like value to the output stream, in
big endian format
*/
generic getbe = {f, n -> std.option(@a::(numeric,integral))
var v, i
v = 0
if !ensureread(f,n)
-> `std.None
;;
for i = 0; i < n; i++
v <<= 8
v |= (f.rbuf[f.rstart++] castto(uint64))
;;
-> `std.Some v castto(@a::(numeric,integral))
}
generic getbe8 = {f; -> getbe(f, 1)}
generic getbe16 = {f; -> getbe(f, 2)}
generic getbe32 = {f; -> getbe(f, 4)}
generic getbe64 = {f; -> getbe(f, 8)}
generic getle8 = {f; -> getle(f, 1)}
generic getle16 = {f; -> getle(f, 2)}
generic getle32 = {f; -> getle(f, 4)}
generic getle64 = {f; -> getle(f, 8)}