2 Unix SMB/CIFS implementation.
3 tdb based replacement for gettext
4 Copyright (C) Andrew Tridgell 2001
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "system/filesys.h"
22 #include "intl/lang_tdb.h"
25 static TDB_CONTEXT
*tdb
;
27 /* the currently selected language */
28 static char *current_lang
;
31 /* load a msg file into the tdb */
32 static bool load_msg(const char *msg_file
)
39 lines
= file_lines_load(msg_file
, &num_lines
, 0, NULL
);
45 if (tdb_lockall(tdb
) != 0) {
55 for (i
=0;i
<num_lines
;i
++) {
56 if (strncmp(lines
[i
], "msgid \"", 7) == 0) {
59 if (msgid
&& strncmp(lines
[i
], "msgstr \"", 8) == 0) {
60 msgstr
= lines
[i
] + 8;
61 trim_char(msgid
, '\0', '\"');
62 trim_char(msgstr
, '\0', '\"');
66 all_string_sub(msgid
, "\\n", "\n", 0);
67 all_string_sub(msgstr
, "\\n", "\n", 0);
68 data
= string_term_tdb_data(msgstr
);
69 tdb_store_bystring(tdb
, msgid
, data
, 0);
81 /* work out what language to use from locale variables */
82 static const char *get_lang(void)
84 const char *vars
[] = {"LANGUAGE", "LC_ALL", "LC_LANG", "LANG", NULL
};
88 for (i
=0; vars
[i
]; i
++) {
89 if ((p
= getenv(vars
[i
]))) {
97 /* initialise the message translation subsystem. If the "lang" argument
98 is NULL then get the language from the normal environment variables */
99 bool lang_tdb_init(const char *lang
)
102 char *msg_path
= NULL
;
104 static int initialised
;
110 /* we only want to init once per process, unless given
112 if (initialised
&& !lang
)
116 /* we are re-initialising, free up any old init */
121 SAFE_FREE(current_lang
);
127 /* no lang given, use environment */
131 /* if no lang then we don't translate */
135 dpath
= data_path(talloc_tos(), (const char *)lang
);
140 if (asprintf(&msg_path
, "%s.msg", dpath
) == -1) {
141 DEBUG(0, ("asprintf failed\n"));
144 if (stat(msg_path
, &st
) != 0) {
145 /* the msg file isn't available */
146 DEBUG(10, ("lang_tdb_init: %s: %s\n", msg_path
,
151 lpath
= lock_path("lang_");
156 if (asprintf(&path
, "%s%s.tdb", lpath
, lang
) == -1) {
157 DEBUG(0, ("asprintf failed\n"));
161 DEBUG(10, ("lang_tdb_init: loading %s\n", path
));
163 tdb
= tdb_open_log(path
, 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0644);
165 tdb
= tdb_open_log(path
, 0, TDB_DEFAULT
, O_RDONLY
, 0);
167 DEBUG(10, ("lang_tdb_init: %s: %s\n", path
,
171 current_lang
= SMB_STRDUP(lang
);
176 loadtime
= tdb_fetch_int32(tdb
, "/LOADTIME/");
178 if (loadtime
== -1 || loadtime
< st
.st_mtime
) {
180 tdb_store_int32(tdb
, "/LOADTIME/", (int)time(NULL
));
183 current_lang
= SMB_STRDUP(lang
);
195 /* translate a msgid to a message string in the current language
196 returns a string that must be freed by calling lang_msg_free()
198 const char *lang_msg(const char *msgid
)
202 char *q
, *msgid_quoted
;
207 if (!tdb
) return msgid
;
209 /* Due to the way quotes in msgids are escaped in the msg file we
210 must replace " with \" before doing a lookup in the tdb. */
214 for(p
= msgid
; *p
; p
++) {
219 if (!(msgid_quoted
= (char *)SMB_MALLOC(strlen(msgid
) + count
+ 1)))
222 /* string_sub() is unsuitable here as it replaces some punctuation
223 chars with underscores. */
225 for(p
= msgid
, q
= msgid_quoted
; *p
; p
++) {
236 data
= tdb_fetch_bystring(tdb
, msgid_quoted
);
240 /* if the message isn't found then we still need to return a pointer
241 that can be freed. Pity. */
243 return SMB_STRDUP(msgid
);
245 return (const char *)data
.dptr
;
249 /* free up a string from lang_msg() */
250 void lang_msg_free(const char *msgstr
)
253 free(discard_const_p(void, msgstr
));
257 return the current language - needed for language file mappings
259 char *lang_tdb_current(void)