2016-09-21 03:57:24 -07:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Józef Kucia for CodeWeavers
|
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2016-09-21 03:57:24 -07:00
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
2016-09-21 03:57:24 -07:00
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2016-09-21 03:57:24 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "vkd3d_debug.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
2019-03-14 03:34:56 -07:00
|
|
|
#include <errno.h>
|
|
|
|
#include <inttypes.h>
|
2019-04-08 02:05:36 -07:00
|
|
|
#include <limits.h>
|
2016-09-21 03:57:24 -07:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2017-06-16 13:38:21 -07:00
|
|
|
#define VKD3D_DEBUG_BUFFER_COUNT 64
|
|
|
|
#define VKD3D_DEBUG_BUFFER_SIZE 512
|
|
|
|
|
2019-01-31 02:29:28 -08:00
|
|
|
extern const char *vkd3d_dbg_env_name DECLSPEC_HIDDEN;
|
|
|
|
|
2016-09-21 03:57:24 -07:00
|
|
|
static const char *debug_level_names[] =
|
|
|
|
{
|
|
|
|
/* VKD3D_DBG_LEVEL_NONE */ "none",
|
|
|
|
/* VKD3D_DBG_LEVEL_ERR */ "err",
|
|
|
|
/* VKD3D_DBG_LEVEL_FIXME */ "fixme",
|
|
|
|
/* VKD3D_DBG_LEVEL_WARN */ "warn",
|
|
|
|
/* VKD3D_DBG_LEVEL_TRACE */ "trace",
|
|
|
|
};
|
|
|
|
|
2017-06-19 09:05:53 -07:00
|
|
|
enum vkd3d_dbg_level vkd3d_dbg_get_level(void)
|
2016-09-21 03:57:24 -07:00
|
|
|
{
|
|
|
|
static unsigned int level = ~0u;
|
|
|
|
const char *vkd3d_debug;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (level != ~0u)
|
|
|
|
return level;
|
|
|
|
|
2019-01-31 02:29:28 -08:00
|
|
|
if (!(vkd3d_debug = getenv(vkd3d_dbg_env_name)))
|
2016-09-21 03:57:24 -07:00
|
|
|
vkd3d_debug = "";
|
|
|
|
|
2017-06-16 13:38:21 -07:00
|
|
|
for (i = 0; i < ARRAY_SIZE(debug_level_names); ++i)
|
2016-09-21 03:57:24 -07:00
|
|
|
{
|
|
|
|
if (!strcmp(debug_level_names[i], vkd3d_debug))
|
|
|
|
{
|
|
|
|
level = i;
|
|
|
|
return level;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Default debug level. */
|
|
|
|
level = VKD3D_DBG_LEVEL_FIXME;
|
|
|
|
return level;
|
|
|
|
}
|
|
|
|
|
|
|
|
void vkd3d_dbg_printf(enum vkd3d_dbg_level level, const char *function, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
if (vkd3d_dbg_get_level() < level)
|
|
|
|
return;
|
|
|
|
|
2017-06-21 03:22:19 -07:00
|
|
|
assert(level < ARRAY_SIZE(debug_level_names));
|
2016-09-21 03:57:24 -07:00
|
|
|
|
2016-10-05 06:33:24 -07:00
|
|
|
fprintf(stderr, "%s:%s: ", debug_level_names[level], function);
|
2016-09-21 03:57:24 -07:00
|
|
|
va_start(args, fmt);
|
2016-10-05 06:33:24 -07:00
|
|
|
vfprintf(stderr, fmt, args);
|
2016-09-21 03:57:24 -07:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *get_buffer(void)
|
|
|
|
{
|
2017-06-16 13:38:21 -07:00
|
|
|
static char buffers[VKD3D_DEBUG_BUFFER_COUNT][VKD3D_DEBUG_BUFFER_SIZE];
|
2016-10-10 02:22:50 -07:00
|
|
|
static LONG buffer_index;
|
|
|
|
LONG current_index;
|
2016-09-21 03:57:24 -07:00
|
|
|
|
|
|
|
current_index = InterlockedIncrement(&buffer_index) % ARRAY_SIZE(buffers);
|
|
|
|
return buffers[current_index];
|
|
|
|
}
|
|
|
|
|
2018-04-16 03:16:21 -07:00
|
|
|
const char *vkd3d_dbg_vsprintf(const char *fmt, va_list args)
|
2016-09-21 03:57:24 -07:00
|
|
|
{
|
|
|
|
char *buffer;
|
|
|
|
|
|
|
|
buffer = get_buffer();
|
2017-06-21 03:22:19 -07:00
|
|
|
vsnprintf(buffer, VKD3D_DEBUG_BUFFER_SIZE, fmt, args);
|
|
|
|
buffer[VKD3D_DEBUG_BUFFER_SIZE - 1] = '\0';
|
2016-09-21 03:57:24 -07:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2018-04-16 03:16:21 -07:00
|
|
|
const char *vkd3d_dbg_sprintf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
const char *buffer;
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
buffer = vkd3d_dbg_vsprintf(fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2017-06-16 13:38:21 -07:00
|
|
|
const char *debugstr_a(const char *str)
|
|
|
|
{
|
|
|
|
char *buffer, *ptr;
|
|
|
|
char c;
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
return "(null)";
|
|
|
|
|
|
|
|
ptr = buffer = get_buffer();
|
|
|
|
|
|
|
|
*ptr++ = '"';
|
|
|
|
while ((c = *str++) && ptr <= buffer + VKD3D_DEBUG_BUFFER_SIZE - 8)
|
|
|
|
{
|
|
|
|
int escape_char;
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '"':
|
|
|
|
case '\\':
|
|
|
|
case '\n':
|
|
|
|
case '\r':
|
|
|
|
case '\t':
|
|
|
|
escape_char = c;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
escape_char = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (escape_char)
|
|
|
|
{
|
|
|
|
*ptr++ = '\\';
|
|
|
|
*ptr++ = escape_char;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isprint(c))
|
|
|
|
{
|
|
|
|
*ptr++ = c;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*ptr++ = '\\';
|
|
|
|
sprintf(ptr, "%02x", c);
|
|
|
|
ptr += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*ptr++ = '"';
|
|
|
|
|
|
|
|
if (c)
|
|
|
|
{
|
|
|
|
*ptr++ = '.';
|
|
|
|
*ptr++ = '.';
|
|
|
|
*ptr++ = '.';
|
|
|
|
}
|
|
|
|
*ptr = '\0';
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2017-08-02 01:45:06 -07:00
|
|
|
static const char *debugstr_w16(const uint16_t *wstr)
|
2016-09-21 03:57:24 -07:00
|
|
|
{
|
|
|
|
char *buffer, *ptr;
|
2017-08-02 01:45:06 -07:00
|
|
|
uint16_t c;
|
2016-09-21 03:57:24 -07:00
|
|
|
|
|
|
|
if (!wstr)
|
|
|
|
return "(null)";
|
|
|
|
|
|
|
|
ptr = buffer = get_buffer();
|
|
|
|
|
|
|
|
*ptr++ = '"';
|
|
|
|
while ((c = *wstr++) && ptr <= buffer + VKD3D_DEBUG_BUFFER_SIZE - 10)
|
|
|
|
{
|
|
|
|
int escape_char;
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '"':
|
|
|
|
case '\\':
|
|
|
|
case '\n':
|
|
|
|
case '\r':
|
|
|
|
case '\t':
|
|
|
|
escape_char = c;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
escape_char = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (escape_char)
|
|
|
|
{
|
|
|
|
*ptr++ = '\\';
|
|
|
|
*ptr++ = escape_char;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isprint(c))
|
|
|
|
{
|
|
|
|
*ptr++ = c;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*ptr++ = '\\';
|
|
|
|
sprintf(ptr, "%04x", c);
|
|
|
|
ptr += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*ptr++ = '"';
|
|
|
|
|
|
|
|
if (c)
|
|
|
|
{
|
|
|
|
*ptr++ = '.';
|
|
|
|
*ptr++ = '.';
|
|
|
|
*ptr++ = '.';
|
|
|
|
}
|
|
|
|
*ptr = '\0';
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
2017-08-02 01:45:06 -07:00
|
|
|
|
|
|
|
static const char *debugstr_w32(const uint32_t *wstr)
|
|
|
|
{
|
|
|
|
char *buffer, *ptr;
|
|
|
|
uint32_t c;
|
|
|
|
|
|
|
|
if (!wstr)
|
|
|
|
return "(null)";
|
|
|
|
|
|
|
|
ptr = buffer = get_buffer();
|
|
|
|
|
|
|
|
*ptr++ = '"';
|
|
|
|
while ((c = *wstr++) && ptr <= buffer + VKD3D_DEBUG_BUFFER_SIZE - 10)
|
|
|
|
{
|
|
|
|
int escape_char;
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '"':
|
|
|
|
case '\\':
|
|
|
|
case '\n':
|
|
|
|
case '\r':
|
|
|
|
case '\t':
|
|
|
|
escape_char = c;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
escape_char = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (escape_char)
|
|
|
|
{
|
|
|
|
*ptr++ = '\\';
|
|
|
|
*ptr++ = escape_char;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isprint(c))
|
|
|
|
{
|
|
|
|
*ptr++ = c;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*ptr++ = '\\';
|
|
|
|
sprintf(ptr, "%04x", c);
|
|
|
|
ptr += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*ptr++ = '"';
|
|
|
|
|
|
|
|
if (c)
|
|
|
|
{
|
|
|
|
*ptr++ = '.';
|
|
|
|
*ptr++ = '.';
|
|
|
|
*ptr++ = '.';
|
|
|
|
}
|
|
|
|
*ptr = '\0';
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *debugstr_w(const WCHAR *wstr, size_t wchar_size)
|
|
|
|
{
|
|
|
|
if (wchar_size == 2)
|
|
|
|
return debugstr_w16((const uint16_t *)wstr);
|
|
|
|
return debugstr_w32((const uint32_t *)wstr);
|
|
|
|
}
|
2019-03-14 03:34:56 -07:00
|
|
|
|
|
|
|
unsigned int vkd3d_env_var_as_uint(const char *name, unsigned int default_value)
|
|
|
|
{
|
|
|
|
const char *value = getenv(name);
|
|
|
|
unsigned long r;
|
|
|
|
char *end_ptr;
|
|
|
|
|
|
|
|
if (value)
|
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
r = strtoul(value, &end_ptr, 0);
|
|
|
|
if (!errno && end_ptr != value)
|
2019-04-08 02:05:36 -07:00
|
|
|
return min(r, UINT_MAX);
|
2019-03-14 03:34:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return default_value;
|
|
|
|
}
|