plural-exp.c
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:4k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. /* Expression parsing for plural form selection.
  2.    Copyright (C) 2000, 2001 Free Software Foundation, Inc.
  3.    Written by Ulrich Drepper <drepper@cygnus.com>, 2000.
  4.    This program is free software; you can redistribute it and/or modify it
  5.    under the terms of the GNU Library General Public License as published
  6.    by the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    You should have received a copy of the GNU Library General Public
  13.    License along with this program; if not, write to the Free Software
  14.    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  15.    USA.  */
  16. #ifdef HAVE_CONFIG_H
  17. # include <config.h>
  18. #endif
  19. #include <ctype.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include "plural-exp.h"
  23. #if (defined __GNUC__ && !defined __APPLE_CC__) 
  24.     || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
  25. /* These structs are the constant expression for the germanic plural
  26.    form determination.  It represents the expression  "n != 1".  */
  27. static const struct expression plvar =
  28. {
  29.   .nargs = 0,
  30.   .operation = var,
  31. };
  32. static const struct expression plone =
  33. {
  34.   .nargs = 0,
  35.   .operation = num,
  36.   .val =
  37.   {
  38.     .num = 1
  39.   }
  40. };
  41. struct expression GERMANIC_PLURAL =
  42. {
  43.   .nargs = 2,
  44.   .operation = not_equal,
  45.   .val =
  46.   {
  47.     .args =
  48.     {
  49.       [0] = (struct expression *) &plvar,
  50.       [1] = (struct expression *) &plone
  51.     }
  52.   }
  53. };
  54. # define INIT_GERMANIC_PLURAL()
  55. #else
  56. /* For compilers without support for ISO C 99 struct/union initializers:
  57.    Initialization at run-time.  */
  58. static struct expression plvar;
  59. static struct expression plone;
  60. struct expression GERMANIC_PLURAL;
  61. static void
  62. init_germanic_plural ()
  63. {
  64.   if (plone.val.num == 0)
  65.     {
  66.       plvar.nargs = 0;
  67.       plvar.operation = var;
  68.       plone.nargs = 0;
  69.       plone.operation = num;
  70.       plone.val.num = 1;
  71.       GERMANIC_PLURAL.nargs = 2;
  72.       GERMANIC_PLURAL.operation = not_equal;
  73.       GERMANIC_PLURAL.val.args[0] = &plvar;
  74.       GERMANIC_PLURAL.val.args[1] = &plone;
  75.     }
  76. }
  77. # define INIT_GERMANIC_PLURAL() init_germanic_plural ()
  78. #endif
  79. void
  80. internal_function
  81. EXTRACT_PLURAL_EXPRESSION (nullentry, pluralp, npluralsp)
  82.      const char *nullentry;
  83.      struct expression **pluralp;
  84.      unsigned long int *npluralsp;
  85. {
  86.   if (nullentry != NULL)
  87.     {
  88.       const char *plural;
  89.       const char *nplurals;
  90.       plural = strstr (nullentry, "plural=");
  91.       nplurals = strstr (nullentry, "nplurals=");
  92.       if (plural == NULL || nplurals == NULL)
  93. goto no_plural;
  94.       else
  95. {
  96.   char *endp;
  97.   unsigned long int n;
  98.   struct parse_args args;
  99.   /* First get the number.  */
  100.   nplurals += 9;
  101.   while (*nplurals != '' && isspace ((unsigned char) *nplurals))
  102.     ++nplurals;
  103.   if (!(*nplurals >= '0' && *nplurals <= '9'))
  104.     goto no_plural;
  105. #if defined HAVE_STRTOUL || defined _LIBC
  106.   n = strtoul (nplurals, &endp, 10);
  107. #else
  108.   for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)
  109.     n = n * 10 + (*endp - '0');
  110. #endif
  111.   if (nplurals == endp)
  112.     goto no_plural;
  113.   *npluralsp = n;
  114.   /* Due to the restrictions bison imposes onto the interface of the
  115.      scanner function we have to put the input string and the result
  116.      passed up from the parser into the same structure which address
  117.      is passed down to the parser.  */
  118.   plural += 7;
  119.   args.cp = plural;
  120.   if (PLURAL_PARSE (&args) != 0)
  121.     goto no_plural;
  122.   *pluralp = args.res;
  123. }
  124.     }
  125.   else
  126.     {
  127.       /* By default we are using the Germanic form: singular form only
  128.          for `one', the plural form otherwise.  Yes, this is also what
  129.          English is using since English is a Germanic language.  */
  130.     no_plural:
  131.       INIT_GERMANIC_PLURAL ();
  132.       *pluralp = &GERMANIC_PLURAL;
  133.       *npluralsp = 2;
  134.     }
  135. }