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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_inp_raw and mpz_out_raw.
  2. Copyright 2001 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. #include "config.h"
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <string.h>
  18. #if HAVE_UNISTD_H
  19. #include <unistd.h>
  20. #endif
  21. #include "gmp.h"
  22. #include "gmp-impl.h"
  23. #include "tests.h"
  24. #define FILENAME  "t-io_raw.tmp"
  25. /* In the fopen, "b" selects binary mode on DOS systems, meaning no
  26.    conversion of 'n' to and from CRLF.  It's believed systems without such
  27.    nonsense will simply ignore the "b", but in case that's not so a plain
  28.    "w+" is attempted if "w+b" fails.  */
  29. FILE *
  30. fopen_wplusb_or_die (const char *filename)
  31. {
  32.   FILE  *fp;
  33.   fp = fopen (filename, "w+b");
  34.   if (fp == NULL)
  35.     fp = fopen (filename, "w+");
  36.   if (fp == NULL)
  37.     {
  38.       printf ("Cannot create file %sn", filename);
  39.       abort ();
  40.     }
  41.   return fp;
  42. }
  43. /* use 0x80 to check nothing bad happens with sign extension etc */
  44. #define BYTEVAL(i)  (((i) + 1) | 0x80)
  45. void
  46. check_in (void)
  47. {
  48.   int        i, j, zeros, neg, error = 0;
  49.   mpz_t      want, got;
  50.   size_t     want_ret, got_ret;
  51.   mp_size_t  size;
  52.   FILE       *fp;
  53.   mpz_init (want);
  54.   mpz_init (got);
  55.   for (i = 0; i < 32; i++)
  56.     {
  57.       for (zeros = 0; zeros < 8; zeros++)
  58. {
  59.   for (neg = 0; neg <= 1; neg++)
  60.     {
  61.       want_ret = i + zeros + 4;
  62.       /* need this to get the twos complement right */
  63.       ASSERT_ALWAYS (sizeof (size) >= 4);
  64.       size = i + zeros;
  65.       if (neg)
  66. size = -size;
  67.       fp = fopen_wplusb_or_die (FILENAME);
  68.       for (j = 3; j >= 0; j--)
  69. ASSERT_ALWAYS (putc ((size >> (j*8)) & 0xFF, fp) != EOF);
  70.       for (j = 0; j < zeros; j++)
  71. ASSERT_ALWAYS (putc ('', fp) != EOF);
  72.       for (j = 0; j < i; j++)
  73. ASSERT_ALWAYS (putc (BYTEVAL (j), fp) != EOF);
  74.       /* and some trailing garbage */
  75.       ASSERT_ALWAYS (putc ('x', fp) != EOF);
  76.       ASSERT_ALWAYS (putc ('y', fp) != EOF);
  77.       ASSERT_ALWAYS (putc ('z', fp) != EOF);
  78.       ASSERT_ALWAYS (fflush (fp) == 0);
  79.       rewind (fp);
  80.       got_ret = mpz_inp_raw (got, fp);
  81.       ASSERT_ALWAYS (! ferror(fp));
  82.       ASSERT_ALWAYS (fclose (fp) == 0);
  83.       MPZ_CHECK_FORMAT (got);
  84.       if (got_ret != want_ret)
  85. {
  86.   printf ("check_in: return value wrongn");
  87.   error = 1;
  88. }
  89.       if (mpz_cmp (got, want) != 0)
  90. {
  91.   printf ("check_in: result wrongn");
  92.   error = 1;
  93. }
  94.       if (error)
  95. {
  96.   printf    ("  i=%d zeros=%d neg=%dn", i, zeros, neg);
  97.   printf    ("  got_ret  %lun", (unsigned long) got_ret);
  98.   printf    ("  want_ret %lun", (unsigned long) want_ret);
  99.   mpz_trace ("  got      ", got);
  100.   mpz_trace ("  want     ", want);
  101.   abort ();
  102. }
  103.       mpz_neg (want, want);
  104.     }
  105. }
  106.       mpz_mul_2exp (want, want, 8);
  107.       mpz_add_ui (want, want, (unsigned long) BYTEVAL (i));
  108.     }
  109.   mpz_clear (want);
  110.   mpz_clear (got);
  111. }
  112. void
  113. check_out (void)
  114. {
  115.   int        i, j, neg, error = 0;
  116.   mpz_t      z;
  117.   char       want[256], got[256], *p;
  118.   size_t     want_len, got_ret, got_read;
  119.   mp_size_t  size;
  120.   FILE       *fp;
  121.   mpz_init (z);
  122.   for (i = 0; i < 32; i++)
  123.     {
  124.       for (neg = 0; neg <= 1; neg++)
  125. {
  126.   want_len = i + 4;
  127.   /* need this to get the twos complement right */
  128.   ASSERT_ALWAYS (sizeof (size) >= 4);
  129.   size = i;
  130.   if (neg)
  131.     size = -size;
  132.   p = want;
  133.   for (j = 3; j >= 0; j--)
  134.     *p++ = size >> (j*8);
  135.   for (j = 0; j < i; j++)
  136.     *p++ = BYTEVAL (j);
  137.   ASSERT_ALWAYS (p <= want + sizeof (want));
  138.   fp = fopen_wplusb_or_die (FILENAME);
  139.   got_ret = mpz_out_raw (fp, z);
  140.   ASSERT_ALWAYS (fflush (fp) == 0);
  141.   rewind (fp);
  142.   got_read = fread (got, 1, sizeof(got), fp);
  143.   ASSERT_ALWAYS (! ferror(fp));
  144.   ASSERT_ALWAYS (fclose (fp) == 0);
  145.   if (got_ret != want_len)
  146.     {
  147.       printf ("check_out: wrong return valuen");
  148.       error = 1;
  149.     }
  150.   if (got_read != want_len)
  151.     {
  152.       printf ("check_out: wrong number of bytes read backn");
  153.       error = 1;
  154.     }
  155.   if (memcmp (want, got, want_len) != 0)
  156.     {
  157.       printf ("check_out: wrong datan");
  158.       error = 1;
  159.     }
  160.   if (error)
  161.     {
  162.       printf    ("  i=%d neg=%dn", i, neg);
  163.       mpz_trace ("  z", z);
  164.       printf    ("  got_ret  %lun", (unsigned long) got_ret);
  165.       printf    ("  got_read %lun", (unsigned long) got_read);
  166.       printf    ("  want_len %lun", (unsigned long) want_len);
  167.       printf    ("  want");
  168.       for (j = 0; j < want_len; j++)
  169. printf (" %02X", (unsigned) (unsigned char) want[j]);
  170.       printf    ("n");
  171.       printf    ("  got ");
  172.       for (j = 0; j < want_len; j++)
  173. printf (" %02X", (unsigned) (unsigned char) got[j]);
  174.       printf    ("n");
  175.       abort ();
  176.     }
  177.   mpz_neg (z, z);
  178. }
  179.       mpz_mul_2exp (z, z, 8);
  180.       mpz_add_ui (z, z, (unsigned long) BYTEVAL (i));
  181.     }
  182.   mpz_clear (z);
  183. }
  184. void
  185. check_rand (void)
  186. {
  187.   gmp_randstate_ptr  rands = RANDS;
  188.   int        i, error = 0;
  189.   mpz_t      got, want;
  190.   size_t     inp_ret, out_ret;
  191.   FILE       *fp;
  192.   mpz_init (want);
  193.   mpz_init (got);
  194.   for (i = 0; i < 500; i++)
  195.     {
  196.       mpz_erandomb (want, rands, 10*GMP_LIMB_BITS);
  197.       mpz_negrandom (want, rands);
  198.       fp = fopen_wplusb_or_die (FILENAME);
  199.       out_ret = mpz_out_raw (fp, want);
  200.       ASSERT_ALWAYS (fflush (fp) == 0);
  201.       rewind (fp);
  202.       inp_ret = mpz_inp_raw (got, fp);
  203.       ASSERT_ALWAYS (fclose (fp) == 0);
  204.       MPZ_CHECK_FORMAT (got);
  205.       if (inp_ret != out_ret)
  206. {
  207.   printf ("check_rand: different inp/out return valuesn");
  208.   error = 1;
  209. }
  210.       if (mpz_cmp (got, want) != 0)
  211. {
  212.   printf ("check_rand: wrong resultn");
  213.   error = 1;
  214. }
  215.       if (error)
  216. {
  217.   printf    ("  out_ret %lun", (unsigned long) out_ret);
  218.   printf    ("  inp_ret %lun", (unsigned long) inp_ret);
  219.   mpz_trace ("  want", want);
  220.   mpz_trace ("  got ", got);
  221.   abort ();
  222. }
  223.     }
  224.   mpz_clear (got);
  225.   mpz_clear (want);
  226. }
  227. int
  228. main (void)
  229. {
  230.   tests_start ();
  231.   mp_trace_base = -16;
  232.   check_in ();
  233.   check_out ();
  234.   check_rand ();
  235.   unlink (FILENAME);
  236.   tests_end ();
  237.   exit (0);
  238. }