package camomile

  1. Overview
  2. Docs

Description

Camomile is a Unicode library for OCaml. Camomile provides Unicode character type, UTF-8, UTF-16, UTF-32 strings, conversion to/from about 200 encodings, collation and locale-sensitive case mappings, and more. The library is currently designed for Unicode Standard 3.2.

Published: 12 Apr 2018

README

Camomile

This is the version 1.0.1 release of Camomile library package. Camomile is a Unicode library for ocaml. Camomile provides Unicode character type, UTF-8, UTF-16, UTF-32 strings, conversion to/from about 200 encodings, collation and locale-sensitive case mappings, and more.

The library is licensed under LGPL-2 with the common linking exception given to OCaml packages. See [LICENSE.md][LICENSE.md]

Installation

To build and install Camomile, you need OCaml >= 4.02.3 jbuilder >= 1.0+beta7

To build the library, on the top directory do $ jbuilder build $ jbuilder install

Data files are put under /usr/local/share/camomile by default. The default can be overridden by running $ ocaml configure.ml --share=XXXX then data files are placed under XXXX/camomile.

You can uninstall the library by

$ jbuilder uninstall

Using libraries

Wrapping

"camomile.cma" contains three top-level modules CamomileLibrary, CamomileLibraryDefault, CamomileLibraryDyn. Difference of three modules is explained below.

"camomileLibrary.cma" contains CamomileLibrary alone. "camomileLibrary.cma" is useful if you want to dynamically load Camomile, since loading CamomileLibraryDefault, CamomileLibraryDyn causes side effects such as loading data files which could fail.

Configuration

Camomile requires runtime configuration. Currently, you have to pass the location of data files to Camomile. In the future, more configuration variables would be required.

Camomile's idea of configuration is "configuration by functors". Modules which require configuration become functors parametrized by a module which contains configuration variables. CamomileLibrary.ConfigInt.Type specifies the module type of configuration parameters. You can pass the configuration module to individual modules' Make (as UCol.Make) or Configure functors (as CharEncoding.Configure), or pass it to the whole-in-one functor CamomileLibrary.Make and obtain configured modules.

Camomile provides two top-level modules CamomileLibraryDefault and CamomileLibraryDyn which contains modules already configured. CamomileLibraryDefault is configured by default values determined by configure. Therefore it is suitable to use if you are using Camomile locally installed from the source. CamomileLibraryDyn is deprecated and just an alias to CamomileLibraryDefault.

Individual modules.

See CamomileLibrary.mli file.

Development

See https://github.com/yoriyuki/Camomile

Author

You can contact the author by yoriyuki.y@gmail.com

Acknowledgment

So many people are contributed to Camomile. See https://github.com/yoriyuki/Camomile/graphs/contributors

Before GitHub becomes into existence...

Peter Jolly provided CP932 conversion table. Kawakami Shigenobu contributed findlib support. Pierre Chambart contributed StringPrep module. Stanisław T. Findeisen pointed out the balancing bug of AVL-trees. Sylvain Le Gall provided dynamic configuration module ConfigDyn.ml.

Many people contributed bug fixes.

Dependencies (2)

  1. jbuilder >= "1.0+beta17"
  2. ocaml >= "4.02.3"

Dev Dependencies

None

Used by (19)

  1. batteries < "2.0.0"
  2. charInfo_width < "2.0.0"
  3. gasoline
  4. gettext < "0.4.1"
  5. gettext-camomile
  6. gufo
  7. headache >= "1.04" & < "1.07"
  8. javalib >= "2.3.5" & < "3.1"
  9. lambda-term >= "1.12.0" & < "3.3.0"
  10. liquidsoap >= "1.3.3" & < "2.2.0"
  11. mecab
  12. mmseg < "transition"
  13. patoline < "0.2"
  14. skkserv-lite
  15. sociaml-vcard
  16. soupault >= "4.0.1" & < "4.5.0"
  17. utop >= "2.0.2" & < "2.10.0"
  18. wseg
  19. zed < "3.2.0"

Conflicts

None