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

数学计算

开发平台:

Unix_Linux

  1. /* __gmp_doprnt_integer -- integer style formatted output.
  2.    THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY.  THEY'RE ALMOST
  3.    CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
  4.    FUTURE GNU MP RELEASES.
  5. Copyright 2001 Free Software Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include "config.h"
  18. #if HAVE_STDARG
  19. #include <stdarg.h>    /* for va_list and hence doprnt_funs_t */
  20. #else
  21. #include <varargs.h>
  22. #endif
  23. #include <string.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include "gmp.h"
  27. #include "gmp-impl.h"
  28. int
  29. __gmp_doprnt_integer (const struct doprnt_funs_t *funs,
  30.       void *data,
  31.       const struct doprnt_params_t *p,
  32.       const char *s)
  33. {
  34.   int         retval = 0;
  35.   int         slen, justlen, showbaselen, sign, signlen, slashlen, zeros;
  36.   int         justify, den_showbaselen;
  37.   const char  *slash, *showbase;
  38.   /* '+' or ' ' if wanted, and don't already have '-' */
  39.   sign = p->sign;
  40.   if (s[0] == '-')
  41.     {
  42.       sign = s[0];
  43.       s++;
  44.     }
  45.   signlen = (sign != '');
  46.   /* if the precision was explicitly 0, print nothing for a 0 value */
  47.   if (*s == '0' && p->prec == 0)
  48.     s++;
  49.   slen = strlen (s);
  50.   slash = strchr (s, '/');
  51.   showbase = NULL;
  52.   showbaselen = 0;
  53.   if (p->showbase != DOPRNT_SHOWBASE_NO)
  54.     {
  55.       switch (p->base) {
  56.       case 16:  showbase = "0x"; showbaselen = 2; break;
  57.       case -16: showbase = "0X"; showbaselen = 2; break;
  58.       case 8:   showbase = "0";  showbaselen = 1; break;
  59.       }
  60.     }
  61.   den_showbaselen = showbaselen;
  62.   if (slash == NULL
  63.       || (p->showbase == DOPRNT_SHOWBASE_NONZERO && slash[1] == '0'))
  64.     den_showbaselen = 0;
  65.   if (p->showbase == DOPRNT_SHOWBASE_NONZERO && s[0] == '0')
  66.     showbaselen = 0;
  67.   /* the influence of p->prec on mpq is currently undefined */
  68.   zeros = MAX (0, p->prec - slen);
  69.   /* space left over after actual output length */
  70.   justlen = p->width
  71.     - (strlen(s) + signlen + showbaselen + den_showbaselen + zeros);
  72.   justify = p->justify;
  73.   if (justlen <= 0) /* no justifying if exceed width */
  74.     justify = DOPRNT_JUSTIFY_NONE;
  75.   if (justify == DOPRNT_JUSTIFY_RIGHT)             /* pad right */
  76.     DOPRNT_REPS (p->fill, justlen);
  77.   DOPRNT_REPS_MAYBE (sign, signlen);               /* sign */
  78.   DOPRNT_MEMORY_MAYBE (showbase, showbaselen);     /* base */
  79.   DOPRNT_REPS_MAYBE ('0', zeros);                  /* zeros */
  80.   if (justify == DOPRNT_JUSTIFY_INTERNAL)          /* pad internal */
  81.     DOPRNT_REPS (p->fill, justlen);
  82.   /* if there's a showbase on the denominator, then print the numerator
  83.      separately so it can be inserted */
  84.   if (den_showbaselen != 0)
  85.     {
  86.       ASSERT (slash != NULL);
  87.       slashlen = slash+1 - s;
  88.       DOPRNT_MEMORY (s, slashlen);                 /* numerator and slash */
  89.       slen -= slashlen;
  90.       s += slashlen;
  91.       DOPRNT_MEMORY (showbase, den_showbaselen);
  92.     }
  93.   DOPRNT_MEMORY (s, slen);                         /* number, or denominator */
  94.   if (justify == DOPRNT_JUSTIFY_LEFT)              /* pad left */
  95.     DOPRNT_REPS (p->fill, justlen);
  96.  done:
  97.   return retval;
  98.  error:
  99.   retval = -1;
  100.   goto done;
  101. }