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
|
(*
* Copyright (C) 2006-2009 Citrix Systems Inc.
*
* 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; version 2.1 only. with the special
* exception on linking described in file LICENSE.
*
* 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.
*)
module String = struct include String
let of_char c = String.make 1 c
let init n f =
let string = make n (f 0) in
for i=1 to n-1 do
string.[i] <- f i;
done;
string
let map f string =
init (length string) (fun i -> f string.[i])
let rev_map f string =
let n = length string in
init n (fun i -> f string.[n - i - 1])
let rev_iter f string =
for i = length string - 1 downto 0 do
f (string.[i])
done
let fold_left f accu string =
let accu = ref accu in
for i = 0 to length string - 1 do
accu := f !accu string.[i]
done;
!accu
let iteri f string =
for i = 0 to length string - 1 do
f i string.[i]
done
let fold_right f string accu =
let accu = ref accu in
for i = length string - 1 downto 0 do
accu := f string.[i] !accu
done;
!accu
let explode string =
fold_right (fun h t -> h :: t) string []
let implode list =
concat "" (List.map of_char list)
(** True if string 'x' ends with suffix 'suffix' *)
let endswith suffix x =
let x_l = String.length x and suffix_l = String.length suffix in
suffix_l <= x_l && String.sub x (x_l - suffix_l) suffix_l = suffix
(** True if string 'x' starts with prefix 'prefix' *)
let startswith prefix x =
let x_l = String.length x and prefix_l = String.length prefix in
prefix_l <= x_l && String.sub x 0 prefix_l = prefix
(** Returns true for whitespace characters, false otherwise *)
let isspace = function
| ' ' | '\n' | '\r' | '\t' -> true
| _ -> false
(** Removes all the characters from the ends of a string for which the predicate is true *)
let strip predicate string =
let rec remove = function
| [] -> []
| c :: cs -> if predicate c then remove cs else c :: cs in
implode (List.rev (remove (List.rev (remove (explode string)))))
let escaped ?rules string = match rules with
| None -> String.escaped string
| Some rules ->
let aux h t = (try List.assoc h rules
with Not_found -> of_char h) :: t in
concat "" (fold_right aux string [])
(** Take a predicate and a string, return a list of strings separated by
runs of characters where the predicate was true (excluding those characters from the result) *)
let split_f p str =
let not_p = fun x -> not (p x) in
let rec split_one p acc = function
| [] -> List.rev acc, []
| c :: cs -> if p c then split_one p (c :: acc) cs else List.rev acc, c :: cs in
let rec alternate acc drop chars =
if chars = [] then acc else
begin
let a, b = split_one (if drop then p else not_p) [] chars in
alternate (if drop then acc else a :: acc) (not drop) b
end in
List.rev (List.map implode (alternate [] true (explode str)))
let rec split ?limit:(limit=(-1)) c s =
let i = try String.index s c with Not_found -> -1 in
let nlimit = if limit = -1 || limit = 0 then limit else limit - 1 in
if i = -1 || nlimit = 0 then
[ s ]
else
let a = String.sub s 0 i
and b = String.sub s (i + 1) (String.length s - i - 1) in
a :: (split ~limit: nlimit c b)
let rtrim s =
let n = String.length s in
if String.get s (n - 1) = '\n' then
String.sub s 0 (n - 1)
else
s
(** has_substr str sub returns true if sub is a substring of str. Simple, naive, slow. *)
let has_substr str sub =
if String.length sub > String.length str then false else
begin
let result=ref false in
for start = 0 to (String.length str) - (String.length sub) do
if String.sub str start (String.length sub) = sub then result := true
done;
!result
end
(** find all occurences of needle in haystack and return all their respective index *)
let find_all needle haystack =
let m = String.length needle and n = String.length haystack in
if m > n then
[]
else (
let i = ref 0 and found = ref [] in
while !i < (n - m + 1)
do
if (String.sub haystack !i m) = needle then (
found := !i :: !found;
i := !i + m
) else (
incr i
)
done;
List.rev !found
)
(* replace all @f substring in @s by @t *)
let replace f t s =
let indexes = find_all f s in
let n = List.length indexes in
if n > 0 then (
let len_f = String.length f and len_t = String.length t in
let new_len = String.length s + (n * len_t) - (n * len_f) in
let new_s = String.make new_len '\000' in
let orig_offset = ref 0 and dest_offset = ref 0 in
List.iter (fun h ->
let len = h - !orig_offset in
String.blit s !orig_offset new_s !dest_offset len;
String.blit t 0 new_s (!dest_offset + len) len_t;
orig_offset := !orig_offset + len + len_f;
dest_offset := !dest_offset + len + len_t;
) indexes;
String.blit s !orig_offset new_s !dest_offset (String.length s - !orig_offset);
new_s
) else
s
let filter_chars s valid =
let badchars = ref false in
let buf = Buffer.create 0 in
for i = 0 to String.length s - 1
do
if !badchars then (
if valid s.[i] then
Buffer.add_char buf s.[i]
) else (
if not (valid s.[i]) then (
Buffer.add_substring buf s 0 i;
badchars := true
)
)
done;
if !badchars then Buffer.contents buf else s
let map_unlikely s f =
let changed = ref false in
let m = ref 0 in
let buf = Buffer.create 0 in
for i = 0 to String.length s - 1
do
match f s.[i] with
| None -> ()
| Some n ->
changed := true;
Buffer.add_substring buf s !m (i - !m);
Buffer.add_string buf n;
m := i + 1
done;
if !changed then (
Buffer.add_substring buf s !m (String.length s - !m);
Buffer.contents buf
) else
s
let sub_to_end s start =
let length = String.length s in
String.sub s start (length - start)
end
|