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
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2010 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
exception Empty = Stack.Empty
type 'a t = {
mutable stack : 'a list;
mutable context : ('a list * 'a list) option
}
let create () = { stack = []; context = None }
let push x s = s.stack <- x :: s.stack
let pop = function
| { stack = [] } -> raise Stack.Empty
| { stack = x::xs } as s -> s.stack <- xs; x
let top = function
| { stack = [] } -> raise Stack.Empty
| { stack = x::_ } -> x
let to_list = function
| { context = None; stack = s } -> s
| { context = Some (a,b); stack = s } -> a @ s @ b
let to_lists = function
| { context = None; stack = s } -> [],s,[]
| { context = Some (a,b); stack = s } -> a,s,b
let find f s = List.find f (to_list s)
let find_map f s =
let rec aux = function
| [] -> raise Not_found
| x :: xs -> match f x with None -> aux xs | Some i -> i
in
aux (to_list s)
type ('b, 'c) seek = ('b, 'c) CSig.seek = Stop of 'b | Next of 'c
let fold_until f accu s =
let rec aux accu = function
| [] -> raise Not_found
| x :: xs -> match f accu x with Stop x -> x | Next i -> aux i xs in
aux accu s.stack
let is_empty = function
| { stack = []; context = None } -> true
| _ -> false
let iter f = function
| { stack = s; context = None } -> List.iter f s
| { stack = s; context = Some(a,b) } ->
List.iter f a; List.iter f s; List.iter f b
let clear s = s.stack <- []; s.context <- None
let length = function
| { stack = s; context = None } -> List.length s
| { stack = s; context = Some(a,b) } ->
List.length a + List.length s + List.length b
let focus s ~cond_top:c_start ~cond_bot:c_stop =
if s.context <> None then raise (Invalid_argument "CStack.focus");
let rec aux (a,s,b) grab = function
| [] -> raise (Invalid_argument "CStack.focus")
| x::xs when not grab ->
if c_start x then aux (a,s,b) true (x::xs)
else aux (x::a,s,b) grab xs
| x::xs ->
if c_stop x then a, x::s, xs
else aux (a,x::s,b) grab xs in
let a, stack, b = aux ([],[],[]) false s.stack in
s.stack <- List.rev stack;
s.context <- Some (List.rev a, b)
let unfocus = function
| { context = None } -> raise (Invalid_argument "CStack.unfocus")
| { context = Some (a,b); stack } as s ->
s.context <- None;
s.stack <- a @ stack @ b
let focused { context } = context <> None
|