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
|
/* GNU gettext - internationalization aids
Copyright (C) 1995, 1996, 1998, 2000 Free Software Foundation, Inc.
This file was written by Peter Miller <millerp@canb.auug.org.au>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <ctype.h>
#include <stdio.h>
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#include "po.h"
#include "po-hash.h"
#include "system.h"
/* Prototypes for local functions. */
static void po_parse_brief PARAMS ((po_ty *__pop));
static void po_parse_debrief PARAMS ((po_ty *__pop));
/* Methods used indirectly by po_scan. */
static void po_directive_domain PARAMS ((po_ty *__pop, char *__name));
static void po_directive_message PARAMS ((po_ty *__pop, char *__msgid,
lex_pos_ty *__msgid_pos,
char *__msgstr,
lex_pos_ty *__msgstr_pos));
static void po_comment PARAMS ((po_ty *__pop, const char *__s));
static void po_comment_dot PARAMS ((po_ty *__pop, const char *__s));
static void po_comment_filepos PARAMS ((po_ty *__pop, const char *__name,
int __line));
static void po_comment_special PARAMS ((po_ty *pop, const char *s));
/* Local variables. */
static po_ty *callback_arg;
po_ty *
po_alloc (pomp)
po_method_ty *pomp;
{
po_ty *pop;
pop = xmalloc (pomp->size);
pop->method = pomp;
if (pomp->constructor)
pomp->constructor (pop);
return pop;
}
void
po_free (pop)
po_ty *pop;
{
if (pop->method->destructor)
pop->method->destructor (pop);
free (pop);
}
void
po_scan (pop, filename)
po_ty *pop;
const char *filename;
{
extern int po_gram_parse PARAMS ((void));
/* The parse will call the po_callback_... functions (see below)
when the various directive are recognised. The callback_arg
variable is used to tell these functions which instance is to
have the relevant method invoked. */
callback_arg = pop;
/* Open the file and parse it. */
lex_open (filename);
po_parse_brief (pop);
po_gram_parse ();
po_parse_debrief (pop);
lex_close ();
callback_arg = NULL;
}
static void
po_parse_brief (pop)
po_ty *pop;
{
if (pop->method->parse_brief)
pop->method->parse_brief (pop);
}
static void
po_parse_debrief (pop)
po_ty *pop;
{
if (pop->method->parse_debrief)
pop->method->parse_debrief (pop);
}
static void
po_directive_domain (pop, name)
po_ty *pop;
char *name;
{
if (pop->method->directive_domain)
pop->method->directive_domain (pop, name);
}
void
po_callback_domain (name)
char *name;
{
/* assert(callback_arg); */
po_directive_domain (callback_arg, name);
}
static void
po_directive_message (pop, msgid, msgid_pos, msgstr, msgstr_pos)
po_ty *pop;
char *msgid;
lex_pos_ty *msgid_pos;
char *msgstr;
lex_pos_ty *msgstr_pos;
{
if (pop->method->directive_message)
pop->method->directive_message (pop, msgid, msgid_pos, msgstr, msgstr_pos);
}
void
po_callback_message (msgid, msgid_pos, msgstr, msgstr_pos)
char *msgid;
lex_pos_ty *msgid_pos;
char *msgstr;
lex_pos_ty *msgstr_pos;
{
/* assert(callback_arg); */
po_directive_message (callback_arg, msgid, msgid_pos, msgstr, msgstr_pos);
}
static void
po_comment_special (pop, s)
po_ty *pop;
const char *s;
{
if (pop->method->comment_special != NULL)
pop->method->comment_special (pop, s);
}
static void
po_comment (pop, s)
po_ty *pop;
const char *s;
{
if (pop->method->comment != NULL)
pop->method->comment (pop, s);
}
static void
po_comment_dot (pop, s)
po_ty *pop;
const char *s;
{
if (pop->method->comment_dot != NULL)
pop->method->comment_dot (pop, s);
}
/* This function is called by po_gram_lex() whenever a comment is
seen. It analyzes the comment to see what sort it is, and then
dispatces it to the appropriate method. */
void
po_callback_comment (s)
const char *s;
{
/* assert(callback_arg); */
if (*s == '.')
po_comment_dot (callback_arg, s + 1);
else if (*s == ':')
{
/* Parse the file location string. If the parse succeeds, the
appropriate callback will be invoked. If the parse fails,
the po_hash function will return non-zero - so pretend it was
a normal comment. */
if (po_hash (s + 1) == 0)
/* Do nothing, it is a GNU-style file pos line. */ ;
else
po_comment (callback_arg, s + 1);
}
else if (*s == ',' || *s == '!')
/* Get all entries in the special comment line. */
po_comment_special (callback_arg, s + 1);
else
{
/* It looks like a plain vanilla comment, but Solaris-style file
position lines do, too. Rather than parse the lot, only look
at lines that could start with "# File..." This minimizes
memory leaks on failed parses. If the parse succeeds, the
appropriate callback will be invoked. */
if (s[0] == ' ' && (s[1] == 'F' || s[1] == 'f') && s[2] == 'i'
&& po_hash (s) == 0)
/* Do nothing, it is a Sun-style file pos line. */ ;
else
po_comment (callback_arg, s);
}
}
static void
po_comment_filepos (pop, name, line)
po_ty *pop;
const char *name;
int line;
{
if (pop->method->comment_filepos)
pop->method->comment_filepos (pop, name, line);
}
void
po_callback_comment_filepos (name, line)
const char *name;
int line;
{
/* assert(callback_arg); */
po_comment_filepos (callback_arg, name, line);
}
|