]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - usr.bin/locale/locale.c
MFC r339587:
[FreeBSD/stable/9.git] / usr.bin / locale / locale.c
1 /*-
2  * Copyright (c) 2002, 2003 Alexey Zelkin <phantom@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 /*
30  * XXX: implement missing era_* (LC_TIME) keywords (require libc &
31  *      nl_langinfo(3) extensions)
32  *
33  * XXX: correctly handle reserved 'charmap' keyword and '-m' option (require
34  *      localedef(1) implementation).  Currently it's handled via
35  *      nl_langinfo(CODESET).
36  */
37
38 #include <sys/types.h>
39 #include <dirent.h>
40 #include <err.h>
41 #include <locale.h>
42 #include <langinfo.h>
43 #include <stdio.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include <stringlist.h>
47 #include <unistd.h>
48 #include "setlocale.h"
49
50 /* Local prototypes */
51 void    init_locales_list(void);
52 void    list_charmaps(void);
53 void    list_locales(void);
54 const char *lookup_localecat(int);
55 char    *kwval_lconv(int);
56 int     kwval_lookup(char *, char **, int *, int *);
57 void    showdetails(char *);
58 void    showkeywordslist(char *substring);
59 void    showlocale(void);
60 void    usage(void);
61
62 /* Global variables */
63 static StringList *locales = NULL;
64
65 int     all_locales = 0;
66 int     all_charmaps = 0;
67 int     prt_categories = 0;
68 int     prt_keywords = 0;
69 int     more_params = 0;
70
71 struct _lcinfo {
72         const char      *name;
73         int             id;
74 } lcinfo [] = {
75         { "LC_CTYPE",           LC_CTYPE },
76         { "LC_COLLATE",         LC_COLLATE },
77         { "LC_TIME",            LC_TIME },
78         { "LC_NUMERIC",         LC_NUMERIC },
79         { "LC_MONETARY",        LC_MONETARY },
80         { "LC_MESSAGES",        LC_MESSAGES }
81 };
82 #define NLCINFO (sizeof(lcinfo)/sizeof(lcinfo[0]))
83
84 /* ids for values not referenced by nl_langinfo() */
85 #define KW_ZERO                 10000
86 #define KW_GROUPING             (KW_ZERO+1)
87 #define KW_INT_CURR_SYMBOL      (KW_ZERO+2)
88 #define KW_CURRENCY_SYMBOL      (KW_ZERO+3)
89 #define KW_MON_DECIMAL_POINT    (KW_ZERO+4)
90 #define KW_MON_THOUSANDS_SEP    (KW_ZERO+5)
91 #define KW_MON_GROUPING         (KW_ZERO+6)
92 #define KW_POSITIVE_SIGN        (KW_ZERO+7)
93 #define KW_NEGATIVE_SIGN        (KW_ZERO+8)
94 #define KW_INT_FRAC_DIGITS      (KW_ZERO+9)
95 #define KW_FRAC_DIGITS          (KW_ZERO+10)
96 #define KW_P_CS_PRECEDES        (KW_ZERO+11)
97 #define KW_P_SEP_BY_SPACE       (KW_ZERO+12)
98 #define KW_N_CS_PRECEDES        (KW_ZERO+13)
99 #define KW_N_SEP_BY_SPACE       (KW_ZERO+14)
100 #define KW_P_SIGN_POSN          (KW_ZERO+15)
101 #define KW_N_SIGN_POSN          (KW_ZERO+16)
102 #define KW_INT_P_CS_PRECEDES    (KW_ZERO+17)
103 #define KW_INT_P_SEP_BY_SPACE   (KW_ZERO+18)
104 #define KW_INT_N_CS_PRECEDES    (KW_ZERO+19)
105 #define KW_INT_N_SEP_BY_SPACE   (KW_ZERO+20)
106 #define KW_INT_P_SIGN_POSN      (KW_ZERO+21)
107 #define KW_INT_N_SIGN_POSN      (KW_ZERO+22)
108
109 struct _kwinfo {
110         const char      *name;
111         int             isstr;          /* true - string, false - number */
112         int             catid;          /* LC_* */
113         int             value_ref;
114         const char      *comment;
115 } kwinfo [] = {
116         { "charmap",            1, LC_CTYPE,    CODESET, "" },  /* hack */
117
118         { "decimal_point",      1, LC_NUMERIC,  RADIXCHAR, "" },
119         { "thousands_sep",      1, LC_NUMERIC,  THOUSEP, "" },
120         { "grouping",           1, LC_NUMERIC,  KW_GROUPING, "" },
121         { "radixchar",          1, LC_NUMERIC,  RADIXCHAR,
122           "Same as decimal_point (FreeBSD only)" },             /* compat */
123         { "thousep",            1, LC_NUMERIC,  THOUSEP,
124           "Same as thousands_sep (FreeBSD only)" },             /* compat */
125
126         { "int_curr_symbol",    1, LC_MONETARY, KW_INT_CURR_SYMBOL, "" },
127         { "currency_symbol",    1, LC_MONETARY, KW_CURRENCY_SYMBOL, "" },
128         { "mon_decimal_point",  1, LC_MONETARY, KW_MON_DECIMAL_POINT, "" },
129         { "mon_thousands_sep",  1, LC_MONETARY, KW_MON_THOUSANDS_SEP, "" },
130         { "mon_grouping",       1, LC_MONETARY, KW_MON_GROUPING, "" },
131         { "positive_sign",      1, LC_MONETARY, KW_POSITIVE_SIGN, "" },
132         { "negative_sign",      1, LC_MONETARY, KW_NEGATIVE_SIGN, "" },
133
134         { "int_frac_digits",    0, LC_MONETARY, KW_INT_FRAC_DIGITS, "" },
135         { "frac_digits",        0, LC_MONETARY, KW_FRAC_DIGITS, "" },
136         { "p_cs_precedes",      0, LC_MONETARY, KW_P_CS_PRECEDES, "" },
137         { "p_sep_by_space",     0, LC_MONETARY, KW_P_SEP_BY_SPACE, "" },
138         { "n_cs_precedes",      0, LC_MONETARY, KW_N_CS_PRECEDES, "" },
139         { "n_sep_by_space",     0, LC_MONETARY, KW_N_SEP_BY_SPACE, "" },
140         { "p_sign_posn",        0, LC_MONETARY, KW_P_SIGN_POSN, "" },
141         { "n_sign_posn",        0, LC_MONETARY, KW_N_SIGN_POSN, "" },
142         { "int_p_cs_precedes",  0, LC_MONETARY, KW_INT_P_CS_PRECEDES, "" },
143         { "int_p_sep_by_space", 0, LC_MONETARY, KW_INT_P_SEP_BY_SPACE, "" },
144         { "int_n_cs_precedes",  0, LC_MONETARY, KW_INT_N_CS_PRECEDES, "" },
145         { "int_n_sep_by_space", 0, LC_MONETARY, KW_INT_N_SEP_BY_SPACE, "" },
146         { "int_p_sign_posn",    0, LC_MONETARY, KW_INT_P_SIGN_POSN, "" },
147         { "int_n_sign_posn",    0, LC_MONETARY, KW_INT_N_SIGN_POSN, "" },
148
149         { "d_t_fmt",            1, LC_TIME,     D_T_FMT, "" },
150         { "d_fmt",              1, LC_TIME,     D_FMT, "" },
151         { "t_fmt",              1, LC_TIME,     T_FMT, "" },
152         { "am_str",             1, LC_TIME,     AM_STR, "" },
153         { "pm_str",             1, LC_TIME,     PM_STR, "" },
154         { "t_fmt_ampm",         1, LC_TIME,     T_FMT_AMPM, "" },
155         { "day_1",              1, LC_TIME,     DAY_1, "" },
156         { "day_2",              1, LC_TIME,     DAY_2, "" },
157         { "day_3",              1, LC_TIME,     DAY_3, "" },
158         { "day_4",              1, LC_TIME,     DAY_4, "" },
159         { "day_5",              1, LC_TIME,     DAY_5, "" },
160         { "day_6",              1, LC_TIME,     DAY_6, "" },
161         { "day_7",              1, LC_TIME,     DAY_7, "" },
162         { "abday_1",            1, LC_TIME,     ABDAY_1, "" },
163         { "abday_2",            1, LC_TIME,     ABDAY_2, "" },
164         { "abday_3",            1, LC_TIME,     ABDAY_3, "" },
165         { "abday_4",            1, LC_TIME,     ABDAY_4, "" },
166         { "abday_5",            1, LC_TIME,     ABDAY_5, "" },
167         { "abday_6",            1, LC_TIME,     ABDAY_6, "" },
168         { "abday_7",            1, LC_TIME,     ABDAY_7, "" },
169         { "mon_1",              1, LC_TIME,     MON_1, "" },
170         { "mon_2",              1, LC_TIME,     MON_2, "" },
171         { "mon_3",              1, LC_TIME,     MON_3, "" },
172         { "mon_4",              1, LC_TIME,     MON_4, "" },
173         { "mon_5",              1, LC_TIME,     MON_5, "" },
174         { "mon_6",              1, LC_TIME,     MON_6, "" },
175         { "mon_7",              1, LC_TIME,     MON_7, "" },
176         { "mon_8",              1, LC_TIME,     MON_8, "" },
177         { "mon_9",              1, LC_TIME,     MON_9, "" },
178         { "mon_10",             1, LC_TIME,     MON_10, "" },
179         { "mon_11",             1, LC_TIME,     MON_11, "" },
180         { "mon_12",             1, LC_TIME,     MON_12, "" },
181         { "abmon_1",            1, LC_TIME,     ABMON_1, "" },
182         { "abmon_2",            1, LC_TIME,     ABMON_2, "" },
183         { "abmon_3",            1, LC_TIME,     ABMON_3, "" },
184         { "abmon_4",            1, LC_TIME,     ABMON_4, "" },
185         { "abmon_5",            1, LC_TIME,     ABMON_5, "" },
186         { "abmon_6",            1, LC_TIME,     ABMON_6, "" },
187         { "abmon_7",            1, LC_TIME,     ABMON_7, "" },
188         { "abmon_8",            1, LC_TIME,     ABMON_8, "" },
189         { "abmon_9",            1, LC_TIME,     ABMON_9, "" },
190         { "abmon_10",           1, LC_TIME,     ABMON_10, "" },
191         { "abmon_11",           1, LC_TIME,     ABMON_11, "" },
192         { "abmon_12",           1, LC_TIME,     ABMON_12, "" },
193         { "altmon_1",           1, LC_TIME,     ALTMON_1, "(FreeBSD only)" },
194         { "altmon_2",           1, LC_TIME,     ALTMON_2, "(FreeBSD only)" },
195         { "altmon_3",           1, LC_TIME,     ALTMON_3, "(FreeBSD only)" },
196         { "altmon_4",           1, LC_TIME,     ALTMON_4, "(FreeBSD only)" },
197         { "altmon_5",           1, LC_TIME,     ALTMON_5, "(FreeBSD only)" },
198         { "altmon_6",           1, LC_TIME,     ALTMON_6, "(FreeBSD only)" },
199         { "altmon_7",           1, LC_TIME,     ALTMON_7, "(FreeBSD only)" },
200         { "altmon_8",           1, LC_TIME,     ALTMON_8, "(FreeBSD only)" },
201         { "altmon_9",           1, LC_TIME,     ALTMON_9, "(FreeBSD only)" },
202         { "altmon_10",          1, LC_TIME,     ALTMON_10, "(FreeBSD only)" },
203         { "altmon_11",          1, LC_TIME,     ALTMON_11, "(FreeBSD only)" },
204         { "altmon_12",          1, LC_TIME,     ALTMON_12, "(FreeBSD only)" },
205         { "era",                1, LC_TIME,     ERA, "(unavailable)" },
206         { "era_d_fmt",          1, LC_TIME,     ERA_D_FMT, "(unavailable)" },
207         { "era_d_t_fmt",        1, LC_TIME,     ERA_D_T_FMT, "(unavailable)" },
208         { "era_t_fmt",          1, LC_TIME,     ERA_T_FMT, "(unavailable)" },
209         { "alt_digits",         1, LC_TIME,     ALT_DIGITS, "" },
210         { "d_md_order",         1, LC_TIME,     D_MD_ORDER,
211           "(FreeBSD only)"                              },      /* local */
212
213         { "yesexpr",            1, LC_MESSAGES, YESEXPR, "" },
214         { "noexpr",             1, LC_MESSAGES, NOEXPR, "" },
215         { "yesstr",             1, LC_MESSAGES, YESSTR,
216           "(POSIX legacy)" },                                   /* compat */
217         { "nostr",              1, LC_MESSAGES, NOSTR,
218           "(POSIX legacy)" }                                    /* compat */
219
220 };
221 #define NKWINFO (sizeof(kwinfo)/sizeof(kwinfo[0]))
222
223 const char *boguslocales[] = { "UTF-8" };
224 #define NBOGUS  (sizeof(boguslocales)/sizeof(boguslocales[0]))
225
226 int
227 main(int argc, char *argv[])
228 {
229         int     ch;
230         int     tmp;
231
232         while ((ch = getopt(argc, argv, "ackms:")) != -1) {
233                 switch (ch) {
234                 case 'a':
235                         all_locales = 1;
236                         break;
237                 case 'c':
238                         prt_categories = 1;
239                         break;
240                 case 'k':
241                         prt_keywords = 1;
242                         break;
243                 case 'm':
244                         all_charmaps = 1;
245                         break;
246                 default:
247                         usage();
248                 }
249         }
250         argc -= optind;
251         argv += optind;
252
253         /* validate arguments */
254         if (all_locales && all_charmaps)
255                 usage();
256         if ((all_locales || all_charmaps) && argc > 0)
257                 usage();
258         if ((all_locales || all_charmaps) && (prt_categories || prt_keywords))
259                 usage();
260
261         /* process '-a' */
262         if (all_locales) {
263                 list_locales();
264                 exit(0);
265         }
266
267         /* process '-m' */
268         if (all_charmaps) {
269                 list_charmaps();
270                 exit(0);
271         }
272
273         /* check for special case '-k list' */
274         tmp = 0;
275         if (prt_keywords && argc > 0)
276                 while (tmp < argc)
277                         if (strcasecmp(argv[tmp++], "list") == 0) {
278                                 showkeywordslist(argv[tmp]);
279                                 exit(0);
280                         }
281
282         /* process '-c', '-k', or command line arguments. */
283         if (prt_categories || prt_keywords || argc > 0) {
284                 if (prt_keywords || argc > 0)
285                         setlocale(LC_ALL, "");
286                 if (argc > 0) {
287                         while (argc > 0) {
288                                 showdetails(*argv);
289                                 argv++;
290                                 argc--;
291                         }
292                 } else {
293                         uint i;
294                         for (i = 0; i < sizeof (kwinfo) / sizeof (struct _kwinfo); i++)
295                                 showdetails ((char *)kwinfo [i].name);
296                 }
297                 exit(0);
298         }
299
300         /* no arguments, show current locale state */
301         showlocale();
302
303         return (0);
304 }
305
306 void
307 usage(void)
308 {
309         printf("Usage: locale [ -a | -m ]\n"
310                "       locale -k list [prefix]\n"
311                "       locale [ -ck ] [keyword ...]\n");
312         exit(1);
313 }
314
315 /*
316  * Output information about all available locales
317  *
318  * XXX actually output of this function does not guarantee that locale
319  *     is really available to application, since it can be broken or
320  *     inconsistent thus setlocale() will fail.  Maybe add '-V' function to
321  *     also validate these locales?
322  */
323 void
324 list_locales(void)
325 {
326         size_t i;
327
328         init_locales_list();
329         for (i = 0; i < locales->sl_cur; i++) {
330                 printf("%s\n", locales->sl_str[i]);
331         }
332 }
333
334 /*
335  * qsort() helper function
336  */
337 static int
338 scmp(const void *s1, const void *s2)
339 {
340         return strcmp(*(const char **)s1, *(const char **)s2);
341 }
342
343 /*
344  * Output information about all available charmaps
345  *
346  * XXX this function is doing a task in hackish way, i.e. by scaning
347  *     list of locales, spliting their codeset part and building list of
348  *     them.
349  */
350 void
351 list_charmaps(void)
352 {
353         size_t i;
354         char *s, *cs;
355         StringList *charmaps;
356
357         /* initialize StringList */
358         charmaps = sl_init();
359         if (charmaps == NULL)
360                 err(1, "could not allocate memory");
361
362         /* fetch locales list */
363         init_locales_list();
364
365         /* split codesets and build their list */
366         for (i = 0; i < locales->sl_cur; i++) {
367                 s = locales->sl_str[i];
368                 if ((cs = strchr(s, '.')) != NULL) {
369                         cs++;
370                         if (sl_find(charmaps, cs) == NULL)
371                                 sl_add(charmaps, cs);
372                 }
373         }
374
375         /* add US-ASCII, if not yet added */
376         if (sl_find(charmaps, "US-ASCII") == NULL)
377                 sl_add(charmaps, "US-ASCII");
378
379         /* sort the list */
380         qsort(charmaps->sl_str, charmaps->sl_cur, sizeof(char *), scmp);
381
382         /* print results */
383         for (i = 0; i < charmaps->sl_cur; i++) {
384                 printf("%s\n", charmaps->sl_str[i]);
385         }
386 }
387
388 /*
389  * Retrieve sorted list of system locales (or user locales, if PATH_LOCALE
390  * environment variable is set)
391  */
392 void
393 init_locales_list(void)
394 {
395         DIR *dirp;
396         struct dirent *dp;
397         size_t i;
398         int bogus;
399
400         /* why call this function twice ? */
401         if (locales != NULL)
402                 return;
403
404         /* initialize StringList */
405         locales = sl_init();
406         if (locales == NULL)
407                 err(1, "could not allocate memory");
408
409         /* get actual locales directory name */
410         if (__detect_path_locale() != 0)
411                 err(1, "unable to find locales storage");
412
413         /* open locales directory */
414         dirp = opendir(_PathLocale);
415         if (dirp == NULL)
416                 err(1, "could not open directory '%s'", _PathLocale);
417
418         /* scan directory and store its contents except "." and ".." */
419         while ((dp = readdir(dirp)) != NULL) {
420                 if (*(dp->d_name) == '.')
421                         continue;               /* exclude "." and ".." */
422                 for (bogus = i = 0; i < NBOGUS; i++)
423                         if (strncmp(dp->d_name, boguslocales[i],
424                             strlen(boguslocales[i])) == 0)
425                                 bogus = 1;
426                 if (!bogus)
427                         sl_add(locales, strdup(dp->d_name));
428         }
429         closedir(dirp);
430
431         /* make sure that 'POSIX' and 'C' locales are present in the list.
432          * POSIX 1003.1-2001 requires presence of 'POSIX' name only here, but
433          * we also list 'C' for constistency
434          */
435         if (sl_find(locales, "POSIX") == NULL)
436                 sl_add(locales, "POSIX");
437
438         if (sl_find(locales, "C") == NULL)
439                 sl_add(locales, "C");
440
441         /* make output nicer, sort the list */
442         qsort(locales->sl_str, locales->sl_cur, sizeof(char *), scmp);
443 }
444
445 /*
446  * Show current locale status, depending on environment variables
447  */
448 void
449 showlocale(void)
450 {
451         size_t  i;
452         const char *lang, *vval, *eval;
453
454         setlocale(LC_ALL, "");
455
456         lang = getenv("LANG");
457         if (lang == NULL) {
458                 lang = "";
459         }
460         printf("LANG=%s\n", lang);
461         /* XXX: if LANG is null, then set it to "C" to get implied values? */
462
463         for (i = 0; i < NLCINFO; i++) {
464                 vval = setlocale(lcinfo[i].id, NULL);
465                 eval = getenv(lcinfo[i].name);
466                 if (eval != NULL && !strcmp(eval, vval)
467                                 && strcmp(lang, vval)) {
468                         /*
469                          * Appropriate environment variable set, its value
470                          * is valid and not overriden by LC_ALL
471                          *
472                          * XXX: possible side effect: if both LANG and
473                          * overriden environment variable are set into same
474                          * value, then it'll be assumed as 'implied'
475                          */
476                         printf("%s=%s\n", lcinfo[i].name, vval);
477                 } else {
478                         printf("%s=\"%s\"\n", lcinfo[i].name, vval);
479                 }
480         }
481
482         vval = getenv("LC_ALL");
483         if (vval == NULL) {
484                 vval = "";
485         }
486         printf("LC_ALL=%s\n", vval);
487 }
488
489 /*
490  * keyword value lookup helper (via localeconv())
491  */
492 char *
493 kwval_lconv(int id)
494 {
495         struct lconv *lc;
496         char *rval;
497
498         rval = NULL;
499         lc = localeconv();
500         switch (id) {
501                 case KW_GROUPING:
502                         rval = lc->grouping;
503                         break;
504                 case KW_INT_CURR_SYMBOL:
505                         rval = lc->int_curr_symbol;
506                         break;
507                 case KW_CURRENCY_SYMBOL:
508                         rval = lc->currency_symbol;
509                         break;
510                 case KW_MON_DECIMAL_POINT:
511                         rval = lc->mon_decimal_point;
512                         break;
513                 case KW_MON_THOUSANDS_SEP:
514                         rval = lc->mon_thousands_sep;
515                         break;
516                 case KW_MON_GROUPING:
517                         rval = lc->mon_grouping;
518                         break;
519                 case KW_POSITIVE_SIGN:
520                         rval = lc->positive_sign;
521                         break;
522                 case KW_NEGATIVE_SIGN:
523                         rval = lc->negative_sign;
524                         break;
525                 case KW_INT_FRAC_DIGITS:
526                         rval = &(lc->int_frac_digits);
527                         break;
528                 case KW_FRAC_DIGITS:
529                         rval = &(lc->frac_digits);
530                         break;
531                 case KW_P_CS_PRECEDES:
532                         rval = &(lc->p_cs_precedes);
533                         break;
534                 case KW_P_SEP_BY_SPACE:
535                         rval = &(lc->p_sep_by_space);
536                         break;
537                 case KW_N_CS_PRECEDES:
538                         rval = &(lc->n_cs_precedes);
539                         break;
540                 case KW_N_SEP_BY_SPACE:
541                         rval = &(lc->n_sep_by_space);
542                         break;
543                 case KW_P_SIGN_POSN:
544                         rval = &(lc->p_sign_posn);
545                         break;
546                 case KW_N_SIGN_POSN:
547                         rval = &(lc->n_sign_posn);
548                         break;
549                 case KW_INT_P_CS_PRECEDES:
550                         rval = &(lc->int_p_cs_precedes);
551                         break;
552                 case KW_INT_P_SEP_BY_SPACE:
553                         rval = &(lc->int_p_sep_by_space);
554                         break;
555                 case KW_INT_N_CS_PRECEDES:
556                         rval = &(lc->int_n_cs_precedes);
557                         break;
558                 case KW_INT_N_SEP_BY_SPACE:
559                         rval = &(lc->int_n_sep_by_space);
560                         break;
561                 case KW_INT_P_SIGN_POSN:
562                         rval = &(lc->int_p_sign_posn);
563                         break;
564                 case KW_INT_N_SIGN_POSN:
565                         rval = &(lc->int_n_sign_posn);
566                         break;
567                 default:
568                         break;
569         }
570         return (rval);
571 }
572
573 /*
574  * keyword value and properties lookup
575  */
576 int
577 kwval_lookup(char *kwname, char **kwval, int *cat, int *isstr)
578 {
579         int     rval;
580         size_t  i;
581
582         rval = 0;
583         for (i = 0; i < NKWINFO; i++) {
584                 if (strcasecmp(kwname, kwinfo[i].name) == 0) {
585                         rval = 1;
586                         *cat = kwinfo[i].catid;
587                         *isstr = kwinfo[i].isstr;
588                         if (kwinfo[i].value_ref < KW_ZERO) {
589                                 *kwval = nl_langinfo(kwinfo[i].value_ref);
590                         } else {
591                                 *kwval = kwval_lconv(kwinfo[i].value_ref);
592                         }
593                         break;
594                 }
595         }
596
597         return (rval);
598 }
599
600 /*
601  * Show details about requested keyword according to '-k' and/or '-c'
602  * command line options specified.
603  */
604 void
605 showdetails(char *kw)
606 {
607         int     isstr, cat, tmpval;
608         char    *kwval;
609
610         if (kwval_lookup(kw, &kwval, &cat, &isstr) == 0) {
611                 /*
612                  * invalid keyword specified.
613                  * XXX: any actions?
614                  */
615                 fprintf(stderr, "Unknown keyword: `%s'\n", kw);
616                 return;
617         }
618
619         if (prt_categories) {
620                   if (prt_keywords)
621                         printf("%-20s ", lookup_localecat(cat));
622                   else
623                         printf("%-20s\t%s\n", kw, lookup_localecat(cat));
624         }
625
626         if (prt_keywords) {
627                 if (isstr) {
628                         printf("%s=\"%s\"\n", kw, kwval);
629                 } else {
630                         tmpval = (char) *kwval;
631                         printf("%s=%d\n", kw, tmpval);
632                 }
633         }
634
635         if (!prt_categories && !prt_keywords) {
636                 if (isstr) {
637                         printf("%s\n", kwval);
638                 } else {
639                         tmpval = (char) *kwval;
640                         printf("%d\n", tmpval);
641                 }
642         }
643 }
644
645 /*
646  * Convert locale category id into string
647  */
648 const char *
649 lookup_localecat(int cat)
650 {
651         size_t  i;
652
653         for (i = 0; i < NLCINFO; i++)
654                 if (lcinfo[i].id == cat) {
655                         return (lcinfo[i].name);
656                 }
657         return ("UNKNOWN");
658 }
659
660 /*
661  * Show list of keywords
662  */
663 void
664 showkeywordslist(char *substring)
665 {
666         size_t  i;
667
668 #define FMT "%-20s %-12s %-7s %-20s\n"
669
670         if (substring == NULL)
671                 printf("List of available keywords\n\n");
672         else
673                 printf("List of available keywords starting with '%s'\n\n",
674                     substring);
675         printf(FMT, "Keyword", "Category", "Type", "Comment");
676         printf("-------------------- ------------ ------- --------------------\n");
677         for (i = 0; i < NKWINFO; i++) {
678                 if (substring != NULL) {
679                         if (strncmp(kwinfo[i].name, substring,
680                             strlen(substring)) != 0)
681                                 continue;
682                 }
683                 printf(FMT,
684                         kwinfo[i].name,
685                         lookup_localecat(kwinfo[i].catid),
686                         (kwinfo[i].isstr == 0) ? "number" : "string",
687                         kwinfo[i].comment);
688         }
689 }