1 /* plural-exp.c - Expression parsing for plural form selection. */
3 /* Copyright (C) 2000, 2001, 2005-2009 Free Software Foundation, Inc.
4 Written by Ulrich Drepper <drepper@cygnus.com>, 2000.
6 This file is part of GNU Bash.
8 Bash is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 Bash is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Bash. If not, see <http://www.gnu.org/licenses/>.
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
;