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
|
/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2008 AT&T Intellectual Property *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* http://www.opensource.org/licenses/cpl1.0.txt *
* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
/*
* catopen intercept
* the ast catalogs are checked first
* the ast mc* and native cat* routines do all the work
* catalogs found by mcfind() are converted from utf to ucs
*
* nl_catd is cast to void*
* this is either an Mc_t* (Mc_t.set != 0)
* or a Cc_t* where Cc_t.cat is the native nl_catd
*/
#include <ast.h>
#include <mc.h>
#include <nl_types.h>
#include <iconv.h>
#ifndef DEBUG_trace
#define DEBUG_trace 0
#endif
#if _lib_catopen
#undef nl_catd
#undef catopen
#undef catgets
#undef catclose
typedef struct
{
Mcset_t* set;
nl_catd cat;
iconv_t cvt;
Sfio_t* tmp;
} Cc_t;
#else
#define _ast_nl_catd nl_catd
#define _ast_catopen catopen
#define _ast_catgets catgets
#define _ast_catclose catclose
#endif
_ast_nl_catd
_ast_catopen(const char* name, int flag)
{
Mc_t* mc;
char* s;
Sfio_t* ip;
char path[PATH_MAX];
/*
* first try the ast catalogs
*/
#if DEBUG_trace
sfprintf(sfstderr, "AHA#%d:%s %s\n", __LINE__, __FILE__, name);
#endif
if ((s = mcfind(path, NiL, name, LC_MESSAGES, flag)) && (ip = sfopen(NiL, s, "r")))
{
#if DEBUG_trace
sfprintf(sfstderr, "AHA#%d:%s %s\n", __LINE__, __FILE__, s);
#endif
mc = mcopen(ip);
sfclose(ip);
if (mc)
return (_ast_nl_catd)mc;
}
#if _lib_catopen
if (strcmp(setlocale(LC_MESSAGES, NiL), "debug"))
{
Cc_t* cc;
nl_catd d;
/*
* now the native catalogs
*/
if (s && (d = catopen(s, flag)) != (nl_catd)(-1) || !(s = 0) && (d = catopen(name, flag)) != (nl_catd)(-1))
{
if (!(cc = newof(0, Cc_t, 1, 0)))
{
catclose(d);
return (_ast_nl_catd)(-1);
}
cc->cat = d;
if ((s || *name == '/') && (ast.locale.set & (1<<AST_LC_MESSAGES)))
{
if ((cc->cvt = iconv_open("", "utf")) == (iconv_t)(-1) || !(cc->tmp = sfstropen()))
{
catclose(d);
return (_ast_nl_catd)(-1);
}
}
else
cc->cvt = (iconv_t)(-1);
#if DEBUG_trace
sfprintf(sfstderr, "AHA#%d:%s %s %s native %p\n", __LINE__, __FILE__, s, name, cc->cat);
#endif
return (_ast_nl_catd)cc;
}
}
#endif
/*
* loser
*/
return (_ast_nl_catd)(-1);
}
char*
_ast_catgets(_ast_nl_catd cat, int set, int num, const char* msg)
{
if (cat == (_ast_nl_catd)(-1))
return (char*)msg;
#if _lib_catopen
if (!((Cc_t*)cat)->set)
{
char* s;
size_t n;
msg = (char*)catgets(((Cc_t*)cat)->cat, set, num, msg);
if (((Cc_t*)cat)->cvt != (iconv_t)(-1))
{
s = (char*)msg;
n = strlen(s);
iconv_write(((Cc_t*)cat)->cvt, ((Cc_t*)cat)->tmp, &s, &n, NiL);
if (s = sfstruse(((Cc_t*)cat)->tmp))
return s;
}
return (char*)msg;
}
#endif
return mcget((Mc_t*)cat, set, num, msg);
}
int
_ast_catclose(_ast_nl_catd cat)
{
if (cat == (_ast_nl_catd)(-1))
return -1;
#if _lib_catopen
if (!((Cc_t*)cat)->set)
{
if (((Cc_t*)cat)->cvt != (iconv_t)(-1))
iconv_close(((Cc_t*)cat)->cvt);
if (((Cc_t*)cat)->tmp)
sfclose(((Cc_t*)cat)->tmp);
return catclose(((Cc_t*)cat)->cat);
}
#endif
return mcclose((Mc_t*)cat);
}
|