Janitorial duties to make autogen.sh portable.
[Samba/gebeck_regimport.git] / source3 / intl / lang_tdb.c
blob87ef4e39c7bb1cd15a2b936b2001ae0877e60886
1 /*
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 2 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, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
23 static TDB_CONTEXT *tdb;
25 /* the currently selected language */
26 static char *current_lang;
29 /* load a msg file into the tdb */
30 static BOOL load_msg(const char *msg_file)
32 char **lines;
33 int num_lines, i;
34 char *msgid, *msgstr;
35 TDB_DATA key, data;
37 lines = file_lines_load(msg_file, &num_lines);
39 if (!lines) {
40 return False;
43 if (tdb_lockall(tdb) != 0) return False;
45 /* wipe the db */
46 tdb_traverse(tdb, tdb_traverse_delete_fn, NULL);
48 msgid = NULL;
50 for (i=0;i<num_lines;i++) {
51 if (strncmp(lines[i], "msgid \"", 7) == 0) {
52 msgid = lines[i] + 7;
54 if (msgid && strncmp(lines[i], "msgstr \"", 8) == 0) {
55 msgstr = lines[i] + 8;
56 trim_string(msgid, NULL, "\"");
57 trim_string(msgstr, NULL, "\"");
58 if (*msgstr == 0) {
59 msgstr = msgid;
61 key.dptr = msgid;
62 key.dsize = strlen(msgid)+1;
63 data.dptr = msgstr;
64 data.dsize = strlen(msgstr)+1;
65 tdb_store(tdb, key, data, 0);
66 msgid = NULL;
70 file_lines_free(lines);
71 tdb_unlockall(tdb);
73 return True;
77 /* work out what language to use from locale variables */
78 static const char *get_lang(void)
80 const char *vars[] = {"LANGUAGE", "LC_ALL", "LC_LANG", "LANG", NULL};
81 int i;
82 char *p;
84 for (i=0; vars[i]; i++) {
85 if ((p = getenv(vars[i]))) {
86 return p;
90 return NULL;
93 /* initialise the message translation subsystem. If the "lang" argument
94 is NULL then get the language from the normal environment variables */
95 BOOL lang_tdb_init(const char *lang)
97 char *path = NULL;
98 char *msg_path = NULL;
99 struct stat st;
100 static int initialised;
101 time_t loadtime;
103 /* we only want to init once per process, unless given
104 an override */
105 if (initialised && !lang) return True;
107 if (initialised) {
108 /* we are re-initialising, free up any old init */
109 if (tdb) {
110 tdb_close(tdb);
111 tdb = NULL;
113 SAFE_FREE(current_lang);
116 initialised = 1;
118 if (!lang) {
119 /* no lang given, use environment */
120 lang = get_lang();
123 /* if no lang then we don't translate */
124 if (!lang) return True;
126 asprintf(&msg_path, "%s.msg", lib_path((const char *)lang));
127 if (stat(msg_path, &st) != 0) {
128 /* the msg file isn't available */
129 free(msg_path);
130 return False;
134 asprintf(&path, "%s%s.tdb", lock_path("lang_"), lang);
136 tdb = tdb_open_log(path, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0644);
137 if (!tdb) {
138 tdb = tdb_open_log(path, 0, TDB_DEFAULT, O_RDONLY, 0);
139 free(path);
140 free(msg_path);
141 if (!tdb) return False;
142 current_lang = strdup(lang);
143 return True;
146 free(path);
148 loadtime = tdb_fetch_int32(tdb, "/LOADTIME/");
150 if (loadtime == -1 || loadtime < st.st_mtime) {
151 load_msg(msg_path);
152 tdb_store_int32(tdb, "/LOADTIME/", (int)time(NULL));
154 free(msg_path);
156 current_lang = strdup(lang);
158 return True;
161 /* translate a msgid to a message string in the current language
162 returns a string that must be freed by calling lang_msg_free()
164 const char *lang_msg(const char *msgid)
166 TDB_DATA key, data;
168 lang_tdb_init(NULL);
170 if (!tdb) return msgid;
172 key.dptr = (char *)msgid;
173 key.dsize = strlen(msgid)+1;
175 data = tdb_fetch(tdb, key);
177 /* if the message isn't found then we still need to return a pointer
178 that can be freed. Pity. */
179 if (!data.dptr)
180 return strdup(msgid);
182 return (const char *)data.dptr;
186 /* free up a string from lang_msg() */
187 void lang_msg_free(const char *msgstr)
189 if (!tdb) return;
190 free((void *)msgstr);
195 when the _() translation macro is used there is no obvious place to free
196 the resulting string and there is no easy way to give a static pointer.
197 All we can do is rotate between some static buffers and hope a single d_printf()
198 doesn't have more calls to _() than the number of buffers
200 const char *lang_msg_rotate(const char *msgid)
202 #define NUM_LANG_BUFS 4
203 char *msgstr;
204 static pstring bufs[NUM_LANG_BUFS];
205 static int next;
207 msgstr = (char *)lang_msg(msgid);
208 if (!msgstr) return msgid;
210 pstrcpy(bufs[next], msgstr);
211 msgstr = bufs[next];
213 next = (next+1) % NUM_LANG_BUFS;
215 return msgstr;
220 return the current language - needed for language file mappings
222 char *lang_tdb_current(void)
224 return current_lang;