Source file parser_components.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
open CCParse
let alpha_string : string t = chars1_if is_alpha
let any_string : string t = chars_if (fun _ -> true)
let take_space : string t = chars_if is_space
let ident_string ~(reserved_words : string list) : string t =
let reserved_words = List.map String.lowercase_ascii reserved_words in
alpha_string
>>= fun s ->
if List.mem (String.lowercase_ascii s) reserved_words then
failf "\"%s\" is a reserved word" s
else return s
let skip_non_num_string ~end_markers : unit t =
skip_chars (function
| '0' .. '9' -> false
| c -> (
match end_markers with
| None -> true
| Some x -> not (String.contains x c) ))
let nat_zero : int t =
chars1_if (function '0' .. '9' -> true | _ -> false)
>>= fun s ->
try return (int_of_string s)
with _ -> fail (Printf.sprintf "Integer %s is out of range" s)
let float_non_neg : float t =
chars1_if (function '0' .. '9' -> true | _ -> false)
>>= fun x ->
try_ (char '.' *> chars1_if (function '0' .. '9' -> true | _ -> false))
<|> return "0"
>>= fun y ->
let s = x ^ "." ^ y in
try return (float_of_string s)
with _ -> fail (Printf.sprintf "Float %s is out of range" s)
let comma = char ','
let dot = char '.'
let hyphen = char '-'
let non_square_bracket_string =
chars_if (function '[' | ']' -> false | _ -> true)
let non_parenthesis_string =
chars_if (function '(' | ')' -> false | _ -> true)
let non_space_string = chars_if (fun c -> not (is_space c))
let sep_by_comma (p : 'a t) : 'a list t =
sep ~by:(skip_space *> comma *> skip_space) p
let sep_by_comma1 (p : 'a t) : 'a list t =
sep1 ~by:(skip_space *> comma *> skip_space) p
let option (default : 'a) p : 'a t = try_ p <|> return default
let skip_space1 = char_if is_space *> skip_space
let get_first_line_error_msg (s : string) : string =
List.hd (String.split_on_char '\n' s)
let map_first_line_error_msg (x : ('a, string) result) : ('a, string) result =
Result.map_error get_first_line_error_msg x
let parse_string (p : 'a t) s : ('a, string) result =
parse_string p s |> map_first_line_error_msg
let shift_pos_of_error_msg ~(incre : int) (s : string) : string =
try
Scanf.sscanf s "%[^,], pos: %d" (fun s pos ->
Printf.sprintf "%s, pos: %d" s (pos + incre))
with _ -> s
let sep_res_seq ~by ~end_markers (p : 'a t) : ('a, string) result Seq.t t =
sep ~by:(char by)
( get_cnum
>>= fun cnum ->
chars1_if (fun c -> c <> by && not (String.contains end_markers c))
>>= fun s -> return (cnum, s) )
>>= fun l ->
return
( l
|> List.to_seq
|> Seq.map (fun (cnum, s) ->
s
|> parse_string
( p
>>= fun x ->
try_ eoi *> return x
<|> ( get_cnum
>>= fun cnum ->
any_string
>>= fun s -> failf "Invalid syntax: %s, pos: %d" s cnum ) )
|> Result.map_error (fun s -> shift_pos_of_error_msg ~incre:cnum s))
)
let sep_res ~by ~end_markers (p : 'a t) : ('a, string) result list t =
sep_res_seq ~by ~end_markers p >>= fun s -> return (List.of_seq s)
let sep_fail_on_first_fail ~by ~end_markers (p : 'a t) : 'a list t =
sep_res_seq ~by ~end_markers p
>>= fun s ->
match Seq_utils.find_first_error_or_return_whole_list s with
| Ok l -> return l
| Error s -> fail s
let chainl1 x op =
let rec aux a =
try_ (skip_space *> op <* skip_space)
>>= (fun f -> x >>= fun b -> aux (f a b))
<|> return a
in
x >>= aux
let string_of_pos pos =
let lnum, cnum = pos in
Printf.sprintf "%d:%d" lnum cnum
let invalid_syntax ~text ~pos =
failf "Invalid syntax: %s, pos: %s" text (string_of_pos pos)
let ~end_markers =
skip_space *> get_pos
>>= fun pos ->
chars_if (fun c -> not (String.contains end_markers c))
>>= fun s -> match s with "" -> nop | text -> invalid_syntax ~text ~pos