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

数学计算

开发平台:

Unix_Linux

  1. /* Test istream formatted input.
  2. Copyright 2001, 2002, 2003, 2004 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 <iostream>
  15. #include <cstdlib>
  16. #include <cstring>
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. #include "tests.h"
  20. using namespace std;
  21. // Under option_check_standard, the various test cases for mpz operator>>
  22. // are put through the standard operator>> for long, and likewise mpf
  23. // operator>> is put through double.
  24. //
  25. // In g++ 3.3 this results in some printouts about the final position
  26. // indicated for something like ".e123".  Our mpf code stops at the "e"
  27. // since there's no mantissa digits, but g++ reads the whole thing and only
  28. // then decides it's bad.
  29. int   option_check_standard = 0;
  30. // On some versions of g++ 2.96 it's been observed that putback() may leave
  31. // tellg() unchanged.  We believe this is incorrect and presumably the
  32. // result of a bug, since for instance it's ok in g++ 2.95 and g++ 3.3.  We
  33. // detect the problem at runtime and disable affected checks.
  34. int putback_tellg_works = 1;
  35. void
  36. check_putback_tellg (void)
  37. {
  38.   istringstream input ("hello");
  39.   streampos  old_pos, new_pos;
  40.   char  c;
  41.   input.get(c);
  42.   old_pos = input.tellg();
  43.   input.putback(c);
  44.   new_pos = input.tellg();
  45.   if (old_pos == new_pos)
  46.     {
  47.       cout << "Warning, istringstream has a bug: putback() doesn't update tellg().n";;
  48.       cout << "Tests on tellg() will be skipped.n";
  49.       putback_tellg_works = 0;
  50.     }
  51. }
  52. #define WRONG(str)                                              
  53.   do {                                                          
  54.     cout << str ", data[" << i << "]n";                        
  55.     cout << "  input: "" << data[i].input << ""n";           
  56.     cout << "  flags: " << hex << input.flags() << dec << "n"; 
  57.   } while (0)
  58. void
  59. check_mpz (void)
  60. {
  61.   static const struct {
  62.     const char     *input;
  63.     int            want_pos;
  64.     const char     *want;
  65.     ios::fmtflags  flags;
  66.   } data[] = {
  67.     { "0",      -1, "0",    (ios::fmtflags) 0 },
  68.     { "123",    -1, "123",  (ios::fmtflags) 0 },
  69.     { "0123",   -1, "83",   (ios::fmtflags) 0 },
  70.     { "0x123",  -1, "291",  (ios::fmtflags) 0 },
  71.     { "-123",   -1, "-123", (ios::fmtflags) 0 },
  72.     { "-0123",  -1, "-83",  (ios::fmtflags) 0 },
  73.     { "-0x123", -1, "-291", (ios::fmtflags) 0 },
  74.     { "+123",   -1, "123", (ios::fmtflags) 0 },
  75.     { "+0123",  -1, "83",  (ios::fmtflags) 0 },
  76.     { "+0x123", -1, "291", (ios::fmtflags) 0 },
  77.     { "0",     -1, "0",    ios::dec },
  78.     { "1f",     1, "1",    ios::dec },
  79.     { "011f",   3, "11",   ios::dec },
  80.     { "123",   -1, "123",  ios::dec },
  81.     { "-1f",    2, "-1",   ios::dec },
  82.     { "-011f",  4, "-11",  ios::dec },
  83.     { "-123",  -1, "-123", ios::dec },
  84.     { "+1f",    2, "1",    ios::dec },
  85.     { "+011f",  4, "11",   ios::dec },
  86.     { "+123",  -1, "123",  ios::dec },
  87.     { "0",    -1, "0",   ios::oct },
  88.     { "123",  -1, "83",  ios::oct },
  89.     { "-123", -1, "-83", ios::oct },
  90.     { "+123", -1, "83",  ios::oct },
  91.     { "0",    -1, "0",    ios::hex },
  92.     { "123",  -1, "291",  ios::hex },
  93.     { "ff",   -1, "255",  ios::hex },
  94.     { "FF",   -1, "255",  ios::hex },
  95.     { "-123", -1, "-291", ios::hex },
  96.     { "-ff",  -1, "-255", ios::hex },
  97.     { "-FF",  -1, "-255", ios::hex },
  98.     { "+123", -1, "291",  ios::hex },
  99.     { "+ff",  -1, "255",  ios::hex },
  100.     { "+FF",  -1, "255",  ios::hex },
  101.     { "ab",   -1, "171",  ios::hex },
  102.     { "cd",   -1, "205",  ios::hex },
  103.     { "ef",   -1, "239",  ios::hex },
  104.     { " 123",  0, NULL,  (ios::fmtflags) 0 },   // not without skipws
  105.     { " 123", -1, "123", ios::skipws },
  106.   };
  107.   mpz_t      got, want;
  108.   int        got_ok, want_ok;
  109.   long       got_si, want_si;
  110.   streampos  init_tellg, got_pos, want_pos;
  111.   mpz_init (got);
  112.   mpz_init (want);
  113.   for (size_t i = 0; i < numberof (data); i++)
  114.     {
  115.       want_pos = (data[i].want_pos == -1
  116.                   ? strlen (data[i].input) : data[i].want_pos);
  117.       want_ok = (data[i].want != NULL);
  118.       if (data[i].want != NULL)
  119.         mpz_set_str_or_abort (want, data[i].want, 0);
  120.       else
  121.         mpz_set_ui (want, 0L);
  122.       if (option_check_standard && mpz_fits_slong_p (want))
  123.         {
  124.           istringstream  input (data[i].input);
  125.           input.flags (data[i].flags);
  126.           init_tellg = input.tellg();
  127.           want_si = mpz_get_si (want);
  128.           input >> got_si;
  129.           got_ok = (input ? 1 : 0);
  130.           input.clear();
  131.           got_pos = input.tellg() - init_tellg;
  132.           if (got_ok != want_ok)
  133.             {
  134.               WRONG ("stdc++ operator>> wrong status, check_mpz");
  135.               cout << "  want_ok: " << want_ok << "n";
  136.               cout << "  got_ok:  " << got_ok << "n";
  137.             }
  138.           if (want_ok && got_si != want_si)
  139.             {
  140.               WRONG ("stdc++ operator>> wrong result, check_mpz");
  141.               cout << "  got_si:  " << got_si << "n";
  142.               cout << "  want_si: " << want_si << "n";
  143.             }
  144.           if (putback_tellg_works && got_pos != want_pos)
  145.             {
  146.               WRONG ("stdc++ operator>> wrong position, check_mpz");
  147.               cout << "  want_pos: " << want_pos << "n";
  148.               cout << "  got_pos:  " << got_pos << "n";
  149.             }
  150.         }
  151.       {
  152.         istringstream  input (data[i].input);
  153.         input.flags (data[i].flags);
  154.         init_tellg = input.tellg();
  155.         mpz_set_ui (got, 0xDEAD);
  156.         input >> got;
  157.         got_ok = (input ? 1 : 0);
  158.         input.clear();
  159.         got_pos = input.tellg() - init_tellg;
  160.         if (got_ok != want_ok)
  161.           {
  162.             WRONG ("mpz operator>> wrong status");
  163.             cout << "  want_ok: " << want_ok << "n";
  164.             cout << "  got_ok:  " << got_ok << "n";
  165.             abort ();
  166.           }
  167.         if (want_ok && mpz_cmp (got, want) != 0)
  168.           {
  169.             WRONG ("mpz operator>> wrong result");
  170.             mpz_trace ("  got ", got);
  171.             mpz_trace ("  want", want);
  172.             abort ();
  173.           }
  174.         if (putback_tellg_works && got_pos != want_pos)
  175.           {
  176.             WRONG ("mpz operator>> wrong position");
  177.             cout << "  want_pos: " << want_pos << "n";
  178.             cout << "  got_pos:  " << got_pos << "n";
  179.             abort ();
  180.           }
  181.       }
  182.     }
  183.   mpz_clear (got);
  184.   mpz_clear (want);
  185. }
  186. void
  187. check_mpq (void)
  188. {
  189.   static const struct {
  190.     const char     *input;
  191.     int            want_pos;
  192.     const char     *want;
  193.     ios::fmtflags  flags;
  194.   } data[] = {
  195.     { "0",   -1, "0", (ios::fmtflags) 0 },
  196.     { "00",  -1, "0", (ios::fmtflags) 0 },
  197.     { "0x0", -1, "0", (ios::fmtflags) 0 },
  198.     { "123/456",   -1, "123/456", ios::dec },
  199.     { "0123/456",  -1, "123/456", ios::dec },
  200.     { "123/0456",  -1, "123/456", ios::dec },
  201.     { "0123/0456", -1, "123/456", ios::dec },
  202.     { "123/456",   -1, "83/302", ios::oct },
  203.     { "0123/456",  -1, "83/302", ios::oct },
  204.     { "123/0456",  -1, "83/302", ios::oct },
  205.     { "0123/0456", -1, "83/302", ios::oct },
  206.     { "ab",   -1, "171",  ios::hex },
  207.     { "cd",   -1, "205",  ios::hex },
  208.     { "ef",   -1, "239",  ios::hex },
  209.     { "0/0",     -1, "0/0", (ios::fmtflags) 0 },
  210.     { "5/8",     -1, "5/8", (ios::fmtflags) 0 },
  211.     { "0x5/0x8", -1, "5/8", (ios::fmtflags) 0 },
  212.     { "123/456",   -1, "123/456",  (ios::fmtflags) 0 },
  213.     { "123/0456",  -1, "123/302",  (ios::fmtflags) 0 },
  214.     { "123/0x456", -1, "123/1110", (ios::fmtflags) 0 },
  215.     { "123/0X456", -1, "123/1110", (ios::fmtflags) 0 },
  216.     { "0123/123",   -1, "83/123", (ios::fmtflags) 0 },
  217.     { "0123/0123",  -1, "83/83",  (ios::fmtflags) 0 },
  218.     { "0123/0x123", -1, "83/291", (ios::fmtflags) 0 },
  219.     { "0123/0X123", -1, "83/291", (ios::fmtflags) 0 },
  220.     { "0x123/123",   -1, "291/123", (ios::fmtflags) 0 },
  221.     { "0X123/0123",  -1, "291/83",  (ios::fmtflags) 0 },
  222.     { "0x123/0x123", -1, "291/291", (ios::fmtflags) 0 },
  223.     { " 123",  0, NULL,  (ios::fmtflags) 0 },   // not without skipws
  224.     { " 123", -1, "123", ios::skipws },
  225.   };
  226.   mpq_t      got, want;
  227.   int        got_ok, want_ok;
  228.   long       got_si, want_si;
  229.   streampos  init_tellg, got_pos, want_pos;
  230.   mpq_init (got);
  231.   mpq_init (want);
  232.   for (size_t i = 0; i < numberof (data); i++)
  233.     {
  234.       want_pos = (data[i].want_pos == -1
  235.                   ? strlen (data[i].input) : data[i].want_pos);
  236.       want_ok = (data[i].want != NULL);
  237.       if (data[i].want != NULL)
  238.         mpq_set_str_or_abort (want, data[i].want, 0);
  239.       else
  240.         mpq_set_ui (want, 0L, 1L);
  241.       if (option_check_standard
  242.           && mpz_fits_slong_p (mpq_numref(want))
  243.           && mpz_cmp_ui (mpq_denref(want), 1L) == 0)
  244.         {
  245.           istringstream  input (data[i].input);
  246.           input.flags (data[i].flags);
  247.           init_tellg = input.tellg();
  248.           want_si = mpz_get_si (mpq_numref(want));
  249.           input >> got_si;
  250.           got_ok = (input ? 1 : 0);
  251.           input.clear();
  252.           got_pos = input.tellg() - init_tellg;
  253.           if (got_ok != want_ok)
  254.             {
  255.               WRONG ("stdc++ operator>> wrong status, check_mpq");
  256.               cout << "  want_ok: " << want_ok << "n";
  257.               cout << "  got_ok:  " << got_ok << "n";
  258.             }
  259.           if (want_ok && want_si != got_si)
  260.             {
  261.               WRONG ("stdc++ operator>> wrong result, check_mpq");
  262.               cout << "  got_si:  " << got_si << "n";
  263.               cout << "  want_si: " << want_si << "n";
  264.             }
  265.           if (putback_tellg_works && got_pos != want_pos)
  266.             {
  267.               WRONG ("stdc++ operator>> wrong position, check_mpq");
  268.               cout << "  want_pos: " << want_pos << "n";
  269.               cout << "  got_pos:  " << got_pos << "n";
  270.             }
  271.         }
  272.       {
  273.         istringstream  input (data[i].input);
  274.         input.flags (data[i].flags);
  275.         init_tellg = input.tellg();
  276.         mpq_set_si (got, 0xDEAD, 0xBEEF);
  277.         input >> got;
  278.         got_ok = (input ? 1 : 0);
  279.         input.clear();
  280.         got_pos = input.tellg() - init_tellg;
  281.         if (got_ok != want_ok)
  282.           {
  283.             WRONG ("mpq operator>> wrong status");
  284.             cout << "  want_ok: " << want_ok << "n";
  285.             cout << "  got_ok:  " << got_ok << "n";
  286.             abort ();
  287.           }
  288.         // don't use mpq_equal, since we allow non-normalized values to be
  289.         // read, which can trigger ASSERTs in mpq_equal
  290.         if (want_ok && (mpz_cmp (mpq_numref (got), mpq_numref(want)) != 0
  291.                         || mpz_cmp (mpq_denref (got), mpq_denref(want)) != 0))
  292.           {
  293.             WRONG ("mpq operator>> wrong result");
  294.             mpq_trace ("  got ", got);
  295.             mpq_trace ("  want", want);
  296.             abort ();
  297.           }
  298.         if (putback_tellg_works && got_pos != want_pos)
  299.           {
  300.             WRONG ("mpq operator>> wrong position");
  301.             cout << "  want_pos: " << want_pos << "n";
  302.             cout << "  got_pos:  " << got_pos << "n";
  303.             abort ();
  304.           }
  305.       }
  306.     }
  307.   mpq_clear (got);
  308.   mpq_clear (want);
  309. }
  310. void
  311. check_mpf (void)
  312. {
  313.   static const struct {
  314.     const char     *input;
  315.     int            want_pos;
  316.     const char     *want;
  317.     ios::fmtflags  flags;
  318.   } data[] = {
  319.     { "0",      -1, "0", (ios::fmtflags) 0 },
  320.     { "+0",     -1, "0", (ios::fmtflags) 0 },
  321.     { "-0",     -1, "0", (ios::fmtflags) 0 },
  322.     { "0.0",    -1, "0", (ios::fmtflags) 0 },
  323.     { "0.",     -1, "0", (ios::fmtflags) 0 },
  324.     { ".0",     -1, "0", (ios::fmtflags) 0 },
  325.     { "+.0",    -1, "0", (ios::fmtflags) 0 },
  326.     { "-.0",    -1, "0", (ios::fmtflags) 0 },
  327.     { "+0.00",  -1, "0", (ios::fmtflags) 0 },
  328.     { "-0.000", -1, "0", (ios::fmtflags) 0 },
  329.     { "+0.00",  -1, "0", (ios::fmtflags) 0 },
  330.     { "-0.000", -1, "0", (ios::fmtflags) 0 },
  331.     { "0.0e0",  -1, "0", (ios::fmtflags) 0 },
  332.     { "0.e0",   -1, "0", (ios::fmtflags) 0 },
  333.     { ".0e0",   -1, "0", (ios::fmtflags) 0 },
  334.     { "0.0e-0", -1, "0", (ios::fmtflags) 0 },
  335.     { "0.e-0",  -1, "0", (ios::fmtflags) 0 },
  336.     { ".0e-0",  -1, "0", (ios::fmtflags) 0 },
  337.     { "0.0e+0", -1, "0", (ios::fmtflags) 0 },
  338.     { "0.e+0",  -1, "0", (ios::fmtflags) 0 },
  339.     { ".0e+0",  -1, "0", (ios::fmtflags) 0 },
  340.     { "1",  -1,  "1", (ios::fmtflags) 0 },
  341.     { "+1", -1,  "1", (ios::fmtflags) 0 },
  342.     { "-1", -1, "-1", (ios::fmtflags) 0 },
  343.     { " 0",  0,  NULL, (ios::fmtflags) 0 },  // not without skipws
  344.     { " 0",  -1, "0", ios::skipws },
  345.     { " +0", -1, "0", ios::skipws },
  346.     { " -0", -1, "0", ios::skipws },
  347.     { "+-123", 1, NULL, (ios::fmtflags) 0 },
  348.     { "-+123", 1, NULL, (ios::fmtflags) 0 },
  349.     { "1e+-123", 3, NULL, (ios::fmtflags) 0 },
  350.     { "1e-+123", 3, NULL, (ios::fmtflags) 0 },
  351.     { "e123",   0, NULL, (ios::fmtflags) 0 }, // at least one mantissa digit
  352.     { ".e123",  1, NULL, (ios::fmtflags) 0 },
  353.     { "+.e123", 2, NULL, (ios::fmtflags) 0 },
  354.     { "-.e123", 2, NULL, (ios::fmtflags) 0 },
  355.     { "123e",   4, NULL, (ios::fmtflags) 0 }, // at least one exponent digit
  356.     { "123e-",  5, NULL, (ios::fmtflags) 0 },
  357.     { "123e+",  5, NULL, (ios::fmtflags) 0 },
  358.   };
  359.   mpf_t      got, want;
  360.   int        got_ok, want_ok;
  361.   double     got_d, want_d;
  362.   streampos  init_tellg, got_pos, want_pos;
  363.   mpf_init (got);
  364.   mpf_init (want);
  365.   for (size_t i = 0; i < numberof (data); i++)
  366.     {
  367.       want_pos = (data[i].want_pos == -1
  368.                   ? strlen (data[i].input) : data[i].want_pos);
  369.       want_ok = (data[i].want != NULL);
  370.       if (data[i].want != NULL)
  371.         mpf_set_str_or_abort (want, data[i].want, 0);
  372.       else
  373.         mpf_set_ui (want, 0L);
  374.       want_d = mpf_get_d (want);
  375.       if (option_check_standard && mpf_cmp_d (want, want_d) == 0)
  376.         {
  377.           istringstream  input (data[i].input);
  378.           input.flags (data[i].flags);
  379.           init_tellg = input.tellg();
  380.           input >> got_d;
  381.           got_ok = (input ? 1 : 0);
  382.           input.clear();
  383.           got_pos = input.tellg() - init_tellg;
  384.           if (got_ok != want_ok)
  385.             {
  386.               WRONG ("stdc++ operator>> wrong status, check_mpf");
  387.               cout << "  want_ok: " << want_ok << "n";
  388.               cout << "  got_ok:  " << got_ok << "n";
  389.             }
  390.           if (want_ok && want_d != got_d)
  391.             {
  392.               WRONG ("stdc++ operator>> wrong result, check_mpf");
  393.               cout << "  got:   " << got_d << "n";
  394.               cout << "  want:  " << want_d << "n";
  395.             }
  396.           if (putback_tellg_works && got_pos != want_pos)
  397.             {
  398.               WRONG ("stdc++ operator>> wrong position, check_mpf");
  399.               cout << "  want_pos: " << want_pos << "n";
  400.               cout << "  got_pos:  " << got_pos << "n";
  401.             }
  402.         }
  403.       {
  404.         istringstream  input (data[i].input);
  405.         input.flags (data[i].flags);
  406.         init_tellg = input.tellg();
  407.         mpf_set_ui (got, 0xDEAD);
  408.         input >> got;
  409.         got_ok = (input ? 1 : 0);
  410.         input.clear();
  411.         got_pos = input.tellg() - init_tellg;
  412.         if (got_ok != want_ok)
  413.           {
  414.             WRONG ("mpf operator>> wrong status");
  415.             cout << "  want_ok: " << want_ok << "n";
  416.             cout << "  got_ok:  " << got_ok << "n";
  417.             abort ();
  418.           }
  419.         if (want_ok && mpf_cmp (got, want) != 0)
  420.           {
  421.             WRONG ("mpf operator>> wrong result");
  422.             mpf_trace ("  got ", got);
  423.             mpf_trace ("  want", want);
  424.             abort ();
  425.           }
  426.         if (putback_tellg_works && got_pos != want_pos)
  427.           {
  428.             WRONG ("mpf operator>> wrong position");
  429.             cout << "  want_pos: " << want_pos << "n";
  430.             cout << "  got_pos:  " << got_pos << "n";
  431.             abort ();
  432.           }
  433.       }
  434.     }
  435.   mpf_clear (got);
  436.   mpf_clear (want);
  437. }
  438. int
  439. main (int argc, char *argv[])
  440. {
  441.   if (argc > 1 && strcmp (argv[1], "-s") == 0)
  442.     option_check_standard = 1;
  443.   tests_start ();
  444.   check_putback_tellg ();
  445.   check_mpz ();
  446.   check_mpq ();
  447.   check_mpf ();
  448.   tests_end ();
  449.   return 0;
  450. }