1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
/*
* This file is part of the Advance project.
*
* Copyright (C) 1999, 2000, 2001, 2002, 2003 Andrea Mazzoleni
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* In addition, as a special exception, Andrea Mazzoleni
* gives permission to link the code of this program with
* the MAME library (or with modified versions of MAME that use the
* same license as MAME), and distribute linked combinations including
* the two. You must obey the GNU General Public License in all
* respects for all of the code used other than MAME. If you modify
* this file, you may extend this exception to your version of the
* file, but you are not obligated to do so. If you do not wish to
* do so, delete this exception statement from your version.
*/
#include "portable.h"
#include "extra.h"
#ifndef USE_ERROR_SILENT
#include "log.h"
#endif
#include "error.h"
#include "snstring.h"
/****************************************************************************/
/* Error */
/**
* Max length of the error description.
*/
#define ERROR_DESC_MAX 2048
/**
* Last error description.
*/
static char error_desc_buffer[ERROR_DESC_MAX];
/**
* Flag set if an unsupported feature is found.
*/
static adv_bool error_unsupported_flag;
/**
* Flag for cat mode.
*/
static adv_bool error_cat_flag;
/**
* Prefix for cat mode.
*/
static char error_cat_prefix_buffer[ERROR_DESC_MAX];
/**
* Set the error cat mode.
* If enabled the error text is appended at the end of the previous error.
*/
void error_cat_set(const char* prefix, adv_bool mode)
{
if (prefix)
sncpy(error_cat_prefix_buffer, sizeof(error_cat_prefix_buffer), prefix);
else
error_cat_prefix_buffer[0] = 0;
error_cat_flag = mode;
}
/**
* Get the current error description.
*/
const char* error_get(void)
{
/* remove the trailing \n */
while (error_desc_buffer[0] && isspace(error_desc_buffer[strlen(error_desc_buffer)-1]))
error_desc_buffer[strlen(error_desc_buffer)-1] = 0;
return error_desc_buffer;
}
/**
* Reset the description of the last error.
*/
void error_reset(void)
{
error_unsupported_flag = 0;
error_desc_buffer[0] = 0;
}
/**
* Set the description of the last error.
* The previous description is overwritten.
* \note The description IS logged.
*/
void error_set(const char* text, ...)
{
va_list arg;
char* p;
unsigned size;
error_unsupported_flag = 0;
if (error_cat_flag) {
if (error_cat_prefix_buffer[0]) {
sncat(error_desc_buffer, sizeof(error_desc_buffer), error_cat_prefix_buffer);
sncat(error_desc_buffer, sizeof(error_desc_buffer), ": ");
}
p = error_desc_buffer + strlen(error_desc_buffer);
size = sizeof(error_desc_buffer) - strlen(error_desc_buffer);
} else {
p = error_desc_buffer;
size = sizeof(error_desc_buffer);
}
va_start(arg, text);
vsnprintf(p, size, text, arg);
#ifndef USE_ERROR_SILENT
log_std(("advance:msg:"));
if (error_cat_flag && error_cat_prefix_buffer[0]) {
log_std(("%s:", error_cat_prefix_buffer));
}
log_std((" "));
log_va(text, arg);
if (!text[0] || text[strlen(text)-1] != '\n')
log_std(("\n"));
#endif
va_end(arg);
}
/**
* Set the description of the last error due unsupported feature.
* \note The description IS logged.
*/
void error_unsupported_set(const char* text, ...)
{
va_list arg;
error_unsupported_flag = 1;
va_start(arg, text);
vsnprintf(error_desc_buffer, sizeof(error_desc_buffer), text, arg);
#ifndef USE_ERROR_SILENT
log_std(("advance: set_error_description \""));
log_va(text, arg);
log_std(("\"\n"));
#endif
va_end(arg);
}
/**
* Check if a unsupported feature is found.
* This function can be called only if another function returns with error.
* \return
* - ==0 Not found.
* - !=0 Unsupported feature found.
*/
adv_bool error_unsupported_get(void)
{
return error_unsupported_flag;
}
#ifndef USE_ERROR_SILENT
/**
* Set the error description.
* The previous description is overwritten.
* The description is not logged.
*/
void error_nolog_set(const char* text, ...)
{
va_list arg;
char* p;
unsigned size;
error_unsupported_flag = 0;
if (error_cat_flag) {
if (error_cat_prefix_buffer[0]) {
sncat(error_desc_buffer, sizeof(error_desc_buffer), error_cat_prefix_buffer);
sncat(error_desc_buffer, sizeof(error_desc_buffer), ": ");
}
p = error_desc_buffer + strlen(error_desc_buffer);
size = sizeof(error_desc_buffer) - strlen(error_desc_buffer);
} else {
p = error_desc_buffer;
size = sizeof(error_desc_buffer);
}
va_start(arg, text);
vsnprintf(p, size, text, arg);
va_end(arg);
}
#endif
|