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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_out_str(stream, base, integer) -- Output to STREAM the multi prec.
  2.    integer INTEGER in base BASE.
  3. Copyright 1991, 1993, 1994, 1996, 2001, 2005 Free Software Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include <stdio.h>
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. size_t
  19. mpz_out_str (FILE *stream, int base, mpz_srcptr x)
  20. {
  21.   mp_ptr xp;
  22.   mp_size_t x_size = x->_mp_size;
  23.   unsigned char *str;
  24.   size_t str_size;
  25.   size_t i;
  26.   size_t written;
  27.   char *num_to_text;
  28.   TMP_DECL;
  29.   if (stream == 0)
  30.     stream = stdout;
  31.   if (base >= 0)
  32.     {
  33.       num_to_text = "0123456789abcdefghijklmnopqrstuvwxyz";
  34.       if (base == 0)
  35. base = 10;
  36.       else if (base > 36)
  37. {
  38.   num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
  39.   if (base > 62)
  40.     return 0;
  41. }
  42.     }
  43.   else
  44.     {
  45.       base = -base;
  46.       num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  47.     }
  48.   if (x_size == 0)
  49.     {
  50.       fputc ('0', stream);
  51.       return ferror (stream) ? 0 : 1;
  52.     }
  53.   written = 0;
  54.   if (x_size < 0)
  55.     {
  56.       fputc ('-', stream);
  57.       x_size = -x_size;
  58.       written = 1;
  59.     }
  60.   TMP_MARK;
  61.   str_size = ((size_t) (x_size * GMP_LIMB_BITS
  62. * mp_bases[base].chars_per_bit_exactly)) + 3;
  63.   str = (unsigned char *) TMP_ALLOC (str_size);
  64.   /* Move the number to convert into temporary space, since mpn_get_str
  65.      clobbers its argument + needs one extra high limb....  */
  66.   xp = TMP_ALLOC_LIMBS (x_size + 1);
  67.   MPN_COPY (xp, x->_mp_d, x_size);
  68.   str_size = mpn_get_str (str, base, xp, x_size);
  69.   /* mpn_get_str might make some leading zeros.  Skip them.  */
  70.   while (*str == 0)
  71.     {
  72.       str_size--;
  73.       str++;
  74.     }
  75.   /* Translate to printable chars.  */
  76.   for (i = 0; i < str_size; i++)
  77.     str[i] = num_to_text[str[i]];
  78.   str[str_size] = 0;
  79.   {
  80.     size_t fwret;
  81.     fwret = fwrite ((char *) str, 1, str_size, stream);
  82.     written += fwret;
  83.   }
  84.   TMP_FREE;
  85.   return ferror (stream) ? 0 : written;
  86. }