package camomile

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file uReStr.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
# 1 "Camomile/public/uReStr.ml"
(** Module for a Str-like regular expression syntax *)

(* Copyright (C) 2003 Yamagata Yoriyuki. distributed with LGPL *)

(* This library 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; either version 2 of *)
(* the License, or (at your option) any later version. *)

(* As a special exception to the GNU Library General Public License, you *)
(* may link, statically or dynamically, a "work that uses this library" *)
(* with a publicly distributed version of this library to produce an *)
(* executable file containing portions of this library, and distribute *)
(* that executable file under terms of your choice, without any of the *)
(* additional requirements listed in clause 6 of the GNU Library General *)
(* Public License. By "a publicly distributed version of this library", *)
(* we mean either the unmodified Library as distributed by the authors, *)
(* or a modified version of this library that is distributed under the *)
(* conditions defined in clause 3 of the GNU Library General Public *)
(* License. This exception does not however invalidate any other reasons *)
(* why the executable file might be covered by the GNU Library General *)
(* Public License . *)

(* This library 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 library; if not, write to the Free Software *)
(* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *)
(* USA *)

(* You can contact the authour by sending email to *)
(* yoriyuki.y@gmail.com *)

module type Interface = sig
  type regexp = URe.regexp

  (** Theses functions are similar to Str. *)

  val regexp : string -> regexp
  val quote : string -> string
  val regexp_string : string -> regexp

  module type Type = sig 
    type text
    type index
    type compiled_regexp

    module SubText : 
      SubText.Type with type ur_text = text and type ur_index = index

    (** Compile regular expressions. *)
    val compile : regexp -> compiled_regexp

    (** [regexp_match ?sem r t i] tries matching [r] and substrings
        of [t] beginning from [i].  If match successes,  [Some g] is 
        returned where [g] is the array containing the matched 
        string of [n]-th group in the [n]-element.  
        The matched string of the whole [r] is stored in the [0]-th element.  
        If matching fails, [None] is returned. *)
    val regexp_match : ?sem:URe.match_semantics ->
      compiled_regexp -> text -> index -> SubText.t option array option

    (** [string_match r t i] tests whether [r] can match a substring
        of [t] beginning from [i]. *)
    val string_match : compiled_regexp -> text -> index -> bool

    (** [search_forward ?sem r t i] searches a substring of [t]
        matching [r] from [i].  The returned value is similar to 
        {!URe.Type.regexp_match}. *)
    val search_forward : ?sem:URe.match_semantics ->
      compiled_regexp -> text -> index -> SubText.t option array option
  end

  module Make (Text : UnicodeString.Type) : 
    Type with type text = Text.t and type index = Text.index
end

module Configure (Config : ConfigInt.Type) = struct

  type regexp = URe.regexp

  module Unidata = Unidata.Make(Config)
  module UCharInfo = UCharInfo.Make(Config)

  module type Type = URe.Type

  let property_to_set name =
    if name = "Any" then USet.compl (USet.empty) else
      try 
        let cat = Unidata.cat_of_name name in
        let m = UCharInfo.load_general_category_map () in
        UMap.map_to_set ((=) cat) m
      with Not_found -> try 
          let script = Unidata.script_of_name name in
          let m = UCharInfo.load_script_map () in
          UMap.map_to_set ((=) script) m
        with Not_found ->
          UCharInfo.load_property_set_by_name name 

  let regexp s =
    let lexbuf = Lexing.from_string s in
    let tree = UReStrParser.start UReStrLexer.token lexbuf in
    let rec g = function
        `Set s -> s
      | `Property name -> property_to_set name
      | `Intr (n1, n2) -> USet.inter (g n1) (g n2)
      | `Union (n1, n2) -> USet.union (g n1) (g n2)
      | `Diff (n1, n2) -> USet.diff (g n1) (g n2)
      | `Compl n -> USet.compl (g n) in
    let rec f = function
        `Alt (r1, r2) -> `Alt (f r1, f r2)
      | `Seq (r1, r2) -> `Seq (f r1, f r2)
      | `Rep r -> `Rep (f r)
      | `Repn (r, n, m) -> `Repn (f r, n, m)
      | `After r -> `After (f r)
      | `Before r -> `Before (f r)
      | `Group r -> `Group (f r)
      | `SetNotation set_notation -> `Set (g set_notation)
      | `Set s -> `Set s
      | `String ulist -> `String ulist
      | (`Epsilon | `OneChar | `BoS | `EoS) as r -> r in
    f tree

  let quote s =
    let b = Buffer.create 8 in
    String.iter (fun c ->
        match c with
          '.' -> Buffer.add_string b "\\." 
        | '*' -> Buffer.add_string b "\\*"
        | '+' -> Buffer.add_string b "\\+"
        | '?' -> Buffer.add_string b "\\?"
        | '[' -> Buffer.add_string b "\\["
        | ']' -> Buffer.add_string b "\\]"
        | '^' -> Buffer.add_string b "\\^"
        | '$' -> Buffer.add_string b "\\$"
        | '\\' -> Buffer.add_string b "\\\\"
        | c -> Buffer.add_char b c)
      s;
    Buffer.contents b

  let regexp_string s = 
    let b = ref [] in
    UTF8.iter (fun u -> b := u :: !b) s;
    `String (List.rev !b)

  module Make (Text : UnicodeString.Type) = URe.Make(Text)
end
OCaml

Innovation. Community. Security.