Source file lTerm_history.ml
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
let return, (>>=) = Lwt.return, Lwt.(>>=)
type node = {
mutable data : Zed_string.t;
mutable size : int;
mutable prev : node;
}
type t = {
mutable entries : node;
mutable full_size : int;
mutable length : int;
mutable max_size : int;
mutable max_entries : int;
mutable old_count : int;
mutable cache : Zed_string.t list option;
}
let entry_size str =
let zChar_newline= Zed_char.unsafe_of_char '\n'
and zChar_slash= Zed_char.unsafe_of_char '\\' in
let size = ref 0 in
let eos= Zed_string.bytes str in
let rec calc ofs=
if ofs < eos then
let ch, ofs= Zed_string.extract_next str ofs in
if Zed_char.compare ch zChar_newline = 0 || Zed_char.compare ch zChar_slash = 0 then
size := !size + 2
else
size := !size + 1;
calc ofs
in
calc 0;
!size + 1
let size_ok size1 size2 limit =
let sum = size1 + size2 in
sum >= 0 && sum <= limit
let create ?(max_size=max_int) ?(max_entries=max_int) init =
if max_size < 0 then
invalid_arg "LTerm_history.create: negative maximum size";
if max_entries < 0 then
invalid_arg "LTerm_history.create: negative maximum number of entries";
let rec aux size count node entries =
match entries with
| [] ->
(size, count, node)
| entry :: entries ->
let entry_size = entry_size entry in
if size_ok size entry_size max_size && count + 1 < max_entries then begin
let next = { data = Zed_string.empty (); prev = node; size = 0 } in
node.data <- entry;
node.size <- entry_size;
aux (size + entry_size) (count + 1) next entries
end else
(size, count, node)
in
let rec node = { data = Zed_string.empty (); size = 0; prev = node } in
let size, count, marker = aux 0 0 node init in
node.prev <- marker;
{
entries = node;
full_size = size;
length = count;
max_size = max_size;
max_entries = max_entries;
old_count = count;
cache = None;
}
let is_space_uChar ch = Uucp.White.is_white_space ch
let is_space ch = Zed_char.for_all is_space_uChar ch
let is_empty str = Zed_string.for_all is_space str
let is_dup history entry =
history.length > 0 && history.entries.data = entry
let drop_oldest history =
let last = history.entries.prev.prev in
history.entries.prev <- last;
history.length <- history.length - 1;
history.full_size <- history.full_size - last.size;
if history.old_count > 0 then history.old_count <- history.old_count - 1;
last.data <- Zed_string.empty ();
last.size <- 0
let add_aux history data size =
if size <= history.max_size then begin
if history.length = history.max_entries then begin
history.cache <- None;
drop_oldest history
end;
if not (size_ok history.full_size size history.max_size) then begin
history.cache <- None;
drop_oldest history;
while not (size_ok history.full_size size history.max_size) do
drop_oldest history
done
end;
let node = { data = data; size = size; prev = history.entries.prev } in
history.entries.prev <- node;
history.entries <- node;
history.length <- history.length + 1;
history.full_size <- history.full_size + size;
match history.cache with
| None ->
()
| Some l ->
history.cache <- Some (data :: l)
end
let add history ?(skip_empty=true) ?(skip_dup=true) entry =
if history.max_entries > 0 && history.max_size > 0 && not (skip_empty && is_empty entry) && not (skip_dup && is_dup history entry) then
add_aux history entry (entry_size entry)
let rec list_of_nodes marker acc node =
if node == marker then
acc
else
list_of_nodes marker (node.data :: acc) node.prev
let contents history =
match history.cache with
| Some l ->
l
| None ->
let marker = history.entries.prev in
let l = list_of_nodes marker [] marker.prev in
history.cache <- Some l;
l
let size history = history.full_size
let length history = history.length
let old_count history = history.old_count
let max_size history = history.max_size
let max_entries history = history.max_entries
let set_old_count history n =
if n < 0 then
invalid_arg "LTerm_history.set_old_count: negative old count";
if n > history.length then
invalid_arg "LTerm_history.set_old_count: old count greater than the length of the history";
history.old_count <- n
let set_max_size history size =
if size < 0 then
invalid_arg "LTerm_history.set_max_size: negative maximum size";
if size < history.full_size then begin
history.cache <- None;
drop_oldest history;
while size < history.full_size do
drop_oldest history
done
end;
history.max_size <- size
let set_max_entries history n =
if n < 0 then
invalid_arg "LTerm_history.set_max_entries: negative maximum number of entries";
if n < history.length then begin
history.cache <- None;
drop_oldest history;
while n < history.length do
drop_oldest history
done
end;
history.max_entries <- n
let escape entry =
let len = Zed_string.bytes entry in
let buf = Zed_string.Buf.create len in
let zChar_n= Zed_char.unsafe_of_char 'n' in
let zChar_slash= Zed_char.unsafe_of_char '\\' in
let zChar_nl= Zed_char.unsafe_of_char '\n' in
let rec loop ofs =
if ofs = len then
Zed_string.Buf.contents buf
else
let ch, ofs= Zed_string.extract_next entry ofs in
if Zed_char.compare ch zChar_nl = 0 then
begin
Zed_string.Buf.add_zChar buf zChar_slash;
Zed_string.Buf.add_zChar buf zChar_n;
loop ofs;
end
else if Zed_char.compare ch zChar_slash = 0 then
begin
Zed_string.Buf.add_zChar buf zChar_slash;
Zed_string.Buf.add_zChar buf zChar_slash;
loop ofs;
end
else
begin
Zed_string.Buf.add_zChar buf ch;
loop ofs;
end
in
loop 0
let unescape line =
let eos= Zed_string.bytes line in
let buf= Zed_string.Buf.create 0 in
let zChar_n= Zed_char.unsafe_of_char 'n' in
let zChar_slash= Zed_char.unsafe_of_char '\\' in
let zChar_nl= Zed_char.unsafe_of_char '\n' in
let rec loop ofs size =
if ofs >= eos then
(Zed_string.Buf.contents buf, size + 1)
else
let ch, ofs= Zed_string.extract_next line ofs in
if Zed_char.compare ch zChar_slash = 0 then
if ofs >= eos then
(Zed_string.Buf.add_zChar buf zChar_slash;
(Zed_string.Buf.contents buf, size + 3);)
else
(let next, ofs_next= Zed_string.extract_next line ofs in
if Zed_char.compare next zChar_n = 0 then
(Zed_string.Buf.add_zChar buf zChar_nl;
loop ofs_next (size + 2);)
else if Zed_char.compare next zChar_slash = 0 then
(Zed_string.Buf.add_zChar buf zChar_slash;
loop ofs_next (size + 2);)
else
(Zed_string.Buf.add_zChar buf zChar_slash;
loop ofs (size + 2);))
else
(Zed_string.Buf.add_zChar buf ch;
loop ofs (size + Zed_char.size ch);)
in
loop 0 0
let section = Lwt_log.Section.make "lambda-term(history)"
let rec safe_lockf fn fd cmd ofs =
Lwt.catch (fun () ->
Lwt_unix.lockf fd cmd ofs >>= fun () ->
return true)
(function
| Unix.Unix_error (Unix.EINTR, _, _) ->
safe_lockf fn fd cmd ofs
| Unix.Unix_error (error, _, _) ->
Lwt_log.ign_warning_f ~section "failed to lock file '%s': %s" fn (Unix.error_message error);
return false
| exn -> Lwt.fail exn)
let open_history fn =
Lwt.catch (fun () ->
Lwt_unix.openfile fn [Unix.O_RDWR] 0 >>= fun fd ->
safe_lockf fn fd Lwt_unix.F_LOCK 0 >>= fun locked ->
return (Some (fd, locked)))
(function
| Unix.Unix_error (Unix.ENOENT, _, _) ->
return None
| Unix.Unix_error (Unix.EACCES, _, _) ->
Lwt_log.ign_info_f "cannot open file '%s' in read and write mode: %s" fn (Unix.error_message Unix.EACCES);
Lwt.catch (fun () ->
Lwt_unix.openfile fn [Unix.O_RDONLY] 0 >>= fun fd ->
return (Some (fd, false)))
(function
| Unix.Unix_error (Unix.ENOENT, _, _) ->
return None
| exn -> Lwt.fail exn)
| exn -> Lwt.fail exn)
let load history ?log ?(skip_empty=true) ?(skip_dup=true) fn =
history.old_count <- history.length;
if history.max_entries = 0 || history.max_size = 0 then
return ()
else begin
let log =
match log with
| Some func ->
func
| None ->
fun line msg ->
Lwt_log.ign_error_f ~section "File %S, at line %d: %s" fn line msg
in
open_history fn >>= fun history_file ->
match history_file with
| None ->
return ()
| Some (fd, locked) ->
let ic = Lwt_io.of_fd ~mode:Lwt_io.input fd in
Lwt.finalize (fun () ->
let rec aux num =
Lwt_io.read_line_opt ic >>= fun line ->
match line with
| None ->
return ()
| Some line ->
(try
let line= Zed_string.of_utf8 line in
let entry, size = unescape line in
if not (skip_empty && is_empty entry) && not (skip_dup && is_dup history entry) then begin
add_aux history entry size;
history.old_count <- history.length
end
with
| Zed_string.Invalid (msg, _)-> log num msg
| Zed_utf8.Invalid (msg, _)-> log num msg
);
aux (num + 1)
in
aux 1)
(fun () ->
(if locked then safe_lockf fn fd Lwt_unix.F_ULOCK 0 else return true) >>= fun _ ->
Lwt_unix.close fd)
end
let rec skip_nodes node count =
if count = 0 then
node
else
skip_nodes node.prev (count - 1)
let rec copy history marker node skip_empty skip_dup =
if node != marker then begin
let line = escape node.data in
if not (skip_empty && is_empty line) && not (skip_dup && is_dup history line) then
add_aux history line node.size;
copy history marker node.prev skip_empty skip_dup
end
let rec dump_entries oc marker node =
if node == marker then
return ()
else begin
Lwt_io.write_line oc (Zed_string.to_utf8 node.data) >>= fun () ->
dump_entries oc marker node.prev
end
let save history ?max_size ?max_entries ?(skip_empty=true) ?(skip_dup=true) ?(append=true) ?(perm=0o666) fn =
let max_size =
match max_size with
| Some m -> m
| None -> history.max_size
and max_entries =
match max_entries with
| Some m -> m
| None -> history.max_entries
in
let history_save = create ~max_size ~max_entries [] in
if history_save.max_size = 0 || history_save.max_entries = 0 || (not append && history.old_count = history.length) then
Lwt_unix.openfile fn [Unix.O_CREAT; Unix.O_TRUNC] perm >>= Lwt_unix.close
else if append && history.old_count = history.length then
return ()
else begin
Lwt_unix.openfile fn [Unix.O_CREAT; Unix.O_RDWR] perm >>= fun fd ->
safe_lockf fn fd Unix.F_LOCK 0 >>= fun locked ->
Lwt.finalize (fun () ->
begin
if append then begin
let ic = Lwt_io.of_fd ~mode:Lwt_io.input ~close:return fd in
let rec aux count =
Lwt_io.read_line_opt ic >>= fun line ->
match line with
| None ->
history_save.old_count <- history_save.length;
Lwt_io.close ic >>= fun () ->
return count
| Some line ->
let line= Zed_string.unsafe_of_utf8 line in
if not (skip_empty && is_empty line) && not (skip_dup && is_dup history_save line) then
add_aux history_save line (Zed_string.bytes line + 1);
aux (count + 1)
in
aux 0
end else
return 0
end >>= fun count ->
let marker = history.entries.prev in
copy history_save marker (skip_nodes marker.prev history.old_count) skip_empty skip_dup;
begin
if append && history_save.old_count = count then
return count
else
Lwt_unix.lseek fd 0 Unix.SEEK_SET >>= fun _ ->
Lwt_unix.ftruncate fd 0 >>= fun () ->
return 0
end >>= fun to_skip ->
let oc = Lwt_io.of_fd ~mode:Lwt_io.output ~close:return fd in
let marker = history_save.entries.prev in
dump_entries oc marker (skip_nodes marker.prev to_skip) >>= fun () ->
Lwt_io.close oc >>= fun () ->
history.old_count <- history.length;
return ())
(fun () ->
(if locked then safe_lockf fn fd Lwt_unix.F_ULOCK 0 else return true) >>= fun _ ->
Lwt_unix.close fd)
end