1 /* Copyright (C) 1998,1999,2000,2001,2002,2005 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2 as
7 published by the Free Software Foundation.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
29 #include "localedef.h"
30 #include "localeinfo.h"
34 /* The real definition of the struct for the LC_PAPER locale. */
43 paper_startup (struct linereader
*lr
, struct localedef_t
*locale
,
47 locale
->categories
[LC_PAPER
].paper
=
48 (struct locale_paper_t
*) xcalloc (1, sizeof (struct locale_paper_t
));
52 lr
->translate_strings
= 1;
53 lr
->return_widestr
= 0;
59 paper_finish (struct localedef_t
*locale
, const struct charmap_t
*charmap
)
61 struct locale_paper_t
*paper
= locale
->categories
[LC_PAPER
].paper
;
64 /* Now resolve copying and also handle completely missing definitions. */
67 /* First see whether we were supposed to copy. If yes, find the
69 if (locale
->copy_name
[LC_PAPER
] != NULL
)
71 /* Find the copying locale. This has to happen transitively since
72 the locale we are copying from might also copying another one. */
73 struct localedef_t
*from
= locale
;
76 from
= find_locale (LC_PAPER
, from
->copy_name
[LC_PAPER
],
77 from
->repertoire_name
, charmap
);
78 while (from
->categories
[LC_PAPER
].paper
== NULL
79 && from
->copy_name
[LC_PAPER
] != NULL
);
81 paper
= locale
->categories
[LC_PAPER
].paper
82 = from
->categories
[LC_PAPER
].paper
;
85 /* If there is still no definition issue an warning and create an
90 WITH_CUR_LOCALE (error (0, 0, _("\
91 No definition for %s category found"), "LC_PAPER"));
92 paper_startup (NULL
, locale
, 0);
93 paper
= locale
->categories
[LC_PAPER
].paper
;
98 if (paper
->height
== 0)
101 WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
102 "LC_PAPER", "height"));
103 /* Use as default values the values from the i18n locale. */
107 if (paper
->width
== 0)
110 WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
111 "LC_PAPER", "width"));
112 /* Use as default values the values from the i18n locale. */
119 paper_output (struct localedef_t
*locale
, const struct charmap_t
*charmap
,
120 const char *output_path
)
122 struct locale_paper_t
*paper
= locale
->categories
[LC_PAPER
].paper
;
123 struct iovec iov
[2 + _NL_ITEM_INDEX (_NL_NUM_LC_PAPER
)];
124 struct locale_file data
;
125 uint32_t idx
[_NL_ITEM_INDEX (_NL_NUM_LC_PAPER
)];
128 data
.magic
= LIMAGIC (LC_PAPER
);
129 data
.n
= _NL_ITEM_INDEX (_NL_NUM_LC_PAPER
);
130 iov
[cnt
].iov_base
= (void *) &data
;
131 iov
[cnt
].iov_len
= sizeof (data
);
134 iov
[cnt
].iov_base
= (void *) idx
;
135 iov
[cnt
].iov_len
= sizeof (idx
);
138 idx
[cnt
- 2] = iov
[cnt
- 2].iov_len
+ iov
[cnt
- 1].iov_len
;
139 iov
[cnt
].iov_base
= &paper
->height
;
140 iov
[cnt
].iov_len
= 4;
143 idx
[cnt
- 2] = idx
[cnt
- 3] + iov
[cnt
- 1].iov_len
;
144 iov
[cnt
].iov_base
= &paper
->width
;
145 iov
[cnt
].iov_len
= 4;
148 idx
[cnt
- 2] = idx
[cnt
- 3] + iov
[cnt
- 1].iov_len
;
149 iov
[cnt
].iov_base
= (void *) charmap
->code_set_name
;
150 iov
[cnt
].iov_len
= strlen (iov
[cnt
].iov_base
) + 1;
153 assert (cnt
== 2 + _NL_ITEM_INDEX (_NL_NUM_LC_PAPER
));
155 write_locale_data (output_path
, LC_PAPER
, "LC_PAPER",
156 2 + _NL_ITEM_INDEX (_NL_NUM_LC_PAPER
), iov
);
160 /* The parser for the LC_PAPER section of the locale definition. */
162 paper_read (struct linereader
*ldfile
, struct localedef_t
*result
,
163 const struct charmap_t
*charmap
, const char *repertoire_name
,
166 struct locale_paper_t
*paper
;
171 /* The rest of the line containing `LC_PAPER' must be empty. */
172 lr_ignore_rest (ldfile
, 1);
176 now
= lr_token (ldfile
, charmap
, result
, NULL
, verbose
);
179 while (nowtok
== tok_eol
);
181 /* If we see `copy' now we are almost done. */
182 if (nowtok
== tok_copy
)
184 handle_copy (ldfile
, charmap
, repertoire_name
, result
, tok_lc_paper
,
185 LC_PAPER
, "LC_PAPER", ignore_content
);
189 /* Prepare the data structures. */
190 paper_startup (ldfile
, result
, ignore_content
);
191 paper
= result
->categories
[LC_PAPER
].paper
;
195 /* Of course we don't proceed beyond the end of file. */
196 if (nowtok
== tok_eof
)
199 /* Ingore empty lines. */
200 if (nowtok
== tok_eol
)
202 now
= lr_token (ldfile
, charmap
, result
, NULL
, verbose
);
209 #define INT_ELEM(cat) \
211 /* Ignore the rest of the line if we don't need the input of \
213 if (ignore_content) \
215 lr_ignore_rest (ldfile, 0); \
219 arg = lr_token (ldfile, charmap, result, NULL, verbose); \
220 if (arg->tok != tok_number) \
222 else if (paper->cat != 0) \
223 lr_error (ldfile, _("%s: field `%s' declared more than once"), \
225 else if (!ignore_content) \
226 paper->cat = arg->val.num; \
233 /* Next we assume `LC_PAPER'. */
234 arg
= lr_token (ldfile
, charmap
, result
, NULL
, verbose
);
235 if (arg
->tok
== tok_eof
)
237 if (arg
->tok
== tok_eol
)
238 lr_error (ldfile
, _("%s: incomplete `END' line"), "LC_PAPER");
239 else if (arg
->tok
!= tok_lc_paper
)
240 lr_error (ldfile
, _("\
241 %1$s: definition does not end with `END %1$s'"), "LC_PAPER");
242 lr_ignore_rest (ldfile
, arg
->tok
== tok_lc_paper
);
247 SYNTAX_ERROR (_("%s: syntax error"), "LC_PAPER");
250 /* Prepare for the next round. */
251 now
= lr_token (ldfile
, charmap
, result
, NULL
, verbose
);
255 /* When we come here we reached the end of the file. */
256 lr_error (ldfile
, _("%s: premature end of file"), "LC_PAPER");