t-locale.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:5k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Test locale support, or attempt to do so.
  2. Copyright 2001, 2002 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #define _GNU_SOURCE    /* for DECIMAL_POINT in glibc langinfo.h */
  15. #include "config.h"
  16. #include <stdio.h>
  17. #include <stdlib.h>
  18. #include <string.h>
  19. #if HAVE_NL_TYPES_H
  20. #include <nl_types.h>  /* for nl_item (on netbsd 1.4.1 at least) */
  21. #endif
  22. #if HAVE_LANGINFO_H
  23. #include <langinfo.h>  /* for nl_langinfo */
  24. #endif
  25. #if HAVE_LOCALE_H
  26. #include <locale.h>    /* for lconv */
  27. #endif
  28. #include "gmp.h"
  29. #include "gmp-impl.h"
  30. #include "tests.h"
  31. char *decimal_point;
  32. /* Replace the libc localeconv with one we can manipulate. */
  33. #if HAVE_LOCALECONV
  34. struct lconv *
  35. localeconv (void)
  36. {
  37.   static struct lconv  l;
  38.   l.decimal_point = decimal_point;
  39.   return &l;
  40. }
  41. #endif
  42. /* Replace the libc nl_langinfo with one we can manipulate. */
  43. #if HAVE_NL_LANGINFO
  44. char *
  45. nl_langinfo (nl_item n)
  46. {
  47. #if defined (DECIMAL_POINT)
  48.   if (n == DECIMAL_POINT)
  49.     return decimal_point;
  50. #endif
  51. #if defined (RADIXCHAR)
  52.   if (n == RADIXCHAR)
  53.     return decimal_point;
  54. #endif
  55.   return "";
  56. }
  57. #endif
  58. void
  59. check_input (void)
  60. {
  61.   static char *point[] = {
  62.     ".", ",", "WU", "STR", "ZTV***"
  63.   };
  64.   static const struct {
  65.     const char  *str;
  66.     double      d;
  67.   } data[] = {
  68.     { "1%s",   1.0 },
  69.     { "1%s0",  1.0 },
  70.     { "1%s00", 1.0 },
  71.     { "%s5",    0.5 },
  72.     { "0%s5",   0.5 },
  73.     { "00%s5",  0.5 },
  74.     { "00%s50", 0.5 },
  75.     { "1%s5",    1.5 },
  76.     { "1%s5e1", 15.0 },
  77.   };
  78.   int     i, j, neg, ret;
  79.   char    str[128];
  80.   mpf_t   f;
  81.   double  d;
  82.   mpf_init (f);
  83.   for (i = 0; i < numberof (point); i++)
  84.     {
  85.       decimal_point = point[i];
  86.       for (neg = 0; neg <= 1; neg++)
  87.         {
  88.           for (j = 0; j < numberof (data); j++)
  89.             {
  90.               strcpy (str, neg ? "-" : "");
  91.               sprintf (str+strlen(str), data[j].str, decimal_point);
  92.               d = data[j].d;
  93.               if (neg)
  94.                 d = -d;
  95.               mpf_set_d (f, 123.0);
  96.               if (mpf_set_str (f, str, 10) != 0)
  97.                 {
  98.                   printf ("mpf_set_str errorn");
  99.                   printf ("  point  %sn", decimal_point);
  100.                   printf ("  str    %sn", str);
  101.                   abort ();
  102.                 }
  103.               if (mpf_cmp_d (f, d) != 0)
  104.                 {
  105.                   printf    ("mpf_set_str wrong resultn");
  106.                   printf    ("  point  %sn", decimal_point);
  107.                   printf    ("  str    %sn", str);
  108.                   mpf_trace ("  f", f);
  109.                   printf    ("  d=%gn", d);
  110.                   abort ();
  111.                 }
  112.               mpf_set_d (f, 123.0);
  113.               ret = gmp_sscanf (str, "%Ff", f);
  114.               if (ret != 1)
  115.                 {
  116.                   printf ("gmp_sscanf wrong return valuen");
  117.                   printf ("  point  %sn", decimal_point);
  118.                   printf ("  str    %sn", str);
  119.                   printf ("  ret    %dn", ret);
  120.                   abort ();
  121.                 }
  122.               if (mpf_cmp_d (f, d) != 0)
  123.                 {
  124.                   printf    ("gmp_sscanf wrong resultn");
  125.                   printf    ("  point  %sn", decimal_point);
  126.                   printf    ("  str    %sn", str);
  127.                   mpf_trace ("  f", f);
  128.                   printf    ("  d=%gn", d);
  129.                   abort ();
  130.                 }
  131.             }
  132.         }
  133.     }
  134.   mpf_clear (f);
  135. }
  136. int
  137. main (void)
  138. {
  139.   /* The localeconv replacement breaks printf "%lu" on SunOS 4, so we can't
  140.      print the seed in tests_rand_start().  Nothing random is used in this
  141.      program though, so just use the memory tests alone.  */
  142.   tests_memory_start ();
  143.   {
  144.     mpf_t  f;
  145.     char   buf[128];
  146.     mpf_init (f);
  147.     decimal_point = ",";
  148.     mpf_set_d (f, 1.5);
  149.     gmp_snprintf (buf, sizeof(buf), "%.1Ff", f);
  150.     mpf_clear (f);
  151.     if (strcmp (buf, "1,5") != 0)
  152.       {
  153.         printf ("Test skipped, replacing localeconv/nl_langinfo doesn't workn");
  154.         goto done;
  155.       }
  156.   }
  157.   check_input ();
  158.  done:
  159.   tests_memory_end ();
  160.   exit (0);
  161. }