summaryrefslogtreecommitdiff
path: root/src/nonstd/_locale.h
blob: 40e66548818d76ef1ee8c9d797b019e9fb7ef30e (plain)
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
#include <locale.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>

#include "nonstd/locale.h"
#include "nonstd/ctype.h"

/*
#define LC_COLLATE_MASK (1<<0)
#define LC_CTYPE_MASK (1<<1)
#define LC_MONETARY_MASK (1<<2)
#define LC_NUMERIC_MASK (1<<3)
#define LC_TIME_MASK (1<<4)
#define LC_MESSAGES_MASK (1<<5)
*/

#define stringreplace(_old, _new) do { \
	_old = realloc(_old, strlen(_new) + 1); \
	if (_old == NULL) { \
		return NULL; \
	} \
	strcpy(_old, _new); \
} while (0)

static char * (__load_locale)(struct __locale_t *loc, int mask, const char *name)
{
	char localepath[FILENAME_MAX] = "/lib/locale/";
	strcat(localepath, name);

	FILE *localefile = fopen(localepath, "rb");
	if (localefile == NULL && strcmp(name, "C") && strcmp(name, "POSIX")) {
		return NULL;
	}

	if (mask & LC_COLLATE_MASK) {
		stringreplace(loc->collate, name);

		/* read from file */
		loc->collation = NULL;
	}

	if (mask & LC_CTYPE_MASK) {
		stringreplace(loc->ctype, name);

		if (localefile == NULL) {
			int i;
			loc->ctattr = realloc(loc->ctattr, CHAR_MAX);

			for (i = 0; i < 32; i++) {
				loc->ctattr[i] = CT_CNTRL;
			}
			for (i = 'a'; i < 'z'; i++) {
				loc->ctattr[i] = CT_LOWER;
			}
			for (i = 'A'; i < 'Z'; i++) {
				loc->ctattr[i] = CT_UPPER;
			}
			for (i = '0'; i < '9'; i++) {
				loc->ctattr[i] = CT_DIGIT | CT_XDIGIT;
			}
			/* others */

			loc->ctoupper = realloc(loc->ctoupper, CHAR_MAX);
			for (i = 0; i < CHAR_MAX; i++) {
				loc->ctoupper[i] = ('a' <= i && i <= 'z') ? i + 32 : i;
			}

			loc->ctolower = realloc(loc->ctolower, CHAR_MAX);
			for (i = 0; i < CHAR_MAX; i++) {
				loc->ctolower[i] = ('A' <= i && i <= 'Z') ? i - 32 : i;
			}
		} else {
			/* read from file */
			loc->ctattr = NULL;
			loc->ctoupper = NULL;
			loc->ctolower = NULL;
		}
	}

	if (mask & LC_MONETARY_MASK) {
		stringreplace(loc->monetary, name);

		/*
		loc->mn.monetary fields;
		*/
	}

	if (mask & LC_NUMERIC_MASK) {
		stringreplace(loc->numeric, name);

		/*
		loc->mn.numeric fields
		*/
	}

	if (mask & LC_TIME_MASK) {
		stringreplace(loc->time, name);

		/* read from file */
		/* loc->lc_time */
	}

	if (mask & LC_MESSAGES_MASK) {
		stringreplace(loc->messages, name);

		/* read */
		loc->lc_messages.yesexpr = NULL;
		loc->lc_messages.noexpr = NULL;
	}

	return name;
}