00001
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00032
00033 #ifndef GROOVX_RUTZ_SFMT_CC_UTC20050705180246_DEFINED
00034 #define GROOVX_RUTZ_SFMT_CC_UTC20050705180246_DEFINED
00035
00036 #include "rutz/sfmt.h"
00037
00038 #include "rutz/compat_snprintf.h"
00039 #include "rutz/error.h"
00040
00041 #include "rutz/debug.h"
00042
00043 using rutz::fstring;
00044
00045 fstring rutz::vsfmt(const char* fmt, va_list ap)
00046 {
00047
00048
00049 if (fmt == 0 || fmt[0] == '\0')
00050 {
00051 return fstring();
00052 }
00053
00054 size_t bufsize = 512;
00055 while (1)
00056 {
00057
00058
00059
00060 char buf[bufsize];
00061
00062 const int nchars = vsnprintf(buf, bufsize, fmt, ap);
00063
00064 if (nchars < 0)
00065 {
00066
00067
00068
00069 char errbuf[1024];
00070 snprintf(&errbuf[0], sizeof(errbuf),
00071 "vsnprintf failed with format string '%s' "
00072 "and bufsize %lu", fmt, (unsigned long) bufsize);
00073 throw rutz::error(&errbuf[0], SRC_POS);
00074 }
00075 else if (static_cast<size_t>(nchars) >= bufsize)
00076 {
00077
00078
00079 const size_t new_bufsize = bufsize * 2;
00080
00081
00082 if (new_bufsize < bufsize)
00083 {
00084 char errbuf[1024];
00085 snprintf(&errbuf[0], sizeof(errbuf),
00086 "buffer size overflow with format string '%s' "
00087 "and bufsize %lu", fmt, (unsigned long) bufsize);
00088 throw rutz::error(&errbuf[0], SRC_POS);
00089 }
00090
00091 bufsize = new_bufsize;
00092 continue;
00093 }
00094 else
00095 {
00096
00097 return fstring(rutz::char_range(&buf[0], nchars));
00098 }
00099 }
00100
00101 GVX_ASSERT(0);
00102 return fstring();
00103 }
00104
00105 fstring rutz::sfmt(const char* fmt, ...)
00106 {
00107 va_list a;
00108 va_start(a, fmt);
00109 const fstring result = rutz::vsfmt(fmt, a);
00110 va_end(a);
00111 return result;
00112 }
00113
00114 static const char __attribute__((used)) vcid_groovx_rutz_sfmt_cc_utc20050705180246[] = "$Id: sfmt.cc 10065 2007-04-12 05:54:56Z rjpeters $ $HeadURL: file:
00115 #endif // !GROOVX_RUTZ_SFMT_CC_UTC20050705180246DEFINED