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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_get_str (string, base, mp_src) -- Convert the multiple precision
  2.    number MP_SRC to a string STRING of base BASE.  If STRING is NULL
  3.    allocate space for the result.  In any case, return a pointer to the
  4.    result.  If STRING is not NULL, the caller must ensure enough space is
  5.    available to store the result.
  6. Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2002, 2005 Free Software
  7. Foundation, Inc.
  8. This file is part of the GNU MP Library.
  9. The GNU MP Library is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU Lesser General Public License as published by
  11. the Free Software Foundation; either version 3 of the License, or (at your
  12. option) any later version.
  13. The GNU MP Library is distributed in the hope that it will be useful, but
  14. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  16. License for more details.
  17. You should have received a copy of the GNU Lesser General Public License
  18. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  19. #include <string.h> /* for strlen */
  20. #include "gmp.h"
  21. #include "gmp-impl.h"
  22. #include "longlong.h"
  23. char *
  24. mpz_get_str (char *res_str, int base, mpz_srcptr x)
  25. {
  26.   mp_ptr xp;
  27.   mp_size_t x_size = x->_mp_size;
  28.   char *str;
  29.   char *return_str;
  30.   size_t str_size;
  31.   size_t alloc_size = 0;
  32.   char *num_to_text;
  33.   int i;
  34.   TMP_DECL;
  35.   if (base >= 0)
  36.     {
  37.       num_to_text = "0123456789abcdefghijklmnopqrstuvwxyz";
  38.       if (base == 0)
  39. base = 10;
  40.       else if (base > 36)
  41. {
  42.   num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
  43.   if (base > 62)
  44.     return NULL;
  45. }
  46.     }
  47.   else
  48.     {
  49.       base = -base;
  50.       num_to_text = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  51.     }
  52.   /* allocate string for the user if necessary */
  53.   if (res_str == NULL)
  54.     {
  55.       /* digits, null terminator, possible minus sign */
  56.       MPN_SIZEINBASE (alloc_size, PTR(x), ABS(x_size), base);
  57.       alloc_size += 1 + (x_size<0);
  58.       res_str = (char *) (*__gmp_allocate_func) (alloc_size);
  59.     }
  60.   return_str = res_str;
  61.   if (x_size < 0)
  62.     {
  63.       *res_str++ = '-';
  64.       x_size = -x_size;
  65.     }
  66.   /* mpn_get_str clobbers its input on non power-of-2 bases */
  67.   TMP_MARK;
  68.   xp = x->_mp_d;
  69.   if (! POW2_P (base))
  70.     {
  71.       xp = TMP_ALLOC_LIMBS (x_size + 1);  /* +1 in case x_size==0 */
  72.       MPN_COPY (xp, x->_mp_d, x_size);
  73.     }
  74.   str_size = mpn_get_str ((unsigned char *) res_str, base, xp, x_size);
  75.   ASSERT (alloc_size == 0 || str_size <= alloc_size - (SIZ(x) < 0));
  76.   /* might have a leading zero, skip it */
  77.   str = res_str;
  78.   if (*res_str == 0 && str_size != 1)
  79.     {
  80.       str_size--;
  81.       str++;
  82.       ASSERT (*str != 0);  /* at most one leading zero */
  83.     }
  84.   /* Convert result to printable chars, and move down if there was a leading
  85.      zero.  */
  86.   for (i = 0; i < str_size; i++)
  87.     res_str[i] = num_to_text[(int) str[i]];
  88.   res_str[str_size] = 0;
  89.   TMP_FREE;
  90.   /* if allocated then resize down to the actual space required */
  91.   if (alloc_size != 0)
  92.     {
  93.       size_t  actual_size = str_size + 1 + (res_str - return_str);
  94.       ASSERT (actual_size == strlen (return_str) + 1);
  95.       __GMP_REALLOCATE_FUNC_MAYBE_TYPE (return_str, alloc_size, actual_size,
  96.                                         char);
  97.     }
  98.   return return_str;
  99. }