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
open! Import
open Bigstring
include Bigbuffer_internal
let __internal (t : t) = t
let length t = t.pos
let create n =
let n = max 1 n in
let bstr = Bigstring.create n in
{ bstr; pos = 0; len = n; init = bstr }
;;
let contents buf = Bigstring.to_string buf.bstr ~len:buf.pos
let contents_bytes buf = Bigstring.to_bytes buf.bstr ~len:buf.pos
let big_contents buf = subo ~len:buf.pos buf.bstr
let volatile_contents buf = buf.bstr
let add_char buf c =
let pos = buf.pos in
if pos >= buf.len then resize buf 1;
buf.bstr.{pos} <- c;
buf.pos <- pos + 1
;;
module To_bytes =
Test_blit.Make_distinct_and_test
(struct
type t = char
let equal = Char.equal
let of_bool b = if b then 'a' else 'b'
end)
(struct
type nonrec t = t [@@deriving sexp_of]
let create ~len =
let t = create len in
for _ = 1 to len do
add_char t 'a'
done;
t
;;
let length = length
let set t i c = Bigstring.set t.bstr i c
let get t i = Bigstring.get t.bstr i
end)
(struct
include Bytes
let create ~len = create len
let unsafe_blit ~src ~src_pos ~dst ~dst_pos ~len =
Bigstring.To_bytes.unsafe_blit ~src:src.bstr ~src_pos ~dst ~dst_pos ~len
;;
end)
include To_bytes
module To_string = Blit.Make_to_string (Bigbuffer_internal) (To_bytes)
let nth buf pos =
if pos < 0 || pos >= buf.pos then invalid_arg "Bigbuffer.nth" else buf.bstr.{pos}
;;
let clear buf = buf.pos <- 0
let reset buf =
buf.pos <- 0;
buf.bstr <- buf.init;
buf.len <- Bigstring.length buf.bstr
;;
let add_substring buf src ~pos:src_pos ~len =
if src_pos < 0 || len < 0 || src_pos > String.length src - len
then invalid_arg "Bigbuffer.add_substring";
let new_pos = buf.pos + len in
if new_pos > buf.len then resize buf len;
Bigstring.From_string.blit ~src ~src_pos ~len ~dst:buf.bstr ~dst_pos:buf.pos;
buf.pos <- new_pos
;;
let add_subbytes buf src ~pos:src_pos ~len =
if src_pos < 0 || len < 0 || src_pos > Bytes.length src - len
then invalid_arg "Bigbuffer.add_subbytes";
let new_pos = buf.pos + len in
if new_pos > buf.len then resize buf len;
Bigstring.From_bytes.blit ~src ~src_pos ~len ~dst:buf.bstr ~dst_pos:buf.pos;
buf.pos <- new_pos
;;
let add_bigstring buf src =
let len = Bigstring.length src in
let new_pos = buf.pos + len in
if new_pos > buf.len then resize buf len;
Bigstring.blito ~src ~src_len:len ~dst:buf.bstr ~dst_pos:buf.pos ();
buf.pos <- new_pos
;;
let add_string buf src =
let len = String.length src in
let new_pos = buf.pos + len in
if new_pos > buf.len then resize buf len;
Bigstring.From_string.blito ~src ~src_len:len ~dst:buf.bstr ~dst_pos:buf.pos ();
buf.pos <- new_pos
;;
let add_bytes buf src =
let len = Bytes.length src in
let new_pos = buf.pos + len in
if new_pos > buf.len then resize buf len;
Bigstring.From_bytes.blito ~src ~src_len:len ~dst:buf.bstr ~dst_pos:buf.pos ();
buf.pos <- new_pos
;;
let add_buffer buf_dst buf_src =
let len = buf_src.pos in
let dst_pos = buf_dst.pos in
let new_pos = dst_pos + len in
if new_pos > buf_dst.len then resize buf_dst len;
Bigstring.blito ~src:buf_src.bstr ~src_len:len ~dst:buf_dst.bstr ~dst_pos ();
buf_dst.pos <- new_pos
;;
let add_bin_prot t (writer : _ Bin_prot.Type_class.writer) x =
let new_pos =
match writer.write t.bstr ~pos:t.pos x with
| pos -> pos
| exception _ ->
let size = writer.size x in
if t.pos + size > t.len then resize t size;
writer.write t.bstr ~pos:t.pos x
in
t.pos <- new_pos
;;
let closing = function
| '(' -> ')'
| '{' -> '}'
| _ -> assert false
;;
let advance_to_closing opening closing k s start =
let rec advance k i lim =
if i >= lim
then
raise
(Not_found_s
[%message
"Bigbuffer.add_substitute: cannot find closing delimiter"
(opening : char)
(closing : char)
(start : int)
s])
else if Char.equal s.[i] opening
then advance (k + 1) (i + 1) lim
else if Char.equal s.[i] closing
then if k = 0 then i else advance (k - 1) (i + 1) lim
else advance k (i + 1) lim
in
advance k start (String.length s)
;;
let advance_to_non_alpha s start =
let rec advance i lim =
if i >= lim
then lim
else (
match s.[i] with
| 'a' .. 'z'
| 'A' .. 'Z'
| '0' .. '9'
| '_'
| 'é'
| 'à'
| 'á'
| 'è'
| 'ù'
| 'â'
| 'ê'
| 'î'
| 'ô'
| 'û'
| 'ë'
| 'ï'
| 'ü'
| 'ç'
| 'É'
| 'À'
| 'Á'
| 'È'
| 'Ù'
| 'Â'
| 'Ê'
| 'Î'
| 'Ô'
| 'Û'
| 'Ë'
| 'Ï'
| 'Ü'
| 'Ç' -> advance (i + 1) lim
| _ -> i)
in
advance start (String.length s)
;;
let find_ident s start =
match s.[start] with
| ('(' | '{') as c ->
let new_start = start + 1 in
let stop = advance_to_closing c (closing c) 0 s new_start in
String.sub s ~pos:new_start ~len:(stop - start - 1), stop + 1
| _ ->
let stop = advance_to_non_alpha s (start + 1) in
String.sub s ~pos:start ~len:(stop - start), stop
;;
let add_substitute buf f s =
let lim = String.length s in
let rec subst previous i =
if i < lim
then (
match s.[i] with
| '$' as current when Char.equal previous '\\' ->
add_char buf current;
subst current (i + 1)
| '$' ->
let ident, next_i = find_ident s (i + 1) in
add_string buf (f ident);
subst ' ' next_i
| current when Char.equal previous '\\' ->
add_char buf '\\';
add_char buf current;
subst current (i + 1)
| '\\' as current -> subst current (i + 1)
| current ->
add_char buf current;
subst current (i + 1))
in
subst ' ' 0
;;
module Format = struct
let formatter_of_buffer buf =
Format.make_formatter (fun s pos len -> add_substring buf s ~pos ~len) ignore
;;
let bprintf buf = Format.kfprintf ignore (formatter_of_buffer buf)
end
module Printf = struct
let bprintf buf = Printf.ksprintf (add_string buf)
end