don't bother resolving onbld python module deps
[unleashed.git] / bin / localedef / messages.c
blob5ef5caafdc498442a67835de22936057f7e886a9
1 /*
2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
5 * 1.0 of the CDDL.
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
13 * Copyright 2013 Garrett D'Amore <garrett@damore.org>
14 * Copyright 2010 Nexenta Systems, Inc. All rights reserved.
18 * LC_MESSAGES database generation routines for localedef.
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <errno.h>
24 #include <sys/types.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <alloca.h>
28 #include "localedef.h"
29 #include "parser.h"
30 #include "lmessages.h"
32 static struct lc_messages msgs;
34 void
35 init_messages(void)
37 (void) memset(&msgs, 0, sizeof (msgs));
40 void
41 add_message(wchar_t *wcs)
43 char *str;
45 if ((str = to_mb_string(wcs)) == NULL) {
46 INTERR;
47 return;
49 free(wcs);
51 switch (last_kw) {
52 case T_YESSTR:
53 msgs.yesstr = str;
54 break;
55 case T_NOSTR:
56 msgs.nostr = str;
57 break;
58 case T_YESEXPR:
59 msgs.yesexpr = str;
60 break;
61 case T_NOEXPR:
62 msgs.noexpr = str;
63 break;
64 default:
65 free(str);
66 INTERR;
67 break;
71 void
72 dump_messages(void)
74 FILE *f;
75 char *ptr;
77 if (msgs.yesstr == NULL) {
78 warn(_("missing field 'yesstr'"));
79 msgs.yesstr = "";
81 if (msgs.nostr == NULL) {
82 warn(_("missing field 'nostr'"));
83 msgs.nostr = "";
87 * CLDR likes to add : separated lists for yesstr and nostr.
88 * Legacy Solaris code does not seem to grok this. Fix it.
90 if ((ptr = strchr(msgs.yesstr, ':')) != NULL)
91 *ptr = 0;
92 if ((ptr = strchr(msgs.nostr, ':')) != NULL)
93 *ptr = 0;
95 if ((f = open_category()) == NULL) {
96 return;
99 if ((putl_category(msgs.yesexpr, f) == EOF) ||
100 (putl_category(msgs.noexpr, f) == EOF) ||
101 (putl_category(msgs.yesstr, f) == EOF) ||
102 (putl_category(msgs.nostr, f) == EOF)) {
103 return;
105 close_category(f);