1 /* $NetBSD: textdomain.c,v 1.11 2004/09/23 16:44:26 tshiozak Exp $ */
4 * Copyright (c) 2000, 2001 Citrus Project,
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 #include <sys/cdefs.h>
30 __RCSID("$NetBSD: textdomain.c,v 1.11 2004/09/23 16:44:26 tshiozak Exp $");
32 #include <sys/param.h>
38 #include "libintl_local.h"
39 #include "pathnames.h"
41 static struct domainbinding __default_binding
= {
42 NULL
, DEFAULT_DOMAINNAME
, _PATH_TEXTDOMAIN
,
44 struct domainbinding
*__bindings
= &__default_binding
;
45 char __current_domainname
[PATH_MAX
] = DEFAULT_DOMAINNAME
;
47 static struct domainbinding
*domainbinding_lookup(const char *, int);
50 * set the default domainname for dcngettext() and friends.
53 textdomain(const char *domainname
)
56 /* NULL pointer gives the current setting */
58 return __current_domainname
;
60 /* empty string sets the value back to the default */
62 strlcpy(__current_domainname
, DEFAULT_DOMAINNAME
,
63 sizeof(__current_domainname
));
65 strlcpy(__current_domainname
, domainname
,
66 sizeof(__current_domainname
));
68 return __current_domainname
;
72 bindtextdomain(const char *domainname
, const char *dirname
)
74 struct domainbinding
*p
;
76 /* NULL pointer or empty string returns NULL with no operation */
77 if (!domainname
|| !*domainname
)
80 if (dirname
&& (strlen(dirname
) + 1 > sizeof(p
->path
)))
84 /* disallow relative path */
85 if (dirname
[0] != '/')
89 if (strlen(domainname
) + 1 > sizeof(p
->domainname
))
92 p
= domainbinding_lookup(domainname
, (dirname
!= NULL
));
98 return (char *)__UNCONST(_PATH_TEXTDOMAIN
);
101 strlcpy(p
->path
, dirname
, sizeof(p
->path
));
102 p
->mohandle
.mo
.mo_magic
= 0; /* invalidate current mapping */
108 bind_textdomain_codeset(const char *domainname
, const char *codeset
)
110 struct domainbinding
*p
;
112 p
= domainbinding_lookup(domainname
, (codeset
!= NULL
));
119 p
->codeset
= strdup(codeset
);
126 * lookup binding for the domainname
128 static struct domainbinding
*
129 domainbinding_lookup(const char *domainname
, int alloc
)
131 struct domainbinding
*p
;
133 for (p
= __bindings
; p
; p
= p
->next
)
134 if (strcmp(p
->domainname
, domainname
) == 0)
138 p
= (struct domainbinding
*)malloc(sizeof(*p
));
141 memset(p
, 0, sizeof(*p
));
142 p
->next
= __bindings
;
143 strlcpy(p
->domainname
, domainname
, sizeof(p
->domainname
));