3 /* Expression parsing for plural form selection.
4 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
5 Written by Ulrich Drepper <drepper@cygnus.com>, 2000.
7 This program is free software; you can redistribute it and/or modify it
8 under the terms of the GNU Library General Public License as published
9 by the Free Software Foundation; either version 2, or (at your option)
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
30 #include "plural-exp.h"
32 #if (defined __GNUC__ && !defined __APPLE_CC__) \
33 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
35 /* These structs are the constant expression for the germanic plural
36 form determination. It represents the expression "n != 1". */
37 static const struct expression plvar
=
42 static const struct expression plone
=
51 struct expression GERMANIC_PLURAL
=
54 .operation
= not_equal
,
59 [0] = (struct expression
*) &plvar
,
60 [1] = (struct expression
*) &plone
65 # define INIT_GERMANIC_PLURAL()
69 /* For compilers without support for ISO C 99 struct/union initializers:
70 Initialization at run-time. */
72 static struct expression plvar
;
73 static struct expression plone
;
74 struct expression GERMANIC_PLURAL
;
77 init_germanic_plural ()
79 if (plone
.val
.num
== 0)
82 plvar
.operation
= var
;
85 plone
.operation
= num
;
88 GERMANIC_PLURAL
.nargs
= 2;
89 GERMANIC_PLURAL
.operation
= not_equal
;
90 GERMANIC_PLURAL
.val
.args
[0] = &plvar
;
91 GERMANIC_PLURAL
.val
.args
[1] = &plone
;
95 # define INIT_GERMANIC_PLURAL() init_germanic_plural ()
101 EXTRACT_PLURAL_EXPRESSION (nullentry
, pluralp
, npluralsp
)
102 const char *nullentry
;
103 struct expression
**pluralp
;
104 unsigned long int *npluralsp
;
106 if (nullentry
!= NULL
)
109 const char *nplurals
;
111 plural
= strstr (nullentry
, "plural=");
112 nplurals
= strstr (nullentry
, "nplurals=");
113 if (plural
== NULL
|| nplurals
== NULL
)
119 struct parse_args args
;
121 /* First get the number. */
123 while (*nplurals
!= '\0' && isspace ((unsigned char) *nplurals
))
125 if (!(*nplurals
>= '0' && *nplurals
<= '9'))
127 #if defined HAVE_STRTOUL || defined _LIBC
128 n
= strtoul (nplurals
, &endp
, 10);
130 for (endp
= nplurals
, n
= 0; *endp
>= '0' && *endp
<= '9'; endp
++)
131 n
= n
* 10 + (*endp
- '0');
133 if (nplurals
== endp
)
137 /* Due to the restrictions bison imposes onto the interface of the
138 scanner function we have to put the input string and the result
139 passed up from the parser into the same structure which address
140 is passed down to the parser. */
143 if (PLURAL_PARSE (&args
) != 0)
150 /* By default we are using the Germanic form: singular form only
151 for `one', the plural form otherwise. Yes, this is also what
152 English is using since English is a Germanic language. */
154 INIT_GERMANIC_PLURAL ();
155 *pluralp
= &GERMANIC_PLURAL
;