unicode-collation: Haskell implementation of the Unicode Collation Algorithm

[ bsd2, library, text ] [ Propose Tags ]

This library provides a pure Haskell implementation of the Unicode Collation Algorithm described at http://www.unicode.org/reports/tr10/. It is not as fully-featured or as performant as text-icu, but it avoids a dependency on a large C library. Locale-specific tailorings are also provided.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
doctests

Run doctests as part of test suite. Use with: --write-ghc-environment-files=always.

Disabled
executable

Build the unicode-collate executable.

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1, 0.1.1, 0.1.2, 0.1.3, 0.1.3.1, 0.1.3.2, 0.1.3.3, 0.1.3.4, 0.1.3.5, 0.1.3.6
Change log CHANGELOG.md
Dependencies base (>=4.9 && <4.16), binary, bytestring, containers, parsec, template-haskell, text (>=1.2 && <1.3), th-lift-instances, unicode-collation [details]
License BSD-2-Clause
Copyright 2021 John MacFarlane
Author John MacFarlane
Maintainer John MacFarlane <jgm@berkeley.edu>
Category Text
Home page https://github.com/jgm/unicode-collation
Bug tracker https://github.com/jgm/unicode-collation/issues
Source repo head: git clone https://github.com/jgm/unicode-collation.git
Uploaded by JohnMacFarlane at 2021-04-26T04:38:20Z
Distributions Arch:0.1.3.6, Fedora:0.1.3.5, LTSHaskell:0.1.3.6, NixOS:0.1.3.6, Stackage:0.1.3.6, openSUSE:0.1.3.6
Reverse Dependencies 4 direct, 171 indirect [details]
Executables unicode-collate
Downloads 18323 total (453 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for unicode-collation-0.1.3

[back to package description]

unicode-collation

GitHubCI Hackage BSD-2-Clause license

Haskell implementation of unicode collation algorithm.

Motivation

Previously there was no way to do correct unicode collation (sorting) in Haskell without depending on the C library icu and the barely maintained Haskell wrapper text-icu. This library offers a pure Haskell solution.

Conformance

The library passes all UCA conformance tests.

Localized collations have not been tested as extensively.

Performance

As might be expected, this library is slower than text-icu, which wraps a heavily optimized C library. How much slower depends quite a bit on the input.

On a sample of ten thousand random Unicode strings, we get a factor of about 3:

  sort a list of 10000 random Texts (en):
    6.0 ms ± 580 μs,  22 MB allocated, 911 KB copied
  sort same list with text-icu (en):
    2.1 ms ± 122 μs, 7.1 MB allocated, 149 KB copied

Performance is worse on a sample drawn from a smaller character set including predominantly composed accented letters, which mut be decomposed as part of the algorithm:

  sort a list of 10000 Texts (composed latin) (en):
     15 ms ± 1.1 ms,  40 MB allocated, 921 KB copied
  sort same list with text-icu (en):
    2.3 ms ± 212 μs, 6.9 MB allocated, 140 KB copied

Much of the impact here comes from normalization (decomposition). If we use a pre-normalized sample and disable normalization in the collator, it's much faster:

  sort same list but pre-normalized (en-u-kk-false):
    5.7 ms ± 508 μs,  19 MB allocated, 887 KB copied

On plain ASCII, we get a factor of 3 again:

  sort a list of 10000 ASCII Texts (en):
    4.3 ms ±  66 μs,  16 MB allocated, 892 KB copied
  sort same list with text-icu (en):
    1.4 ms ± 107 μs, 6.2 MB allocated, 140 KB copied

Note that this library does incremental normalization, so when strings can mostly be distinguished on the basis of the first two characters, as in the first sample, the impact is much less. On the other hand, performance is much slower on a sample of texts which differ only after the first 32 characters:

  sort a list of 10000 random Texts that agree in first 32 chars:
    118 ms ± 8.2 ms, 430 MB allocated, 713 KB copied
  sort same list with text-icu (en):
    3.0 ms ± 226 μs, 8.8 MB allocated, 222 KB copied

However, in the special case where the texts are identical, the algorithm can be short-circuited entirely and sorting is very fast:

  sort a list of 10000 identical Texts (en):
    911 μs ±  34 μs, 468 KB allocated,  10 KB copied

Localized collations

The following localized collations are available. For languages not listed here, the root collation is used.

af
ar
as
az
be
bn
ca
cs
cu
cy
da
de-AT-u-co-phonebk
de-u-co-phonebk
dsb
ee
eo
es
es-u-co-trad
et
fa
fi
fi-u-co-phonebk
fil
fo
fr-CA
gu
ha
haw
he
hi
hr
hu
hy
ig
is
ja
kk
kl
kn
ko
kok
lkt
ln
lt
lv
mk
ml
mr
mt
nb
nn
nso
om
or
pa
pl
ro
sa
se
si
si-u-co-dict
sk
sl
sq
sr
sv
sv-u-co-reformed
ta
te
th
tn
to
tr
ug-Cyrl
uk
ur
vi
vo
wae
wo
yo
zh
zh-u-co-big5han
zh-u-co-gb2312
zh-u-co-pinyin
zh-u-co-stroke
zh-u-co-zhuyin

Collation reordering (e.g. [reorder Latn Kana Hani]) is not suported

Data files

Version 13.0.0 of the Unicode data is used: http://www.unicode.org/Public/UCA/13.0.0/

Locale-specific tailorings are derived from the Perl module Unicode::Collate: https://cpan.metacpan.org/authors/id/S/SA/SADAHIRO/Unicode-Collate-1.29.tar.gz

Executable

The package includes an executable component, unicode-collate, which may be used for testing and for collating in scripts. To build it, enable the executable flag. For usage instructions, unicode-collate --help.

References