package camomile

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

Source file uCharInfo.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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
# 1 "Camomile/public/uCharInfo.ml"
(* Copyright (C) 2002 Yamagata Yoriyuki.*)
(*               2010 Pierre Chambart *)

(* 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 Type = sig

  type general_category_type =
    [ `Lu
    | `Ll
    | `Lt
    | `Mn
    | `Mc
    | `Me
    | `Nd
    | `Nl
    | `No
    | `Zs
    | `Zl
    | `Zp
    | `Cc
    | `Cf
    | `Cs
    | `Co
    | `Cn
    | `Lm
    | `Lo
    | `Pc
    | `Pd
    | `Ps
    | `Pe
    | `Pi
    | `Pf
    | `Po
    | `Sm
    | `Sc
    | `Sk
    | `So ]

  val general_category : UChar.t -> general_category_type
  val load_general_category_map : unit -> general_category_type UMap.t

  type character_property_type =
    [ `Math
    | `Alphabetic
    | `Lowercase
    | `Uppercase
    | `ID_Start
    | `ID_Continue
    | `XID_Start
    | `XID_Continue
    | `Default_Ignorable_Code_Point
    | `Grapheme_Extend
    | `Grapheme_Base
    | `Bidi_Control
    | `White_Space
    | `Hyphen
    | `Quotation_Mark
    | `Terminal_Punctuation
    | `Other_Math
    | `Hex_Digit
    | `Ascii_Hex_Digit
    | `Other_Alphabetic
    | `Ideographic
    | `Diacritic
    | `Extender
    | `Other_Lowercase
    | `Other_Uppercase
    | `Noncharacter_Code_Point
    | `Other_Grapheme_Extend
    | `Grapheme_Link
    | `IDS_Binary_Operator
    | `IDS_Trinary_Operator
    | `Radical
    | `Unified_Ideograph
    | `Other_default_Ignorable_Code_Point
    | `Deprecated
    | `Soft_Dotted
    | `Logical_Order_Exception ]

  val load_property_tbl : character_property_type -> UCharTbl.Bool.t

  val load_property_tbl_by_name : string -> UCharTbl.Bool.t

  val load_property_set : character_property_type -> USet.t

  val load_property_set_by_name : string -> USet.t

  type script_type =
    [ `Common
    | `Inherited
    | `Latin
    | `Greek
    | `Cyrillic
    | `Armenian
    | `Hebrew
    | `Arabic
    | `Syriac
    | `Thaana
    | `Devanagari
    | `Bengali
    | `Gurmukhi
    | `Gujarati
    | `Oriya
    | `Tamil
    | `Telugu
    | `Kannada
    | `Malayalam
    | `Sinhala
    | `Thai
    | `Lao
    | `Tibetan
    | `Myanmar
    | `Georgian
    | `Hangul
    | `Ethiopic
    | `Cherokee
    | `Canadian_Aboriginal
    | `Ogham
    | `Runic
    | `Khmer
    | `Mongolian
    | `Hiragana
    | `Katakana
    | `Bopomofo
    | `Han
    | `Yi
    | `Old_Italic
    | `Gothic
    | `Deseret
    | `Tagalog
    | `Hanunoo
    | `Buhid
    | `Tagbanwa ]

  val script : UChar.t -> script_type
  val load_script_map : unit -> script_type UMap.t

  type version_type =
    [ `Nc
    | `v1_0
    | `v1_1
    | `v2_0
    | `v2_1
    | `v3_0
    | `v3_1
    | `v3_2 ]

  val age : UChar.t -> version_type

  val older : version_type -> version_type -> bool

  val load_to_lower1_tbl : unit -> UChar.t UCharTbl.t
  val load_to_upper1_tbl : unit -> UChar.t UCharTbl.t
  val load_to_title1_tbl : unit -> UChar.t UCharTbl.t

  type casemap_condition =
    [ `Locale of string
    | `FinalSigma
    | `AfterSoftDotted
    | `MoreAbove
    | `BeforeDot
    | `Not of casemap_condition ]

  type special_casing_property =
    {lower : UChar.t list;
     title : UChar.t list;
     upper : UChar.t list;
     condition : casemap_condition list;}

  val load_conditional_casing_tbl :
    unit -> special_casing_property list UCharTbl.t

  val load_casefolding_tbl : unit -> UChar.t list UCharTbl.t

  val combined_class : UChar.t -> int

  type decomposition_type =
    [ `Canon | `Font | `NoBreak | `Initial | `Medial | `Final |
      `Isolated | `Circle | `Super | `Sub | `Vertical | `Wide | `Narrow |
      `Small | `Square | `Fraction | `Compat ]

  type decomposition_info =
    [ `Canonform
    | `HangulSyllable
    | `Composite of decomposition_type * UChar.t list ]

  val load_decomposition_tbl : unit -> decomposition_info UCharTbl.t

  val load_composition_tbl : unit -> (UChar.t * UChar.t) list UCharTbl.t

  val load_composition_exclusion_tbl : unit -> UCharTbl.Bool.t

end

module Make (Config : ConfigInt.Type) : Type = struct
  include Unidata.Make(Config)

  (* General category *)

  let general_category_tbl : UCharTbl.Bits.t =
    read_data "general_category"

  let general_category u =
    match UCharTbl.Bits.get general_category_tbl u with
      0 ->
      let n = UChar.uint_code u in
      if n >= 0x0f0000 && n <= 0x100000 then `Co else
      if n >= 0xe00000 && n <= 0xff0000 then `Co else
      if n >= 0x60000000 && n <= 0x7f000000 then `Co else `Cn
    | x -> cat_of_num x

  let load_general_category_map () =
    read_data "general_category_map"

  (* character property *)

  type character_property_type =
    [ `Math				(*Derived Core Properties*)
    | `Alphabetic
    | `Lowercase
    | `Uppercase
    | `ID_Start
    | `ID_Continue
    | `XID_Start
    | `XID_Continue
    | `Default_Ignorable_Code_Point
    | `Grapheme_Extend
    | `Grapheme_Base
    | `Bidi_Control			(*Extended Properties*)
    | `White_Space
    | `Hyphen
    | `Quotation_Mark
    | `Terminal_Punctuation
    | `Other_Math
    | `Hex_Digit
    | `Ascii_Hex_Digit
    | `Other_Alphabetic
    | `Ideographic
    | `Diacritic
    | `Extender
    | `Other_Lowercase
    | `Other_Uppercase
    | `Noncharacter_Code_Point
    | `Other_Grapheme_Extend
    | `Grapheme_Link
    | `IDS_Binary_Operator
    | `IDS_Trinary_Operator
    | `Radical
    | `Unified_Ideograph
    | `Other_default_Ignorable_Code_Point
    | `Deprecated
    | `Soft_Dotted
    | `Logical_Order_Exception ]

  let name_of_property p =
    match p with
      `Math -> "Math"
    | `Alphabetic -> "Alphabetic"
    | `Lowercase -> "Lowercase"
    | `Uppercase -> "Uppercase"
    | `ID_Start -> "ID_Start"
    | `ID_Continue -> "ID_Continue"
    | `XID_Start -> "XID_Start"
    | `XID_Continue -> "XID_Continue"
    | `Default_Ignorable_Code_Point -> "Default_Ignorable_Code_Point"
    | `Grapheme_Extend -> "Grapheme_Extend"
    | `Grapheme_Base -> "Grapheme_Base"
    | `Bidi_Control -> "Bidi_Control"
    | `White_Space -> "White_Space"
    | `Hyphen -> "Hyphen"
    | `Quotation_Mark -> "Quotation_Mark"
    | `Terminal_Punctuation -> "Terminal_Punctuation"
    | `Other_Math -> "Other_Math"
    | `Hex_Digit -> "Hex_Digit"
    | `Ascii_Hex_Digit -> "Ascii_Hex_Digit"
    | `Other_Alphabetic -> "Other_Alphabetic"
    | `Ideographic -> "Ideographic"
    | `Diacritic -> "Diacritic"
    | `Extender -> "Extender"
    | `Other_Lowercase -> "Other_Lowercase"
    | `Other_Uppercase -> "Other_Uppercase"
    | `Noncharacter_Code_Point -> "Noncharacter_Code_Point"
    | `Other_Grapheme_Extend -> "Other_Grapheme_Extend"
    | `Grapheme_Link -> "Grapheme_Link"
    | `IDS_Binary_Operator -> "IDS_Binary_Operator"
    | `IDS_Trinary_Operator -> "IDS_Trinary_Operator"
    | `Radical -> "Radical"
    | `Unified_Ideograph -> "Unified_Ideograph"
    | `Other_default_Ignorable_Code_Point -> "Other_default_Ignorable_Code_Point"
    | `Deprecated -> "Deprecated"
    | `Soft_Dotted -> "Soft_Dotted"
    | `Logical_Order_Exception -> "Logical_Order_Exception"

  let property_of_name : string -> character_property_type = function
      "Math" -> `Math
    | "Alphabetic"  -> `Alphabetic
    | "Lowercase" -> `Lowercase
    | "Uppercase" -> `Uppercase
    | "ID_Start" -> `ID_Start
    | "ID_Continue" -> `ID_Continue
    | "XID_Start" -> `XID_Start
    | "XID_Continue" -> `XID_Continue
    | "Default_Ignorable_Code_Point" -> `Default_Ignorable_Code_Point
    | "Grapheme_Extend" -> `Grapheme_Extend
    | "Grapheme_Base" -> `Grapheme_Base
    | "Bidi_Control" -> `Bidi_Control
    | "White_Space" -> `White_Space
    | "Hyphen" -> `Hyphen
    | "Quotation_Mark" -> `Quotation_Mark
    | "Terminal_Punctuation" -> `Terminal_Punctuation
    | "Other_Math" -> `Other_Math
    | "Hex_Digit" -> `Hex_Digit
    | "Ascii_Hex_Digit" -> `Ascii_Hex_Digit
    | "Other_Alphabetic" -> `Other_Alphabetic
    | "Ideographic" -> `Ideographic
    | "Diacritic" -> `Diacritic
    | "Extender" -> `Extender
    | "Other_Lowercase" -> `Other_Lowercase
    | "Other_Uppercase" -> `Other_Uppercase
    | "Noncharacter_Code_Point" -> `Noncharacter_Code_Point
    | "Other_Grapheme_Extend" -> `Other_Grapheme_Extend
    | "Grapheme_Link" -> `Grapheme_Link
    | "IDS_Binary_Operator" -> `IDS_Binary_Operator
    | "IDS_Trinary_Operator" -> `IDS_Trinary_Operator
    | "Radical" -> `Radical
    | "Unified_Ideograph" -> `Unified_Ideograph
    | "Other_default_Ignorable_Code_Point" -> `Other_default_Ignorable_Code_Point
    | "Deprecated" -> `Deprecated
    | "Soft_Dotted" -> `Soft_Dotted
    | "Logical_Order_Exception" -> `Logical_Order_Exception
    | _ -> raise Not_found

  let loaded_props = Hashtbl.create 0

  let load_property_tbl p =
    try
      let b = Hashtbl.find loaded_props p in
      match Weak.get b 0 with
        None ->
        Hashtbl.remove loaded_props p;
        raise Not_found
      | Some x -> x
    with Not_found ->
      let tbl = read_data (name_of_property p) in
      let b = Weak.create 1 in
      Weak.set b 0 (Some tbl);
      Hashtbl.add loaded_props p b;
      tbl

  let load_property_tbl_by_name s =
    load_property_tbl (property_of_name s)

  let loaded_prop_sets = Hashtbl.create 0

  let load_property_set p =
    try
      let b = Hashtbl.find loaded_prop_sets p in
      match Weak.get b 0 with
        None ->
        Hashtbl.remove loaded_prop_sets p;
        raise Not_found
      | Some x -> x
    with Not_found ->
      let tbl = read_data  ((name_of_property p) ^ "_set") in
      let b = Weak.create 1 in
      Weak.set b 0 (Some tbl);
      Hashtbl.add loaded_prop_sets p b;
      tbl

  let load_property_set_by_name s =
    load_property_set (property_of_name s)

  (* Scripts *)

  let script_tbl : UCharTbl.Bits.t = read_data "scripts"

  let script u = script_of_num (UCharTbl.Bits.get script_tbl u)
  let load_script_map () = read_data "scripts_map"

  type version_type =
    [ `Nc
    | `v1_0
    | `v1_1
    | `v2_0
    | `v2_1
    | `v3_0
    | `v3_1
    | `v3_2 ]

  let version_of_char = function
    | '\x10' -> `v1_0
    | '\x11' -> `v1_1
    | '\x20' -> `v2_0
    | '\x21' -> `v2_1
    | '\x30' -> `v3_0
    | '\x31' -> `v3_1
    | '\x32' -> `v3_2
    | '\xfe' -> `Nc
    | i -> failwith (Printf.sprintf "version_of_char, unknown version v%x" (Char.code i))

  let version_to_char = function
    | `v1_0 -> '\x10'
    | `v1_1 -> '\x11'
    | `v2_0 -> '\x20'
    | `v2_1 -> '\x21'
    | `v3_0 -> '\x30'
    | `v3_1 -> '\x31'
    | `v3_2 -> '\x32'
    | `Nc   -> '\xfe'

  let age_tbl : UCharTbl.Char.t = read_data  "age"

  let age u = version_of_char (UCharTbl.Char.get age_tbl u)
  let older v1 v2 =
    ( version_to_char v1 ) <= ( version_to_char v2 )

  (* Casing *)

  let cache = Weak.create 3

  let load_to_lower1_tbl () =
    match Weak.get cache 0 with
      Some t -> t
    | None ->
      let t = read_data  "to_lower1" in
      Weak.set cache 0 (Some t);
      t

  let load_to_upper1_tbl () =
    match Weak.get cache 1 with
      Some t -> t
    | None ->
      let t = read_data  "to_upper1" in
      Weak.set cache 1 (Some t);
      t

  let load_to_title1_tbl () =
    match Weak.get cache 2 with
      Some t -> t
    | None ->
      let t = read_data  "to_title1" in
      Weak.set cache 2 (Some t);
      t

  type casemap_condition =
    [ `Locale of string
    | `FinalSigma
    | `AfterSoftDotted
    | `MoreAbove
    | `BeforeDot
    | `Not of casemap_condition ]

  type special_casing_property =
    {lower : UChar.t list;
     title : UChar.t list;
     upper : UChar.t list;
     condition : casemap_condition list;}

  let cache = Weak.create 1

  let load_conditional_casing_tbl () : special_casing_property list UCharTbl.t =
    match Weak.get cache 0 with
      Some t -> t
    | None ->
      let t = read_data  "special_casing" in
      Weak.set cache 0 (Some t);
      t

  let cache = Weak.create 1

  let load_casefolding_tbl () =
    match Weak.get cache 0 with
      Some t -> t
    | None ->
      let t = read_data  "case_folding" in
      Weak.set cache 0 (Some t);
      t

  (* Combined class *)

  let combined_class_tbl : UCharTbl.Char.t =
    read_data  "combined_class"

  let combined_class u = Char.code (UCharTbl.Char.get combined_class_tbl u)

  (* Decomposition *)

  let cache = Weak.create 1

  let load_decomposition_tbl () =
    match Weak.get cache 0 with
      Some t -> t
    | None ->
      let t = read_data  "decomposition" in
      Weak.set cache 0 (Some t);
      t

  (* Composition *)

  let cache = Weak.create 1

  let load_composition_tbl () =
    match Weak.get cache 0 with
      Some t -> t
    | None ->
      let t = read_data  "composition" in
      Weak.set cache 0 (Some t);
      t

  let cache = Weak.create 1

  let load_composition_exclusion_tbl () =
    match Weak.get cache 0 with
      Some t -> t
    | None ->
      let t = read_data  "composition_exclusion" in
      Weak.set cache 0 (Some t);
      t
end
OCaml

Innovation. Community. Security.