2007-11-11 12:58:10 -08:00
|
|
|
/*
|
|
|
|
This file is part of Warzone 2100.
|
|
|
|
Copyright (C) 1992-2007 Trolltech ASA.
|
|
|
|
Copyright (C) 2005-2007 Warzone Resurrection Project
|
|
|
|
|
|
|
|
Warzone 2100 is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Warzone 2100 is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Warzone 2100; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "frame.h"
|
|
|
|
#include "printf_ext.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2007-11-13 11:14:27 -08:00
|
|
|
int vslcatprintf(char* str, size_t size, const char* format, va_list ap)
|
|
|
|
{
|
|
|
|
size_t str_len;
|
|
|
|
|
|
|
|
if (str == NULL
|
|
|
|
|| size == 0)
|
|
|
|
{
|
|
|
|
return vsnprintf(NULL, 0, format, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
str_len = strlen(str);
|
|
|
|
|
|
|
|
assert(str_len < size);
|
|
|
|
|
|
|
|
return vsnprintf(&str[str_len], size - str_len, format, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
int slcatprintf(char* str, size_t size, const char* format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
count = vslcatprintf(str, size, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2007-11-11 13:12:13 -08:00
|
|
|
#if defined(WZ_OS_WIN)
|
|
|
|
int vasprintf(char** strp, const char* format, va_list ap)
|
|
|
|
{
|
|
|
|
int count;
|
|
|
|
|
|
|
|
// Find out how long the resulting string is
|
2007-11-12 11:03:30 -08:00
|
|
|
count = vsnprintf(NULL, 0, format, ap);
|
2007-11-11 13:12:13 -08:00
|
|
|
|
|
|
|
if (count == 0)
|
|
|
|
{
|
2007-12-01 15:44:29 -08:00
|
|
|
*strp = strdup("");
|
|
|
|
return 0;
|
2007-11-11 13:12:13 -08:00
|
|
|
}
|
|
|
|
else if (count < 0)
|
|
|
|
{
|
|
|
|
// Something went wrong, so return the error code (probably still requires checking of "errno" though)
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(strp != NULL);
|
|
|
|
|
|
|
|
// Allocate memory for our string
|
|
|
|
*strp = malloc(count + 1);
|
|
|
|
if (*strp == NULL)
|
|
|
|
{
|
|
|
|
debug(LOG_ERROR, "vasprintf: Out of memory!");
|
|
|
|
abort();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do the actual printing into our newly created string
|
|
|
|
return vsprintf(*strp, format, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
int asprintf(char** strp, const char* format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
count = vasprintf(strp, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-11-11 12:58:10 -08:00
|
|
|
#if defined(WZ_CC_MSVC)
|
2008-01-13 03:14:15 -08:00
|
|
|
int wz_vsnprintf(char* str, size_t size, const char* format, va_list ap)
|
2007-11-11 12:58:10 -08:00
|
|
|
{
|
|
|
|
int count;
|
|
|
|
|
|
|
|
// Find out how long the resulting string is
|
|
|
|
count = _vscprintf(format, ap);
|
|
|
|
|
2008-01-13 03:14:15 -08:00
|
|
|
if (count >= 0
|
2007-11-11 12:58:10 -08:00
|
|
|
&& str != NULL)
|
|
|
|
{
|
|
|
|
// Perfrom the actual string formatting
|
|
|
|
_vsnprintf_s(str, size, _TRUNCATE, format, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the amount of characters that would be written if _no_ truncation occurred
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2008-01-13 03:14:15 -08:00
|
|
|
int wz_snprintf(char* str, size_t size, const char* format, ...)
|
2007-11-11 12:58:10 -08:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
count = vsnprintf(str, size, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
#endif
|