2 * Copyright 2010 Nexenta Systems, Inc. All rights reserved.
3 * Copyright 2013 DEY Storage Systems, Inc.
4 * Copyright 2015 John Marino <draco@marino.st>
6 * This source code is derived from the illumos localedef command, and
7 * provided under BSD-style license terms by Nexenta Systems, Inc.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
39 #include <sys/types.h>
49 #include "localedef.h"
53 #define TEXT_DOMAIN "SYS_TEST"
60 static char *locname
= NULL
;
61 static char locpath
[PATH_MAX
];
66 switch (get_category()) {
72 return ("LC_COLLATE");
76 return ("LC_MESSAGES");
78 return ("LC_MONETARY");
80 return ("LC_NUMERIC");
93 (void) snprintf(locpath
, sizeof (locpath
), "%s.%s",
94 locname
, category_name());
96 (void) snprintf(locpath
, sizeof (locpath
), "%s/%s/LCL_DATA",
97 locname
, category_name());
107 (void) printf(_("Writing category %s: "), category_name());
108 (void) fflush(stdout
);
111 /* make the parent directory */
113 (void) mkdirp(dirname(category_file()), 0755);
116 * note that we have to regenerate the file name, as dirname
119 file
= fopen(category_file(), "w");
121 errf(strerror(errno
));
128 close_category(FILE *f
)
130 if (fchmod(fileno(f
), 0644) < 0) {
132 (void) unlink(category_file());
133 errf(strerror(errno
));
136 (void) unlink(category_file());
137 errf(strerror(errno
));
140 (void) fprintf(stdout
, _("done.\n"));
141 (void) fflush(stdout
);
146 * This function is used when copying the category from another
147 * locale. Note that the copy is actually performed using a hard
148 * link for efficiency.
151 copy_category(char *src
)
153 char srcpath
[PATH_MAX
];
156 (void) snprintf(srcpath
, sizeof (srcpath
), "%s/%s/LCL_DATA",
157 src
, category_name());
158 rv
= access(srcpath
, R_OK
);
159 if ((rv
!= 0) && (strchr(srcpath
, '/') == NULL
)) {
160 /* Maybe we should try the system locale */
161 (void) snprintf(srcpath
, sizeof (srcpath
),
162 "/usr/lib/locale/%s/%s/LCL_DATA", src
, category_name());
163 rv
= access(srcpath
, R_OK
);
167 errf(_("source locale data unavailable"), src
);
172 (void) printf(_("Copying category %s from %s: "),
173 category_name(), src
);
174 (void) fflush(stdout
);
177 /* make the parent directory */
179 (void) mkdirp(dirname(category_file()), 0755);
181 if (link(srcpath
, category_file()) != 0) {
182 errf(_("unable to copy locale data: %s"), strerror(errno
));
186 (void) printf(_("done.\n"));
191 putl_category(const char *s
, FILE *f
)
193 if (s
&& fputs(s
, f
) == EOF
) {
195 (void) unlink(category_file());
196 errf(strerror(errno
));
199 if (fputc('\n', f
) == EOF
) {
201 (void) unlink(category_file());
202 errf(strerror(errno
));
209 wr_category(void *buf
, size_t sz
, FILE *f
)
214 if (fwrite(buf
, sz
, 1, f
) < 1) {
216 (void) unlink(category_file());
217 errf(strerror(errno
));
228 (void) fprintf(stderr
,
229 _("Usage: localedef [options] localename\n"));
230 (void) fprintf(stderr
, ("[options] are:\n"));
231 (void) fprintf(stderr
, (" -c : ignore warnings\n"));
232 (void) fprintf(stderr
, (" -D : BSD-style output\n"));
233 (void) fprintf(stderr
, (" -v : verbose output\n"));
234 (void) fprintf(stderr
, (" -U : ignore undefined symbols\n"));
235 (void) fprintf(stderr
, (" -f charmap : use given charmap file\n"));
236 (void) fprintf(stderr
, (" -u encoding : assume encoding\n"));
237 (void) fprintf(stderr
, (" -w widths : use screen widths file\n"));
238 (void) fprintf(stderr
, (" -i locsrc : source file for locale\n"));
243 main(int argc
, char **argv
)
261 (void) setlocale(LC_ALL
, "");
262 (void) textdomain(TEXT_DOMAIN
);
264 while ((c
= getopt(argc
, argv
, "w:i:cf:u:vUD")) != -1) {
276 set_wide_encoding(optarg
);
296 if ((argc
- 1) != (optind
)) {
299 locname
= argv
[argc
- 1];
301 (void) printf(_("Processing locale %s.\n"), locname
);
306 (void) printf(_("Loading charmap %s.\n"), cfname
);
307 reset_scanner(cfname
);
313 (void) printf(_("Loading widths %s.\n"), wfname
);
314 reset_scanner(wfname
);
319 (void) printf(_("Loading POSIX portable characters.\n"));
324 reset_scanner(lfname
);
329 /* make the directory for the locale if not already present */
331 while ((dir
= opendir(locname
)) == NULL
) {
332 if ((errno
!= ENOENT
) ||
333 (mkdir(locname
, 0755) < 0)) {
334 errf(strerror(errno
));
337 (void) closedir(dir
);
338 (void) mkdirp(dirname(category_file()), 0755);
343 (void) printf(_("All done.\n"));
345 return (warnings
? 1 : 0);