-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathocsigen_lib_base.ml
429 lines (359 loc) · 11.8 KB
/
ocsigen_lib_base.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
(* Ocsigen
* Copyright (C) 2005-2008 Vincent Balat, Stéphane Glondu
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
exception Ocsigen_Internal_Error of string
exception Input_is_too_large
exception Ocsigen_Bad_Request
exception Ocsigen_Request_too_long
external id : 'a -> 'a = "%identity"
let ( >>= ) = Lwt.bind
let ( >|= ) = Lwt.( >|= )
let ( !! ) = Lazy.force
let ( |> ) x f = f x
let ( @@ ) f x = f x
let comp f g x = f (g x)
let curry f x y = f (x, y)
let uncurry f (x, y) = f x y
type poly
external to_poly : 'a -> poly = "%identity"
external from_poly : poly -> 'a = "%identity"
module Tuple3 = struct
let fst (a, _, _) = a
let snd (_, a, _) = a
let thd (_, _, a) = a
end
type yesnomaybe = Yes | No | Maybe
type ('a, 'b) leftright = Left of 'a | Right of 'b
let advert =
"Page generated by OCaml with Ocsigen.
See http://ocsigen.org/ and http://caml.inria.fr/ for information"
(*****************************************************************************)
module Option = struct
type 'a t = 'a option
let map f = function Some x -> Some (f x) | None -> None
let get f = function Some x -> x | None -> f ()
let get' a = function Some x -> x | None -> a
let iter f = function Some x -> f x | None -> ()
let return x = Some x
let bind opt k = match opt with Some x -> k x | None -> None
let to_list = function None -> [] | Some v -> [v]
module Lwt = struct
let map f = function
| Some x -> f x >>= fun v -> Lwt.return (Some v)
| None -> Lwt.return None
let get f = function Some x -> Lwt.return x | None -> f ()
let get' a = function Some x -> Lwt.return x | None -> a
let iter f = function Some x -> f x | None -> Lwt.return ()
let bind opt k = match opt with Some x -> k x | None -> Lwt.return None
end
end
module List = struct
include List
let map_filter f l =
let rec aux acc = function
| [] -> acc
| t :: q -> (
match f t with None -> aux acc q | Some r -> aux (r :: acc) q)
in
List.rev (aux [] l)
let rec remove_first_if_any a = function
| [] -> []
| b :: l when a = b -> l
| b :: l -> b :: remove_first_if_any a l
let rec remove_first_if_any_q a = function
| [] -> []
| b :: l when a == b -> l
| b :: l -> b :: remove_first_if_any_q a l
let rec remove_first a = function
| [] -> raise Not_found
| b :: l when a = b -> l
| b :: l -> b :: remove_first a l
let rec remove_first_q a = function
| [] -> raise Not_found
| b :: l when a == b -> l
| b :: l -> b :: remove_first_q a l
let rec remove_all a = function
| [] -> []
| b :: l when a = b -> remove_all a l
| b :: l -> b :: remove_all a l
let rec remove_all_q a = function
| [] -> []
| b :: l when a == b -> remove_all_q a l
| b :: l -> b :: remove_all_q a l
let rec remove_all_assoc a = function
| [] -> []
| (b, _) :: l when a = b -> remove_all_assoc a l
| b :: l -> b :: remove_all_assoc a l
let rec remove_all_assoc_q a = function
| [] -> []
| (b, _) :: l when a == b -> remove_all_assoc_q a l
| b :: l -> b :: remove_all_assoc_q a l
let rec last = function [] -> raise Not_found | [b] -> b | _ :: l -> last l
let rec assoc_remove a = function
| [] -> raise Not_found
| (b, c) :: l when a = b -> c, l
| b :: l ->
let v, ll = assoc_remove a l in
v, b :: ll
let rec is_prefix l1 l2 =
match l1, l2 with
| [], _ -> true
| a :: ll1, b :: ll2 when a = b -> is_prefix ll1 ll2
| _ -> false
let rec chop n xs =
if n <= 0
then xs
else match xs with [] -> [] | _x :: xs -> chop (n - 1) xs
let rec split_at n xs =
if n <= 0
then [], xs
else
match xs with
| [] -> [], []
| x :: xs ->
let l, r = split_at (n - 1) xs in
x :: l, r
end
(*****************************************************************************)
(* circular lists *)
module Clist : sig
type 'a t
type 'a node
val make : 'a -> 'a node
val create : unit -> 'a t
val insert : 'a t -> 'a node -> unit
val remove : 'a node -> unit
val value : 'a node -> 'a
val in_list : 'a node -> bool
val is_empty : 'a t -> bool
val iter : ('a -> unit) -> 'a t -> unit
val fold_left : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'a
end = struct
type 'a node =
{content : 'a option; mutable prev : 'a node; mutable next : 'a node}
type 'a t = 'a node
let make' c =
let rec x = {content = c; prev = x; next = x} in
x
let make c = make' (Some c)
let create () = make' None
let insert p x =
let n = p.next in
p.next <- x;
x.prev <- p;
x.next <- n;
n.prev <- x
let remove x =
let p = x.prev in
let n = x.next in
p.next <- n;
n.prev <- p;
x.next <- x;
x.prev <- x
let in_list x = x.next != x
let is_empty set = set.next == set
let value c =
match c.content with None -> failwith "Clist.value" | Some c -> c
let rec iter f (node : 'a t) =
match node.next.content with Some c -> f c; iter f node.next | None -> ()
let rec fold_left f a (node : 'a t) =
match node.next.content with
| Some c -> fold_left f (f a c) node.next
| None -> a
end
(*****************************************************************************)
module Int = struct
module Table = Map.Make (struct
type t = int
let compare = compare
end)
end
(*****************************************************************************)
module String_base = struct
include String
(* Returns a copy of the string from beg to endd,
removing spaces at the beginning and at the end *)
let remove_spaces s beg endd =
let rec find_not_space s i step =
if i > endd || beg > i
then i
else if s.[i] = ' '
then find_not_space s (i + step) step
else i
in
let first = find_not_space s beg 1 in
let last = find_not_space s endd (-1) in
if last >= first then String.sub s first (1 + last - first) else ""
(* Cut a string to the next separator *)
let basic_sep char s =
try
let seppos = String.index s char in
( String.sub s 0 seppos
, String.sub s (seppos + 1) (String.length s - seppos - 1) )
with Invalid_argument _ -> raise Not_found
(* Cut a string to the next separator, removing spaces.
Raises Not_found if the separator cannot be found.
*)
let sep char s =
let len = String.length s in
let seppos = String.index s char in
remove_spaces s 0 (seppos - 1), remove_spaces s (seppos + 1) (len - 1)
(* splits a string, for ex "azert, sdfmlskdf, dfdsfs" *)
let split ?(multisep = false) char s =
let longueur = String.length s in
let rec aux deb =
if deb >= longueur
then []
else
try
let firstsep = String.index_from s deb char in
if multisep && firstsep = deb
then aux (deb + 1)
else remove_spaces s deb (firstsep - 1) :: aux (firstsep + 1)
with Not_found -> [remove_spaces s deb (longueur - 1)]
in
aux 0
let may_append s1 ~sep = function "" -> s1 | s2 -> s1 ^ sep ^ s2
let may_concat s1 ~sep s2 =
match s1, s2 with
| _, "" -> s1
| "", _ -> s2
| _ -> String.concat sep [s1; s2]
(* returns the index of the first difference between s1 and s2,
starting from n and ending at last.
returns (last + 1) if no difference is found.
*)
let rec first_diff s1 s2 n last =
try
if s1.[n] = s2.[n]
then if n = last then last + 1 else first_diff s1 s2 (n + 1) last
else n
with Invalid_argument _ -> n
module Table = Map.Make (String)
module Set = Set.Make (String)
module Map = Map.Make (String)
end
(*****************************************************************************)
module Url_base = struct
type t = string
type uri = string
type path = string list
let make_absolute_url ~https ~host ~port uri =
(if https then "https://" else "http://")
^ host
^ (if (port = 80 && not https) || (https && port = 443)
then ""
else ":" ^ string_of_int port)
^ uri
let remove_dotdot =
(* removes "../" *)
let rec aux = function
| [] -> []
| [""] as l ->
l
(* | ""::l -> aux l *)
(* we do not remove "//" any more,
because of optional suffixes in Eliom *)
| ".." :: l -> aux l
| a :: l -> a :: aux l
in
function [] -> [] | "" :: l -> "" :: aux l | l -> aux l
let remove_end_slash s =
try
if s.[String.length s - 1] = '/'
then String.sub s 0 (String.length s - 1)
else s
with Invalid_argument _ -> s
let remove_internal_slash u =
let rec aux = function
| [] -> []
| [a] -> [a]
| "" :: l -> aux l
| a :: l -> a :: aux l
in
match u with [] -> [] | a :: l -> a :: aux l
let change_empty_list = function
| [] -> [""] (* It is not possible to register an empty URL *)
| l -> l
let rec add_end_slash_if_missing = function
| [] -> [""]
| [""] as a -> a
| a :: l -> a :: add_end_slash_if_missing l
let rec remove_slash_at_end = function
| [] | [""] -> []
| a :: l -> a :: remove_slash_at_end l
let remove_slash_at_beginning = function
| [] -> []
| [""] -> [""]
| "" :: l -> l
| l -> l
let rec is_prefix_skip_end_slash l1 l2 =
match l1, l2 with
| [""], _ | [], _ -> true
| a :: ll1, b :: ll2 when a = b -> is_prefix_skip_end_slash ll1 ll2
| _ -> false
let split_fragment s =
try
let pos = String.index s '#' in
( String.sub s 0 pos
, Some (String.sub s (pos + 1) (String.length s - 1 - pos)) )
with Not_found -> s, None
let join_path = function [""] -> "/" | l -> String.concat "/" l
(* Taken from Ocamlnet 4.1.2 *)
let split_path s =
let l = String.length s in
let rec collect_words k =
let k' = try String.index_from s k '/' with Not_found -> l in
let word = String.sub s k (k' - k) in
if k' >= l then [word] else word :: collect_words (k' + 1)
in
match collect_words 0 with [""] -> [] | [""; ""] -> [""] | other -> other
(* Taken from Ocamlnet 4.1.2 *)
let norm_path l =
let rec remove_slash_slash l first =
match l with
| [""] -> [""]
| [""; ""] when first -> [""]
| "" :: l' when not first -> remove_slash_slash l' false
| x :: l' -> x :: remove_slash_slash l' false
| [] -> []
in
let rec remove_dot l first =
match l with
| ["."] | ["."; ""] -> if first then [] else [""]
| "." :: x :: l' -> remove_dot (x :: l') false
| x :: l' -> x :: remove_dot l' false
| [] -> []
in
let rec remove_dot_dot_once l first =
match l with
| [x; ".."] when x <> "" && x <> ".." && not first -> [""]
| x :: ".." :: l' when x <> "" && x <> ".." -> l'
| x :: l' -> x :: remove_dot_dot_once l' false
| [] -> raise Not_found
in
let rec remove_dot_dot l =
try
let l' = remove_dot_dot_once l true in
remove_dot_dot l'
with Not_found -> l
in
let l' = remove_dot_dot (remove_dot (remove_slash_slash l true) true) in
match l' with [".."] -> [".."; ""] | [""; ""] -> [""] | _ -> l'
end
(*****************************************************************************)
let debug = prerr_endline