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

数学计算

开发平台:

Unix_Linux

  1. /* Support for operator<< routines.
  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 <iostream>
  18. #include <stdarg.h>    /* for va_list and hence doprnt_funs_t */
  19. #include <string.h>
  20. #include "gmp.h"
  21. #include "gmp-impl.h"
  22. using namespace std;
  23. /* Don't need "format" for operator<< routines, just "memory" and "reps".
  24.    Omitting gmp_asprintf_format lets us avoid dragging vsnprintf into the
  25.    link.  __gmp_asprintf_final will be called directly and doesn't need to
  26.    be in the struct.  */
  27. const struct doprnt_funs_t  __gmp_asprintf_funs_noformat = {
  28.   NULL,
  29.   (doprnt_memory_t) __gmp_asprintf_memory,
  30.   (doprnt_reps_t)   __gmp_asprintf_reps,
  31.   NULL
  32. };
  33. void
  34. __gmp_doprnt_params_from_ios (struct doprnt_params_t *p, ios &o)
  35. {
  36.   if ((o.flags() & ios::basefield) == ios::hex)
  37.     {
  38.       p->expfmt = "@%c%02d";
  39.       p->base = (o.flags() & ios::uppercase ? -16 : 16);
  40.     }
  41.   else
  42.     {
  43.       p->expfmt = (o.flags() & ios::uppercase ? "E%c%02d" : "e%c%02d");
  44.       if ((o.flags() & ios::basefield) == ios::oct)
  45.         p->base = 8;
  46.       else
  47.         p->base = 10;
  48.     }
  49.   /* "general" if none or more than one bit set */
  50.   if ((o.flags() & ios::floatfield) == ios::fixed)
  51.     p->conv = DOPRNT_CONV_FIXED;
  52.   else if ((o.flags() & ios::floatfield) == ios::scientific)
  53.     p->conv = DOPRNT_CONV_SCIENTIFIC;
  54.   else
  55.     p->conv = DOPRNT_CONV_GENERAL;
  56.   p->exptimes4 = 0;
  57.   p->fill = o.fill();
  58.   /* "right" if more than one bit set */
  59.   if ((o.flags() & ios::adjustfield) == ios::left)
  60.     p->justify = DOPRNT_JUSTIFY_LEFT;
  61.   else if ((o.flags() & ios::adjustfield) == ios::internal)
  62.     p->justify = DOPRNT_JUSTIFY_INTERNAL;
  63.   else
  64.     p->justify = DOPRNT_JUSTIFY_RIGHT;
  65.   /* ios::fixed allows prec==0, others take 0 as the default 6.
  66.      Don't allow negatives (they do bad things to __gmp_doprnt_float_cxx).  */
  67.   p->prec = MAX (0, o.precision());
  68.   if (p->prec == 0 && p->conv != DOPRNT_CONV_FIXED)
  69.     p->prec = 6;
  70.   /* for hex showbase is always, for octal only non-zero */
  71.   if (o.flags() & ios::showbase)
  72.     p->showbase = ((o.flags() & ios::basefield) == ios::hex
  73.                    ? DOPRNT_SHOWBASE_YES : DOPRNT_SHOWBASE_NONZERO);
  74.   else
  75.     p->showbase = DOPRNT_SHOWBASE_NO;
  76.   p->showpoint = ((o.flags() & ios::showpoint) != 0);
  77.   /* in fixed and scientific always show trailing zeros, in general format
  78.      show them if showpoint is set (or so it seems) */
  79.   if ((o.flags() & ios::floatfield) == ios::fixed
  80.       || (o.flags() & ios::floatfield) == ios::scientific)
  81.     p->showtrailing = 1;
  82.   else
  83.     p->showtrailing = p->showpoint;
  84.   p->sign = (o.flags() & ios::showpos ? '+' : '');
  85.   p->width = o.width();
  86.   /* reset on each output */
  87.   o.width (0);
  88. }