int2str.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <my_global.h>
  14. #include "m_string.h"
  15. /*
  16.   _dig_vec arrays are public because they are used in several outer places.
  17. */
  18. char NEAR _dig_vec_upper[] =
  19.   "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  20. char NEAR _dig_vec_lower[] =
  21.   "0123456789abcdefghijklmnopqrstuvwxyz";
  22. /*
  23.   Convert integer to its string representation in given scale of notation.
  24.    
  25.   SYNOPSIS
  26.     int2str()
  27.       val     - value to convert
  28.       dst     - points to buffer where string representation should be stored
  29.       radix   - radix of scale of notation
  30.       upcase  - set to 1 if we should use upper-case digits
  31.   DESCRIPTION
  32.     Converts the (long) integer value to its character form and moves it to 
  33.     the destination buffer followed by a terminating NUL. 
  34.     If radix is -2..-36, val is taken to be SIGNED, if radix is  2..36, val is
  35.     taken to be UNSIGNED. That is, val is signed if and only if radix is. 
  36.     All other radixes treated as bad and nothing will be changed in this case.
  37.     For conversion to decimal representation (radix is -10 or 10) one can use
  38.     optimized int10_to_str() function.
  39.   RETURN VALUE
  40.     Pointer to ending NUL character or NullS if radix is bad.
  41. */
  42.   
  43. char *
  44. int2str(register long int val, register char *dst, register int radix, 
  45.         int upcase)
  46. {
  47.   char buffer[65];
  48.   register char *p;
  49.   long int new_val;
  50.   char *dig_vec= upcase ? _dig_vec_upper : _dig_vec_lower;
  51.   if (radix < 0)
  52.   {
  53.     if (radix < -36 || radix > -2)
  54.       return NullS;
  55.     if (val < 0)
  56.     {
  57.       *dst++ = '-';
  58.       val = -val;
  59.     }
  60.     radix = -radix;
  61.   }
  62.   else if (radix > 36 || radix < 2)
  63.     return NullS;
  64.   /*
  65.     The slightly contorted code which follows is due to the fact that
  66.     few machines directly support unsigned long / and %.  Certainly
  67.     the VAX C compiler generates a subroutine call.  In the interests
  68.     of efficiency (hollow laugh) I let this happen for the first digit
  69.     only; after that "val" will be in range so that signed integer
  70.     division will do.  Sorry 'bout that.  CHECK THE CODE PRODUCED BY
  71.     YOUR C COMPILER.  The first % and / should be unsigned, the second
  72.     % and / signed, but C compilers tend to be extraordinarily
  73.     sensitive to minor details of style.  This works on a VAX, that's
  74.     all I claim for it.
  75.   */
  76.   p = &buffer[sizeof(buffer)-1];
  77.   *p = '';
  78.   new_val=(ulong) val / (ulong) radix;
  79.   *--p = dig_vec[(uchar) ((ulong) val- (ulong) new_val*(ulong) radix)];
  80.   val = new_val;
  81. #ifdef HAVE_LDIV
  82.   while (val != 0)
  83.   {
  84.     ldiv_t res;
  85.     res=ldiv(val,radix);
  86.     *--p = dig_vec[res.rem];
  87.     val= res.quot;
  88.   }
  89. #else
  90.   while (val != 0)
  91.   {
  92.     new_val=val/radix;
  93.     *--p = dig_vec[(uchar) (val-new_val*radix)];
  94.     val= new_val;
  95.   }
  96. #endif
  97.   while ((*dst++ = *p++) != 0) ;
  98.   return dst-1;
  99. }
  100. /*
  101.   Converts integer to its string representation in decimal notation.
  102.    
  103.   SYNOPSIS
  104.     int10_to_str()
  105.       val     - value to convert
  106.       dst     - points to buffer where string representation should be stored
  107.       radix   - flag that shows whenever val should be taken as signed or not
  108.   DESCRIPTION
  109.     This is version of int2str() function which is optimized for normal case
  110.     of radix 10/-10. It takes only sign of radix parameter into account and 
  111.     not its absolute value.
  112.   RETURN VALUE
  113.     Pointer to ending NUL character.
  114. */
  115. char *int10_to_str(long int val,char *dst,int radix)
  116. {
  117.   char buffer[65];
  118.   register char *p;
  119.   long int new_val;
  120.   if (radix < 0) /* -10 */
  121.   {
  122.     if (val < 0)
  123.     {
  124.       *dst++ = '-';
  125.       val = -val;
  126.     }
  127.   }
  128.   p = &buffer[sizeof(buffer)-1];
  129.   *p = '';
  130.   new_val= (long) ((unsigned long int) val / 10);
  131.   *--p = '0'+ (char) ((unsigned long int) val - (unsigned long) new_val * 10);
  132.   val = new_val;
  133.   while (val != 0)
  134.   {
  135.     new_val=val/10;
  136.     *--p = '0' + (char) (val-new_val*10);
  137.     val= new_val;
  138.   }
  139.   while ((*dst++ = *p++) != 0) ;
  140.   return dst-1;
  141. }