171 lines
4.8 KiB
C++
171 lines
4.8 KiB
C++
/////////////////////////////////////////////////////////////////////////
|
|
// $Id$
|
|
/////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2001-2021 The Bochs Project
|
|
//
|
|
// 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 of the License, or (at your option) any later version.
|
|
//
|
|
// 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.
|
|
//
|
|
// 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
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef BX_LOGIO_H
|
|
#define BX_LOGIO_H
|
|
|
|
// Log level defines
|
|
typedef enum {
|
|
LOGLEV_DEBUG = 0,
|
|
LOGLEV_INFO,
|
|
LOGLEV_ERROR,
|
|
LOGLEV_PANIC,
|
|
N_LOGLEV
|
|
} bx_log_levels;
|
|
|
|
// Log action defines
|
|
typedef enum {
|
|
ACT_IGNORE = 0,
|
|
ACT_REPORT,
|
|
ACT_WARN,
|
|
ACT_ASK,
|
|
ACT_FATAL,
|
|
N_ACT
|
|
} bx_log_actions;
|
|
|
|
typedef class BOCHSAPI logfunctions
|
|
{
|
|
char *name;
|
|
char *prefix;
|
|
int onoff[N_LOGLEV];
|
|
class iofunctions *logio;
|
|
// default log actions for all devices, declared and initialized
|
|
// in logio.cc.
|
|
BOCHSAPI_CYGONLY static int default_onoff[N_LOGLEV];
|
|
public:
|
|
logfunctions(void);
|
|
logfunctions(class iofunctions *);
|
|
virtual ~logfunctions(void);
|
|
|
|
void info(const char *fmt, ...) BX_CPP_AttrPrintf(2, 3);
|
|
void error(const char *fmt, ...) BX_CPP_AttrPrintf(2, 3);
|
|
void panic(const char *fmt, ...) BX_CPP_AttrPrintf(2, 3);
|
|
void ldebug(const char *fmt, ...) BX_CPP_AttrPrintf(2, 3);
|
|
void fatal1(const char *fmt, ...) BX_CPP_AttrPrintf(2, 3);
|
|
void fatal(int level, const char *prefix, const char *fmt, va_list ap, int exit_status);
|
|
void warn(int level, const char *prefix, const char *fmt, va_list ap);
|
|
void ask(int level, const char *prefix, const char *fmt, va_list ap);
|
|
void put(const char *p);
|
|
void put(const char *n, const char *p);
|
|
void setio(class iofunctions *);
|
|
void setonoff(int loglev, int value) {
|
|
assert (loglev >= 0 && loglev < N_LOGLEV);
|
|
onoff[loglev] = value;
|
|
}
|
|
const char *get_name() const { return name; }
|
|
const char *getprefix() const { return prefix; }
|
|
int getonoff(int level) const {
|
|
assert (level>=0 && level<N_LOGLEV);
|
|
return onoff[level];
|
|
}
|
|
static void set_default_action(int loglev, int action) {
|
|
assert (loglev >= 0 && loglev < N_LOGLEV);
|
|
assert (action >= 0 && action < N_ACT);
|
|
default_onoff[loglev] = action;
|
|
}
|
|
static int get_default_action(int loglev) {
|
|
assert (loglev >= 0 && loglev < N_LOGLEV);
|
|
return default_onoff[loglev];
|
|
}
|
|
} logfunc_t;
|
|
|
|
#define BX_LOGPREFIX_LEN 20
|
|
|
|
class BOCHSAPI iofunctions {
|
|
int magic;
|
|
char logprefix[BX_LOGPREFIX_LEN + 1];
|
|
FILE *logfd;
|
|
class logfunctions *log;
|
|
void init(void);
|
|
void flush(void);
|
|
|
|
// Log Class types
|
|
public:
|
|
iofunctions(void);
|
|
iofunctions(FILE *);
|
|
iofunctions(int);
|
|
iofunctions(const char *);
|
|
~iofunctions(void);
|
|
|
|
void out(int level, const char *pre, const char *fmt, va_list ap);
|
|
|
|
void init_log(const char *fn);
|
|
void init_log(int fd);
|
|
void init_log(FILE *fs);
|
|
void exit_log();
|
|
void set_log_prefix(const char *prefix);
|
|
int get_n_logfns() const { return n_logfn; }
|
|
logfunc_t *get_logfn(int index) { return logfn_list[index]; }
|
|
void add_logfn(logfunc_t *fn);
|
|
void remove_logfn(logfunc_t *fn);
|
|
void set_log_action(int loglevel, int action);
|
|
const char *getlevel(int i) const;
|
|
const char *getaction(int i) const;
|
|
int isaction(const char *val) const;
|
|
|
|
protected:
|
|
int n_logfn;
|
|
#define MAX_LOGFNS 512
|
|
logfunc_t *logfn_list[MAX_LOGFNS];
|
|
const char *logfn;
|
|
};
|
|
|
|
typedef class iofunctions iofunc_t;
|
|
|
|
#define SAFE_GET_IOFUNC() \
|
|
((io==NULL)? (io=new iofunc_t("/dev/stderr")) : io)
|
|
#define SAFE_GET_GENLOG() \
|
|
((genlog==NULL)? (genlog=new logfunc_t(SAFE_GET_IOFUNC())) : genlog)
|
|
|
|
#if BX_NO_LOGGING
|
|
|
|
#define BX_INFO(x)
|
|
#define BX_DEBUG(x)
|
|
#define BX_ERROR(x)
|
|
#define BX_PANIC(x) (LOG_THIS panic) x
|
|
#define BX_FATAL(x) (LOG_THIS fatal1) x
|
|
|
|
#define BX_ASSERT(x)
|
|
|
|
#else
|
|
|
|
#define BX_INFO(x) (LOG_THIS info) x
|
|
#define BX_DEBUG(x) (LOG_THIS ldebug) x
|
|
#define BX_ERROR(x) (LOG_THIS error) x
|
|
#define BX_PANIC(x) (LOG_THIS panic) x
|
|
#define BX_FATAL(x) (LOG_THIS fatal1) x
|
|
|
|
#if BX_ASSERT_ENABLE
|
|
#define BX_ASSERT(x) do {if (!(x)) BX_PANIC(("failed assertion \"%s\" at %s:%d\n", #x, __FILE__, __LINE__));} while (0)
|
|
#else
|
|
#define BX_ASSERT(x)
|
|
#endif
|
|
|
|
#endif
|
|
|
|
BOCHSAPI extern iofunc_t *io;
|
|
BOCHSAPI extern logfunc_t *genlog;
|
|
|
|
#define BX_NULL_PREFIX "[ ]"
|
|
|
|
#endif
|