-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjconfig.ml
54 lines (47 loc) · 1.59 KB
/
jconfig.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
(*
* Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
* Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Jesper Andersen
* This file is part of Coccinelle.
*
* Coccinelle is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, according to version 2 of the License.
*
* Coccinelle is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
*
* The authors reserve the right to distribute this or future versions of
* Coccinelle under other licenses.
*)
(* global configuration used everywhere *)
let verbose = ref false
let print_abs = ref false
let read_generic = ref false
let useless_abs = ref false
let to_print = ref false
let include_larger = ref false
let uniq_local = ref true
let (+>) o f = f o
let for_some n f ls =
let rec loop n ls =
n = 0 ||
match ls with
| x :: xs when f x -> loop (n - 1) xs
| _ :: xs -> loop n xs
| [] -> false in
loop n ls
let counter_tick counter total =
begin
ANSITerminal.save_cursor ();
ANSITerminal.print_string
[ANSITerminal.on_default](
counter +> string_of_int
^ "/" ^ total +> string_of_int);
ANSITerminal.restore_cursor();
flush stdout;
end