summaryrefslogtreecommitdiff
path: root/src/catalog.c
blob: c3ec9b22d9ed296e91d89afad86f8c57f96acc68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
#include "catalog.h"
#include "logerr.h"

#include <assert.h>
#include <errno.h>
#include <nl_types.h>
#include <stdlib.h>
#include <string.h>

#ifdef TEST
#include "../tests/tests-lib.h"
#include "../tests/slurp.h"

static const char *const
FNAME = __FILE__ ".txt";

enum TEST_MSGCATALOG_ID {
	MSG_X_FIRST = 1,
	MSG_X_1,
	MSG_X_2,
	MSG_X_LAST,
	MSG_STANDALONE,
};

static const char *const
TEST_MSGS[] = {
	"",
	[MSG_X_FIRST]="First line\n",
	[MSG_X_1]="a second\n",
	[MSG_X_2]="a third\n",
	[MSG_X_LAST]="and the last one\n",
	[MSG_STANDALONE]="single line message\n",
	NULL
};
#endif



static const char *const
CATALOG_NAME = NAME_MACRO_STRING;

static nl_catd
catalog_descriptor = NULL;

static const char *const
NLSPATH = LOCALEDIR_MACRO_STRING "/%l_%t/LC_MESSAGES/%N.cat" ":"
	LOCALEDIR_MACRO_STRING "/%l/LC_MESSAGES/%N.cat";

static const char *const
NLSPATH_KEY = "NLSPATH";


int
i18n_init(void) {
	int rc = 0;

	static const int should_overwrite = 0;
	if (setenv(NLSPATH_KEY, NLSPATH, should_overwrite)) {
		logerr("setenv(\"%s\", \"%s\", 0): %s\n", NLSPATH_KEY,
			NLSPATH, strerror(errno));
		rc = -1;
		goto out;
	}

	catalog_descriptor = catopen(CATALOG_NAME, 0);
	if (catalog_descriptor && catalog_descriptor == (nl_catd)-1) {
		logerr("catopen(\"%s\", 0): %s\n", CATALOG_NAME, strerror(errno));
		catalog_descriptor = NULL;
		rc = -1;
		goto out;
	}

out:
	return rc;
}

#ifdef TEST
static int
test_i18n_init(void) {
	int rc = 0;

	test_start("i18n_init()");

	{
		testing("simple call without touching the environment");

		static const int should_overwrite = 1;
		if (setenv(NLSPATH_KEY, "src/%N.en.cat", should_overwrite)) {
			logerr("setenv(\"%s\", \"src/%%N.en.cat\", 1): %s\n",
				NLSPATH_KEY, strerror(errno));
			rc = -1;
			goto out;
		}

		if (i18n_init()) {
			logerr("i18n_init()\n");
			rc = -1;
			goto out;
		}

		test_ok();
	}

out:
	if (i18n_destroy()) {
		logerr("i18n_destroy()\n");
		rc = -1;
	}
	return rc;
}
#endif


int
i18n_destroy(void) {
	int rc = 0;

	if (catalog_descriptor) {
		if (catclose(catalog_descriptor)) {
			logerr("catclose(...): %s\n", strerror(errno));
			rc = -1;
			goto out;
		}
	}

out:
	if (catalog_descriptor) {
		catalog_descriptor = NULL;
	}
	return rc;
}

#ifdef TEST
static int
test_i18n_destroy(void) {
	int rc = 0;

	test_start("i18n_destroy()");

	{
		testing("simple call without init first");

		if (i18n_destroy()) {
			logerr("i18n_destroy()\n");
			rc = -1;
			goto out;
		}

		test_ok();
	}

out:
	return rc;
}
#endif


/**
 * Infallible: always returns a valid string, no matter what.
 */
const char *
s(const char* const MSGS[], const int msg_id) {
	assert(msg_id > 0);
	// FIXME: assert within bounds!
	// printf("sizeof(MSGS): %ld\n", sizeof(MSGS));
	if (!catalog_descriptor) {
		return MSGS[msg_id];
	}

	errno = 0;
	const char *const ret =
		catgets(catalog_descriptor, NL_SETD, msg_id, MSGS[msg_id]);
	if (errno) {
		logerr("catgets(%d): %s\n", msg_id, strerror(errno));
	}

	return ret;
}

#ifdef TEST
static int
test_s(void) {
	int rc = 0;

	test_start("_()");
	FILE *file = NULL;
	char *str = NULL;

	{
		testing("empty string");

		file = fopen(FNAME, "w");
		if (!file) {
			perror("fopen(FNAME, \"w\")");
			rc = -1;
			goto out;
		}

		// FIXME: implement correct test



		test_ok();
	}

out:
	if (str) {
		free(str);
	}
	if (file) {
		if (fclose(file)) {
			logerr("fclose(file): %s\n", strerror(errno));
			rc = -1;
		}
	}
	return rc;
}
#endif


int
s_print_msgs(
	const char *const MSGS[],
	FILE *restrict stream,
	const int msg_begin,
	const int msg_end
) {
	int rc = 0;

	for (int i = msg_begin; i <= msg_end; i++) {
		if (fprintf(stream, "%s", s(MSGS, i)) < 0) {
			logerr("fprintf(stream, \"%%s\", _(%d)): %s\n", i,
				strerror(errno));
			rc = -1;
			goto out;
		}
	}

out:
	return rc;
}

#ifdef TEST
static int
test_s_print_msgs(void) {
	int rc = 0;

	test_start("s_print_msgs()");
	FILE *file = NULL;
	char *str = NULL;

	{
		testing("message in range");

		file = fopen(FNAME, "w");
		if (!file) {
			perror("fopen(FNAME, \"w\")");
			rc = -1;
			goto out;
		}

		if (s_print_msgs(TEST_MSGS, file, MSG_X_FIRST, MSG_X_LAST)) {
			logerr("print_msgs(TEST_MSGS, file, MSG_X_FIRST, MSG_X_LAST)\n");
			rc = -1;
			goto out;
		}

		const int ret = fclose(file);
		file = NULL;
		if (ret) {
			logerr("fclose(file): %s\n", strerror(errno));
			rc = -1;
			goto out;
		}

		if (slurp_for_tests(FNAME, &str)) {
			logerr("slurp_for_tests(FNAME, &str)\n");
			rc = -1;
			goto out;
		}

		const char *const expected =
			"First line\n"
			"a second\n"
			"a third\n"
			"and the last one\n"
			;

		assert(strcmp(expected, str) == 0);

		free(str);
		str = NULL;

		test_ok();
	}
	{
		testing("range begin and end is the same");

		file = fopen(FNAME, "w");
		if (!file) {
			logerr("fopen(FNAME, \"w\"): %s\n", strerror(errno));
			rc = -1;
			goto out;
		}

		if (s_print_msgs(TEST_MSGS, file, MSG_X_FIRST, MSG_X_FIRST)) {
			logerr("s_print_msgs(TEST_MSGS, file, MSG_X_FIRST, MSG_X_FIRST)\n");
			rc = -1;
			goto out;
		}

		const int ret = fclose(file);
		file = NULL;
		if (ret) {
			logerr("fclose(file): %s\n", strerror(errno));
			rc = -1;
			goto out;
		}

		if (slurp_for_tests(FNAME, &str)) {
			logerr("slurp_for_tests(FNAME, &str)\n");
			rc = -1;
			goto out;
		}

		const char *const expected =
			"First line\n";

		assert(strcmp(expected, str) == 0);

		free(str);
		str = NULL;

		test_ok();
	}

out:
	if (str) {
		free(str);
	}
	if (file) {
		if (fclose(file)) {
			logerr("fclose(file): %s\n", strerror(errno));
			rc = -1;
		}
	}
	return rc;
}
#endif


int
s_print_msg(const char *const MSGS[], FILE *const fd, const int msg_id) {
	return s_print_msgs(MSGS, fd, msg_id, msg_id);
}

#ifdef TEST
static int
test_s_print_msg(void) {
	int rc = 0;

	test_start("s_print_msg()");
	FILE *file = NULL;
	char *str = NULL;

	{
		testing("simple individual message");

		file = fopen(FNAME, "w");
		if (!file) {
			logerr("fopen(FNAME, \"w\"): %s\n");
			rc = -1;
			goto out;
		}

		if (s_print_msg(TEST_MSGS, file, MSG_STANDALONE)) {
			logerr("s_print_msg(TEST_MSGS, file, MSG_STANDALONE)\n");
			rc = -1;
			goto out;
		}

		const int ret = fclose(file);
		file = NULL;
		if (ret) {
			logerr("fopen(file): %s\n", strerror(errno));
			rc = -1;
			goto out;
		}

		if (slurp_for_tests(FNAME, &str)) {
			logerr("slurp_for_tests(FNAME, &str)\n");
			rc = -1;
			goto out;
		}

		const char *const expected =
			"single line message\n";

		assert(strcmp(expected, str) == 0);

		free(str);
		str = NULL;

		test_ok();
	}

out:
	if (str) {
		free(str);
	}
	if (file) {
		if (fclose(file)) {
			logerr("fclose(file): %s\n", strerror(errno));
			rc = -1;
		}
	}
	return rc;
}
#endif


int
dump_translatable_strings(const char *const MSGS[]) {
	int rc = 0;

	for (size_t i = 1; MSGS[i]; i++) {
		if (printf("%ld ", i) < 0) {
			logerr("printf(\"%%ld\", %d): %s\n", i);
			rc = -1;
			goto out;
		}

		for (size_t j = 0; MSGS[i][j]; j++) {
			if (MSGS[i][j] == '\n') {
				if (printf("\\n") < 0) {
					logerr("printf(\"\\\\n\"): %s\n",
						strerror(errno));
					rc = -1;
					goto out;
				}
			} else {
				if (printf("%c", MSGS[i][j]) < 0) {
					logerr("printf(\"%%c\", "
						"MSGS[%ld][%ld]): %s\n",
						i, j, strerror(errno));
					rc = -1;
					goto out;
				}
			}
		}

		if (printf("\n\n") < 0) {
			logerr("printf(\"\\n\\n\"): %s\n", strerror(errno));
			rc = -1;
			goto out;
		}
	}

out:
	return rc;
}

#ifdef TEST
int
main(void) {
	int rc = 0;

	if (test_i18n_init()) {
		logerr("test_i18n_init()\n");
		rc = -1;
		goto out;
	}

	if (test_i18n_destroy()) {
		logerr("test_i18n_destroy()\n");
		rc = -1;
		goto out;
	}

	if (test_s()) {
		logerr("test_s()\n");
		rc = -1;
		goto out;
	}

	if (test_s_print_msgs()) {
		logerr("test_s_print_msgs()\n");
		rc = -1;
		goto out;
	}

	if (test_s_print_msg()) {
		logerr("test_s_print_msg()\n");
		rc = -1;
		goto out;
	}

out:
	return !!rc;
}
#endif