my_vsnprintf.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. #include "mysys_priv.h"
  18. #include "mysys_err.h"
  19. #include <m_string.h>
  20. #include <stdarg.h>
  21. #include <m_ctype.h>
  22. int my_snprintf(char* to, size_t n, const char* fmt, ...)
  23. {
  24.   va_list args;
  25.   va_start(args,fmt);
  26.   return my_vsnprintf(to, n, fmt, args);
  27. }
  28. int my_vsnprintf(char *to, size_t n, const char* fmt, va_list ap)
  29. {
  30.   char *start=to, *end=to+n-1;
  31.   for (; *fmt ; fmt++)
  32.   {
  33.     if (fmt[0] != '%')
  34.     {
  35.       if (to == end) /* End of buffer */
  36. break;
  37.       *to++= *fmt; /* Copy ordinary char */
  38.       continue;
  39.     }
  40.     /* Skipp if max size is used (to be compatible with printf) */
  41.     fmt++;
  42.     while (isdigit(*fmt) || *fmt == '.' || *fmt == '-')
  43.       fmt++;
  44.     if (*fmt == 'l')
  45.       fmt++;
  46.     if (*fmt == 's') /* String parameter */
  47.     {
  48.       reg2 char *par = va_arg(ap, char *);
  49.       uint plen;
  50.       if (!par) par = (char*)"(null)";
  51.       plen = (uint) strlen(par);
  52.       if ((uint) (end-to) > plen) /* Replace if possible */
  53.       {
  54. to=strmov(to,par);
  55. continue;
  56.       }
  57.     }
  58.     else if (*fmt == 'd' || *fmt == 'u') /* Integer parameter */
  59.     {
  60.       register int iarg;
  61.       if ((uint) (end-to) < 16)
  62. break;
  63.       iarg = va_arg(ap, int);
  64.       if (*fmt == 'd')
  65. to=int10_to_str((long) iarg,to, -10);
  66.       else
  67. to=int10_to_str((long) (uint) iarg,to,10);
  68.       continue;
  69.     }
  70.     /* We come here on '%%', unknown code or too long parameter */
  71.     if (to == end)
  72.       break;
  73.     *to++='%'; /* % used as % or unknown code */
  74.   }
  75.   *to=''; /* End of errmessage */
  76.   return (uint) (to - start);
  77. }
  78. #ifdef MAIN
  79. static void my_printf(const char * fmt, ...)
  80. {
  81.   char buf[32];
  82.   int n;
  83.   va_list ar;
  84.   va_start(ar, fmt);
  85.   n = my_vsnprintf(buf, sizeof(buf),fmt, ar);
  86.   printf(buf);
  87.   printf("n=%d, strlen=%dn", n, strlen(buf));
  88.   va_end(ar);
  89. }
  90. int main()
  91. {
  92.   
  93.   my_printf("Hellon");
  94.   my_printf("Hello int, %dn", 1);
  95.   my_printf("Hello string '%s'n", "I am a string");
  96.   my_printf("Hello hack hack hack hack hack hack hack %dn", 1);
  97.   my_printf("Hello %d hack  %dn", 1, 4);
  98.   my_printf("Hello %d hack hack hack hack hack %dn", 1, 4);
  99.   my_printf("Hello '%s' hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhn", "hack");
  100.   my_printf("Hello hhhhhhhhhhhhhh %d sssssssssssssssn", 1);
  101.   my_printf("Hello  %un", 1);
  102.   my_printf("conn %ld to: '%-.64s' user: '%-.32s' host:
  103.  `%-.64s' (%-.64s)", 1, 0,0,0,0);
  104.   return 0;
  105. }
  106. #endif