xref: /dragonfly/usr.bin/localedef/localedef.h (revision e6d22e9b)
1 /*
2  * Copyright 2010 Nexenta Systems, Inc.  All rights reserved.
3  * Copyright 2015 John Marino <draco@marino.st>
4  *
5  * This source code is derived from the illumos localedef command, and
6  * provided under BSD-style license terms by Nexenta Systems, Inc.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 /*
32  * POSIX localedef.
33  */
34 
35 /* Common header files. */
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <stdarg.h>
39 #include <sys/types.h>
40 
41 #define	yylex	localedef_yylex
42 
43 extern int com_char;
44 extern int esc_char;
45 extern int mb_cur_max;
46 extern int mb_cur_min;
47 extern int last_kw;
48 extern int verbose;
49 #if YYDEBUG
50 extern int yydebug;
51 #endif
52 extern int lineno;
53 extern int undefok;	/* mostly ignore undefined symbols */
54 extern int warnok;
55 extern int warnings;
56 
57 int yylex(void);
58 void yyerror(const char *);
59 void errf(const char *, ...) __dead2;
60 void warn(const char *, ...);
61 
62 int putl_category(const char *, FILE *);
63 int wr_category(void *, size_t, FILE *);
64 FILE *open_category(void);
65 void close_category(FILE *);
66 void copy_category(char *);
67 const char *category_name(void);
68 
69 int get_category(void);
70 int get_symbol(void);
71 int get_escaped(int);
72 int get_wide(void);
73 void reset_scanner(const char *);
74 void scan_to_eol(void);
75 void add_wcs(wchar_t);
76 void add_tok(int);
77 wchar_t *get_wcs(void);
78 
79 /* charmap.c - CHARMAP handling */
80 void init_charmap(void);
81 void add_charmap(const char *, int);
82 void add_charmap_undefined(char *);
83 void add_charmap_posix(void);
84 void add_charmap_range(char *, char *, int);
85 void add_charmap_char(const char *name, int val);
86 int lookup_charmap(const char *, wchar_t *);
87 int check_charmap_undefined(char *);
88 int check_charmap(wchar_t);
89 
90 /* collate.o - LC_COLLATE handling */
91 typedef struct collelem collelem_t;
92 typedef struct collsym collsym_t;
93 void init_collate(void);
94 void define_collsym(char *);
95 void define_collelem(char *, wchar_t *);
96 void add_order_directive(void);
97 void add_order_bit(int);
98 void dump_collate(void);
99 collsym_t *lookup_collsym(char *);
100 collelem_t *lookup_collelem(char *);
101 void start_order_collelem(collelem_t *);
102 void start_order_undefined(void);
103 void start_order_symbol(char *);
104 void start_order_char(wchar_t);
105 void start_order_ellipsis(void);
106 void end_order_collsym(collsym_t *);
107 void end_order(void);
108 void add_weight(int32_t, int);
109 void add_weights(int32_t *);
110 void add_weight_num(int);
111 void add_order_collelem(collelem_t *);
112 void add_order_collsym(collsym_t *);
113 void add_order_char(wchar_t);
114 void add_order_ignore(void);
115 void add_order_ellipsis(void);
116 void add_order_symbol(char *);
117 void add_order_subst(void);
118 void add_subst_char(wchar_t);
119 void add_subst_collsym(collsym_t *);
120 void add_subst_collelem(collelem_t *);
121 void add_subst_symbol(char *);
122 int32_t get_weight(int32_t, int);
123 wchar_t * wsncpy(wchar_t *, const wchar_t *, size_t);
124 
125 
126 /* ctype.c - LC_CTYPE handling */
127 void init_ctype(void);
128 void add_ctype(int);
129 void add_ctype_range(wchar_t);
130 void add_width(int, int);
131 void add_width_range(int, int, int);
132 void add_caseconv(int, int);
133 void dump_ctype(void);
134 
135 /* messages.c - LC_MESSAGES handling */
136 void init_messages(void);
137 void add_message(wchar_t *);
138 void dump_messages(void);
139 
140 /* monetary.c - LC_MONETARY handling */
141 void init_monetary(void);
142 void add_monetary_str(wchar_t *);
143 void add_monetary_num(int);
144 void reset_monetary_group(void);
145 void add_monetary_group(int);
146 void dump_monetary(void);
147 
148 /* numeric.c - LC_NUMERIC handling */
149 void init_numeric(void);
150 void add_numeric_str(wchar_t *);
151 void reset_numeric_group(void);
152 void add_numeric_group(int);
153 void dump_numeric(void);
154 
155 /* time.c - LC_TIME handling */
156 void init_time(void);
157 void add_time_str(wchar_t *);
158 void reset_time_list(void);
159 void add_time_list(wchar_t *);
160 void check_time_list(void);
161 void dump_time(void);
162 
163 /* wide.c -  Wide character handling. */
164 int to_wide(wchar_t *, const char *);
165 int to_mbs(char *, wchar_t);
166 int to_mb(char *, wchar_t);
167 char *to_mb_string(const wchar_t *);
168 void set_wide_encoding(const char *);
169 void werr(const char *, ...);
170 const char *get_wide_encoding(void);
171 int max_wide(void);
172 
173 //#define	_(x)	gettext(x)
174 #define	INTERR	fprintf(stderr,"internal fault (%s:%d)", __FILE__, __LINE__)
175