Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
uuseg.ml1 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(*--------------------------------------------------------------------------- Copyright (c) 2014 The uuseg programmers. All rights reserved. Distributed under the ISC license, see terms at the end of the file. ---------------------------------------------------------------------------*) let unicode_version = Uucp.unicode_version (* Segmenters *) type 'a segmenter = { name : string; create : unit -> 'a; copy : 'a -> 'a; mandatory : 'a -> bool; add : 'a -> [ `Uchar of Uchar.t | `Await | `End ] -> [ `Boundary | `Uchar of Uchar.t | `Await | `End ] } type custom = C : 'a segmenter -> custom type boundary = [ `Grapheme_cluster | `Word | `Sentence | `Line_break | `Custom of custom ] let pp_boundary ppf b = match (b :> boundary) with | `Grapheme_cluster -> Format.fprintf ppf "`Grapheme_cluster" | `Word -> Format.fprintf ppf "`Word" | `Sentence -> Format.fprintf ppf "`Sentence" | `Line_break -> Format.fprintf ppf "`Line_break" | `Custom (C s) -> Format.fprintf ppf "`Custom %s" s.name (* Built-in segmenters *) let mandatory_default _ = true let grapheme_cluster = C { name = "Uuseg.grapheme_cluster"; create = Uuseg_grapheme_cluster.create; copy = Uuseg_grapheme_cluster.copy; mandatory = mandatory_default; add = Uuseg_grapheme_cluster.add; } let word = C { name = "Uuseg.word"; create = Uuseg_word.create; copy = Uuseg_word.copy; mandatory = mandatory_default; add = Uuseg_word.add; } let sentence = C { name = "Uuseg.sentence"; create = Uuseg_sentence.create; copy = Uuseg_sentence.copy; mandatory = mandatory_default; add = Uuseg_sentence.add; } let line_break = C { name = "Uuseg.line_break"; create = Uuseg_line_break.create; copy = Uuseg_line_break.copy; mandatory = Uuseg_line_break.mandatory; add = Uuseg_line_break.add; } (* Generic segmenter inteface *) type t = Seg : boundary * 'a * 'a segmenter -> t type ret = Uuseg_base.ret let create boundary = let (C seg) = match boundary with | `Grapheme_cluster -> grapheme_cluster | `Word -> word | `Sentence -> sentence | `Line_break -> line_break | `Custom c -> c in Seg ((boundary :> boundary), seg.create (), seg) let boundary (Seg (boundary, _, _)) = boundary let add (Seg (_, s, seg)) add = seg.add s add let mandatory (Seg (_, s, seg)) = seg.mandatory s let copy (Seg (b, s, seg)) = Seg (b, seg.copy s, seg) let pp_ret = Uuseg_base.pp_ret (* Custom segmenters *) let custom ?(mandatory = mandatory_default) ~name ~create ~copy ~add () = C { name; create; copy; mandatory; add } let err_exp_await = Uuseg_base.err_exp_await let err_ended = Uuseg_base.err_ended (*--------------------------------------------------------------------------- Copyright (c) 2014 The uuseg programmers Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ---------------------------------------------------------------------------*)