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.
22 #include "lib/tdb/include/tdbutil.h"
23 #include "system/time.h"
24 #include "system/filesys.h"
27 static TDB_CONTEXT
*tdb
;
29 /* the currently selected language */
30 static char *current_lang
;
33 /* load a msg file into the tdb */
34 static BOOL
load_msg(const char *msg_file
)
41 lines
= file_lines_load(msg_file
, &num_lines
);
47 if (tdb_lockall(tdb
) != 0) return False
;
50 tdb_traverse(tdb
, tdb_traverse_delete_fn
, NULL
);
54 for (i
=0;i
<num_lines
;i
++) {
55 if (strncmp(lines
[i
], "msgid \"", 7) == 0) {
58 if (msgid
&& strncmp(lines
[i
], "msgstr \"", 8) == 0) {
59 msgstr
= lines
[i
] + 8;
60 trim_string(msgid
, NULL
, "\"");
61 trim_string(msgstr
, NULL
, "\"");
66 key
.dsize
= strlen(msgid
)+1;
68 data
.dsize
= strlen(msgstr
)+1;
69 tdb_store(tdb
, key
, data
, 0);
74 file_lines_free(lines
);
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
;
108 /* we only want to init once per process, unless given
110 if (initialised
&& !lang
) return True
;
113 /* we are re-initialising, free up any old init */
118 SAFE_FREE(current_lang
);
124 /* no lang given, use environment */
128 /* if no lang then we don't translate */
129 if (!lang
) return True
;
131 mem_ctx
= talloc_init("lang_tdb_init");
135 asprintf(&msg_path
, "%s.msg", lib_path(mem_ctx
, (const char *)lang
));
136 if (stat(msg_path
, &st
) != 0) {
137 /* the msg file isn't available */
139 talloc_free(mem_ctx
);
144 asprintf(&path
, "%s%s.tdb", lock_path(mem_ctx
, "lang_"), lang
);
146 tdb
= tdb_open(path
, 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0644);
148 tdb
= tdb_open(path
, 0, TDB_DEFAULT
, O_RDONLY
, 0);
151 talloc_free(mem_ctx
);
152 if (!tdb
) return False
;
153 current_lang
= strdup(lang
);
158 talloc_free(mem_ctx
);
160 loadtime
= tdb_fetch_int32(tdb
, "/LOADTIME/");
162 if (loadtime
== -1 || loadtime
< st
.st_mtime
) {
164 tdb_store_int32(tdb
, "/LOADTIME/", (int)time(NULL
));
168 current_lang
= strdup(lang
);
173 /* translate a msgid to a message string in the current language
174 returns a string that must be freed by calling lang_msg_free()
176 char *lang_msg(const char *msgid
)
182 if (!tdb
) return strdup(msgid
);
184 key
.dptr
= strdup(msgid
);
185 key
.dsize
= strlen(msgid
)+1;
187 data
= tdb_fetch(tdb
, key
);
191 /* if the message isn't found then we still need to return a pointer
192 that can be freed. Pity. */
194 return strdup(msgid
);
200 /* free up a string from lang_msg() */
201 void lang_msg_free(char *msgstr
)
208 when the _() translation macro is used there is no obvious place to free
209 the resulting string and there is no easy way to give a static pointer.
210 All we can do is rotate between some static buffers and hope a single d_printf()
211 doesn't have more calls to _() than the number of buffers
213 const char *lang_msg_rotate(const char *msgid
)
215 #define NUM_LANG_BUFS 4
217 static pstring bufs
[NUM_LANG_BUFS
];
220 msgstr
= lang_msg(msgid
);
221 if (!msgstr
) return msgid
;
223 pstrcpy(bufs
[next
], msgstr
);
226 next
= (next
+1) % NUM_LANG_BUFS
;
233 return the current language - needed for language file mappings
235 char *lang_tdb_current(void)