src/libpspp/hash-functions.c: Add a preprocessor switch to help test hash table imple...
[pspp] / src / libpspp / i18n.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2006, 2010, 2011, 2012, 2014, 2016 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #ifndef I18N_H
18 #define I18N_H
19
20 #include "libpspp/compiler.h"
21 #include <stdbool.h>
22 #include <unistr.h>
23
24 void  i18n_done (void);
25 void  i18n_init (void);
26
27 #define UTF8 "UTF-8"
28
29 /* The encoding of literal strings in PSPP source code, as seen at execution
30    time.  In fact this is likely to be some extended ASCII encoding, such as
31    UTF-8 or ISO-8859-1, but ASCII is adequate for our purposes. */
32 #define C_ENCODING "ASCII"
33
34 struct pool;
35
36 char recode_byte (const char *to, const char *from, char);
37
38 char *recode_string (const char *to, const char *from,
39                      const char *text, int len);
40 char *recode_string_pool (const char *to, const char *from,
41                           const char *text, int length, struct pool *);
42 struct substring recode_substring_pool (const char *to, const char *from,
43                                         struct substring text, struct pool *);
44 int recode_pedantically (const char *to, const char *from,
45                          struct substring text, struct pool *,
46                          struct substring *out);
47
48 size_t recode_string_len (const char *to, const char *from,
49                           const char *text, int len);
50
51 char *utf8_encoding_trunc (const char *, const char *encoding,
52                            size_t max_len);
53 size_t utf8_encoding_trunc_len (const char *, const char *encoding,
54                                 size_t max_len);
55
56 char *utf8_encoding_concat (const char *head, const char *tail,
57                             const char *encoding, size_t max_len);
58 size_t utf8_encoding_concat_len (const char *head, const char *tail,
59                                  const char *encoding, size_t max_len);
60
61 char *utf8_to_filename (const char *filename);
62 char *filename_to_utf8 (const char *filename);
63
64 bool valid_encoding (const char *enc);
65
66 char get_system_decimal (void);
67
68 const char * get_default_encoding (void);
69 void set_default_encoding (const char *enc);
70
71 bool set_encoding_from_locale (const char *loc);
72
73 const char *uc_name (ucs4_t uc, char buffer[16]);
74
75 unsigned int utf8_hash_case_bytes (const char *, size_t n, unsigned int basis) WARN_UNUSED_RESULT;
76 unsigned int utf8_hash_case_string (const char *, unsigned int basis) WARN_UNUSED_RESULT;
77 int utf8_strcasecmp (const char *, const char *);
78 int utf8_strncasecmp (const char *, size_t, const char *, size_t);
79 int utf8_strverscasecmp (const char *, const char *);
80 char *utf8_to_upper (const char *);
81 char *utf8_to_lower (const char *);
82 \f
83 /* Information about character encodings. */
84
85 /* ISO C defines a set of characters that a C implementation must support at
86    runtime, called the C basic execution character set, which consists of the
87    following characters:
88
89        A B C D E F G H I J K L M
90        N O P Q R S T U V W X Y Z
91        a b c d e f g h i j k l m
92        n o p q r s t u v w x y z
93        0 1 2 3 4 5 6 7 8 9
94        ! " # % & ' ( ) * + , - . / :
95        ; < = > ? [ \ ] ^ _ { | } ~
96        space \a \b \r \n \t \v \f \0
97
98    The following is true of every member of the C basic execution character
99    set in all "reasonable" encodings:
100
101        1. Every member of the C basic character set is encoded.
102
103        2. Every member of the C basic character set has the same width in
104           bytes, called the "unit width".  Most encodings have a unit width of
105           1 byte, but UCS-2 and UTF-16 have a unit width of 2 bytes and UCS-4
106           and UTF-32 have a unit width of 4 bytes.
107
108        3. In a stateful encoding, the encoding of members of the C basic
109           character set does not vary with shift state.
110
111        4. When a string is read unit-by-unit, a unit that has the encoded value
112           of a member of the C basic character set, EXCEPT FOR THE DECIMAL
113           DIGITS, always represents that member.  That is, if the encoding has
114           multi-unit characters, the units that encode the C basic character
115           set are never part of a multi-unit character.
116
117           The exception for decimal digits is due to GB18030, which uses
118           decimal digits as part of multi-byte encodings.
119
120    All 8-bit and wider encodings that I have been able to find follow these
121    rules.  7-bit and narrower encodings (e.g. UTF-7) do not.  I'm not too
122    concerned about that. */
123
124 #include <stdbool.h>
125
126 /* Maximum width of a unit, in bytes.  UTF-32 with 4-byte units is the widest
127    that I am aware of. */
128 #define MAX_UNIT 4
129
130 /* Information about an encoding. */
131 struct encoding_info
132   {
133     /* Encoding name.  IANA says character set names may be up to 40 US-ASCII
134        characters. */
135     char name[41];
136
137     /* True if this encoding has a unit width of 1 byte, and every character
138        used in ASCII text files has the same value in this encoding. */
139     bool is_ascii_compatible;
140
141     /* True if this encoding has a unit width of 1 byte and appears to be
142        EBCDIC-based.  */
143     bool is_ebcdic_compatible;
144
145     /* Character information. */
146     int unit;                   /* Unit width, in bytes. */
147     char cr[MAX_UNIT];          /* \r in encoding, 'unit' bytes long. */
148     char lf[MAX_UNIT];          /* \n in encoding, 'unit' bytes long. */
149     char space[MAX_UNIT];       /* ' ' in encoding, 'unit' bytes long. */
150   };
151
152 bool get_encoding_info (struct encoding_info *, const char *name);
153 bool is_encoding_ascii_compatible (const char *encoding);
154 bool is_encoding_ebcdic_compatible (const char *encoding);
155 bool is_encoding_supported (const char *encoding);
156
157 bool is_encoding_utf8 (const char *encoding);
158 \f
159 /* Database of encodings, by language or region. */
160
161 struct encoding_category
162   {
163     const char *category;       /* e.g. "Arabic" or "Western European". */
164     const char **encodings;     /* Encodings within the category. */
165     size_t n_encodings;         /* Number of encodings in category. */
166   };
167
168 struct encoding_category *get_encoding_categories (void);
169 size_t get_n_encoding_categories (void);
170
171 #endif /* i18n.h */