d676d8b8f94f7429ca56c037bb261435f51cccb8
[dragonfly.git] / lib / libc / locale / collate.h
1 /*
2  * Copyright 2010 Nexenta Systmes, Inc.  All rights reserved.
3  * Copyright (c) 1995 Alex Tatmanjants <alex@elvisti.kiev.ua>
4  *              at Electronni Visti IA, Kiev, Ukraine.
5  *                      All rights reserved.
6  *
7  * Copyright (c) 2011 The FreeBSD Foundation
8  * All rights reserved.
9  * Portions of this software were developed by David Chisnall
10  * under sponsorship from the FreeBSD Foundation.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * Adapted to xlocale by John Marino <draco@marino.st>
34  */
35
36 #ifndef _COLLATE_H_
37 #define _COLLATE_H_
38
39 #include <sys/cdefs.h>
40 #include <sys/types.h>
41 #include <limits.h>
42 #include "xlocale_private.h"
43
44 #define COLLATE_STR_LEN         24              /* should be 64-bit multiple */
45 #define COLLATE_VERSION         "DragonFly-4.4\n"
46
47 #define COLLATE_MAX_PRIORITY    (0x7fffffff)    /* max signed value */
48 #define COLLATE_SUBST_PRIORITY  (0x40000000)    /* bit indicates subst table */
49
50 #define DIRECTIVE_UNDEF         0x00
51 #define DIRECTIVE_FORWARD       0x01
52 #define DIRECTIVE_BACKWARD      0x02
53 #define DIRECTIVE_POSITION      0x04
54 #define DIRECTIVE_UNDEFINED     0x08    /* special last weight for UNDEFINED */
55
56 #define DIRECTIVE_DIRECTION_MASK (DIRECTIVE_FORWARD | DIRECTIVE_BACKWARD)
57
58 /*
59  * The collate file format is as follows:
60  *
61  * char         version[COLLATE_STR_LEN];       // must be COLLATE_VERSION
62  * collate_info_t       info;                   // see below, includes padding
63  * collate_char_pri_t   char_data[256];         // 8 bit char values
64  * collate_subst_t      subst[*];               // 0 or more substitutions
65  * collate_chain_pri_t  chains[*];              // 0 or more chains
66  * collate_large_pri_t  large[*];               // extended char priorities
67  *
68  * Note that all structures must be 32-bit aligned, as each structure
69  * contains 32-bit member fields.  The entire file is mmap'd, so its
70  * critical that alignment be observed.  It is not generally safe to
71  * use any 64-bit values in the structures.
72  */
73
74 typedef struct collate_info {
75         uint8_t directive_count;
76         uint8_t directive[COLL_WEIGHTS_MAX];
77         int32_t pri_count[COLL_WEIGHTS_MAX];
78         int32_t flags;
79         int32_t chain_count;
80         int32_t large_count;
81         int32_t subst_count[COLL_WEIGHTS_MAX];
82         int32_t undef_pri[COLL_WEIGHTS_MAX];
83 } collate_info_t;
84
85 typedef struct collate_char {
86         int32_t pri[COLL_WEIGHTS_MAX];
87 } collate_char_t;
88
89 typedef struct collate_chain {
90         wchar_t str[COLLATE_STR_LEN];
91         int32_t pri[COLL_WEIGHTS_MAX];
92 } collate_chain_t;
93
94 typedef struct collate_large {
95         int32_t val;
96         collate_char_t pri;
97 } collate_large_t;
98
99 typedef struct collate_subst {
100         int32_t key;
101         int32_t pri[COLLATE_STR_LEN];
102 } collate_subst_t;
103
104 struct xlocale_collate {
105         struct xlocale_component header;
106         int __collate_load_error;
107         char * map;
108         size_t maplen;
109
110         collate_info_t  *info;
111         collate_char_t  *char_pri_table;
112         collate_large_t *large_pri_table;
113         collate_chain_t *chain_pri_table;
114         collate_subst_t *subst_table[COLL_WEIGHTS_MAX];
115 };
116
117 __BEGIN_DECLS
118 int     __collate_load_tables(const char *);
119 void    _collate_lookup(struct xlocale_collate *,const wchar_t *, int *, int *,
120         int, const int **);
121 int     __collate_range_cmp(struct xlocale_collate *, wchar_t, wchar_t);
122 size_t  _collate_wxfrm(struct xlocale_collate *, const wchar_t *, wchar_t *,
123         size_t);
124 size_t  _collate_sxfrm(struct xlocale_collate *, const wchar_t *, char *,
125         size_t);
126 __END_DECLS
127
128 #endif /* !_COLLATE_H_ */