1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-03 08:48:42 +00:00
RetroArch/verbosity.c

372 lines
8.3 KiB
C
Raw Normal View History

2015-11-23 11:03:38 +00:00
/* RetroArch - A frontend for libretro.
2017-03-22 02:09:18 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
2019-06-23 22:23:39 +00:00
* Copyright (C) 2016-2019 - Brad Parker
2015-11-23 11:03:38 +00:00
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
2015-11-30 03:49:28 +00:00
#ifdef _XBOX1
#include <xtl.h>
#endif
#ifdef __MACH__
#include <TargetConditionals.h>
#if TARGET_IPHONE_SIMULATOR
#include <stdio.h>
#else
#include <asl.h>
#endif
#endif
2016-09-05 23:02:25 +00:00
#include <stdio.h>
#include <stdarg.h>
2018-01-03 13:31:41 +00:00
#ifdef _MSC_VER
#include <compat/msvc.h>
#endif
2015-11-30 03:49:28 +00:00
#ifdef ANDROID
#include <android/log.h>
#endif
2015-11-29 02:08:27 +00:00
2019-02-07 04:42:23 +00:00
#if defined(_WIN32) && !defined(_XBOX)
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
2016-01-20 03:07:24 +00:00
#include <string/stdstring.h>
#include <streams/file_stream.h>
2017-12-04 15:48:17 +00:00
#include <compat/fopen_utf8.h>
2016-01-20 03:07:24 +00:00
2016-09-08 03:48:43 +00:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef RARCH_INTERNAL
#include "frontend/frontend_driver.h"
#endif
2016-06-27 05:52:48 +00:00
#include "file_path_special.h"
2015-11-23 11:03:38 +00:00
#include "verbosity.h"
2018-04-30 18:33:05 +00:00
#ifdef HAVE_QT
#include "ui/ui_companion_driver.h"
#endif
#ifdef RARCH_INTERNAL
#include "config.def.h"
#else
#define DEFAULT_FRONTEND_LOG_LEVEL 1
#endif
/* If this is non-NULL. RARCH_LOG and friends
2015-11-23 14:45:02 +00:00
* will write to this file. */
static FILE *log_file_fp = NULL;
static void* log_file_buf = NULL;
static unsigned verbosity_log_level = DEFAULT_FRONTEND_LOG_LEVEL;
static bool main_verbosity = false;
static bool log_file_initialized = false;
2015-11-23 14:45:02 +00:00
#ifdef HAVE_LIBNX
static Mutex logging_mtx;
#ifdef NXLINK
bool nxlink_connected = false;
#endif /* NXLINK */
#endif /* HAVE_LIBNX */
void verbosity_set_log_level(unsigned level)
{
verbosity_log_level = level;
}
2016-05-31 02:42:04 +00:00
void verbosity_enable(void)
{
main_verbosity = true;
#ifdef RARCH_INTERNAL
2017-02-16 02:09:27 +00:00
if (!log_file_initialized)
2017-02-15 06:40:04 +00:00
frontend_driver_attach_console();
#endif
2016-05-31 02:42:04 +00:00
}
void verbosity_disable(void)
{
main_verbosity = false;
#ifdef RARCH_INTERNAL
2017-02-16 02:09:27 +00:00
if (!log_file_initialized)
2017-02-15 06:40:04 +00:00
frontend_driver_detach_console();
#endif
2016-05-31 02:42:04 +00:00
}
bool verbosity_is_enabled(void)
{
return main_verbosity;
}
2019-03-05 22:34:05 +00:00
bool is_logging_to_file(void)
{
return log_file_initialized;
}
2016-05-31 02:42:04 +00:00
bool *verbosity_get_ptr(void)
2015-11-23 11:03:38 +00:00
{
return &main_verbosity;
}
2015-11-23 14:45:02 +00:00
2016-09-05 23:02:25 +00:00
void *retro_main_log_file(void)
2015-11-23 14:45:02 +00:00
{
return log_file_fp;
2015-11-23 14:45:02 +00:00
}
2019-03-21 16:56:24 +00:00
void retro_main_log_file_init(const char *path, bool append)
2015-11-23 14:45:02 +00:00
{
2017-02-15 11:03:25 +00:00
if (log_file_initialized)
2017-02-15 06:40:04 +00:00
return;
2017-02-15 11:03:25 +00:00
#ifdef HAVE_LIBNX
mutexInit(&logging_mtx);
#endif
log_file_fp = stderr;
2015-11-23 14:45:02 +00:00
if (path == NULL)
return;
2019-03-21 16:56:24 +00:00
log_file_fp = (FILE*)fopen_utf8(path, append ? "ab" : "wb");
if (!log_file_fp)
{
log_file_fp = stderr;
RARCH_ERR("Failed to open system event log file: %s\n", path);
return;
}
2017-02-15 11:03:25 +00:00
log_file_initialized = true;
2018-12-31 20:08:25 +00:00
#if !defined(PS2) /* TODO: PS2 IMPROVEMENT */
/* TODO: this is only useful for a few platforms, find which and add ifdef */
log_file_buf = calloc(1, 0x4000);
setvbuf(log_file_fp, (char*)log_file_buf, _IOFBF, 0x4000);
2018-12-19 19:30:17 +00:00
#endif
2015-11-23 14:45:02 +00:00
}
void retro_main_log_file_deinit(void)
{
if (log_file_fp && log_file_initialized)
2018-11-28 08:56:12 +00:00
{
fclose(log_file_fp);
2018-11-28 08:56:12 +00:00
log_file_fp = NULL;
}
if (log_file_buf)
free(log_file_buf);
log_file_buf = NULL;
2019-03-21 16:56:24 +00:00
log_file_initialized = false;
2015-11-23 14:45:02 +00:00
}
2015-11-29 02:03:39 +00:00
#if !defined(HAVE_LOGGER)
void RARCH_LOG_V(const char *tag, const char *fmt, va_list ap)
{
if (verbosity_log_level <= 1)
{
2015-11-29 02:03:39 +00:00
#if TARGET_OS_IPHONE
#if TARGET_IPHONE_SIMULATOR
vprintf(fmt, ap);
2015-11-29 02:03:39 +00:00
#else
static aslclient asl_client;
static int asl_initialized = 0;
if (!asl_initialized)
{
asl_client = asl_open(
file_path_str(FILE_PATH_PROGRAM_NAME),
"com.apple.console",
ASL_OPT_STDERR | ASL_OPT_NO_DELAY);
asl_initialized = 1;
}
aslmsg msg = asl_new(ASL_TYPE_MSG);
asl_set(msg, ASL_KEY_READ_UID, "-1");
if (tag)
asl_log(asl_client, msg, ASL_LEVEL_NOTICE, "%s", tag);
asl_vlog(asl_client, msg, ASL_LEVEL_NOTICE, fmt, ap);
asl_free(msg);
2015-11-29 02:03:39 +00:00
#endif
#elif defined(_XBOX1)
/* FIXME: Using arbitrary string as fmt argument is unsafe. */
char msg_new[256];
char buffer[256];
2016-06-28 06:44:49 +00:00
msg_new[0] = buffer[0] = '\0';
snprintf(msg_new, sizeof(msg_new), "%s: %s %s",
2019-08-15 10:43:59 +00:00
file_path_str(FILE_PATH_PROGRAM_NAME),
tag ? tag : "",
fmt);
wvsprintf(buffer, msg_new, ap);
OutputDebugStringA(buffer);
#elif defined(ANDROID)
int prio = ANDROID_LOG_INFO;
if (tag)
{
if (string_is_equal(file_path_str(FILE_PATH_LOG_WARN), tag))
prio = ANDROID_LOG_WARN;
else if (string_is_equal(file_path_str(FILE_PATH_LOG_ERROR), tag))
prio = ANDROID_LOG_ERROR;
}
if (log_file_initialized)
{
vfprintf(log_file_fp, fmt, ap);
fflush(log_file_fp);
}
else
__android_log_vprint(prio,
file_path_str(FILE_PATH_PROGRAM_NAME),
fmt,
ap);
2019-08-15 10:43:59 +00:00
#else
FILE *fp = (FILE*)log_file_fp;
#if defined(HAVE_QT) || defined(__WINRT__)
int ret;
char buffer[256];
buffer[0] = '\0';
ret = vsnprintf(buffer, sizeof(buffer), fmt, ap);
/* ensure null termination and line break in error case */
if (ret < 0)
{
int end;
buffer[sizeof(buffer) - 1] = '\0';
end = strlen(buffer) - 1;
if (end >= 0)
buffer[end] = '\n';
else
{
buffer[0] = '\n';
buffer[1] = '\0';
}
}
2018-04-30 18:33:05 +00:00
if (fp)
{
fprintf(fp, "%s %s", tag ? tag : file_path_str(FILE_PATH_LOG_INFO), buffer);
fflush(fp);
}
2018-04-30 18:33:05 +00:00
#if defined(HAVE_QT)
ui_companion_driver_log_msg(buffer);
#endif
#if defined(__WINRT__)
OutputDebugStringA(buffer);
#endif
2018-04-30 18:33:05 +00:00
#else
#if defined(HAVE_LIBNX)
mutexLock(&logging_mtx);
#endif
if (fp)
{
fprintf(fp, "%s ",
tag ? tag : file_path_str(FILE_PATH_LOG_INFO));
vfprintf(fp, fmt, ap);
fflush(fp);
}
#if defined(HAVE_LIBNX)
mutexUnlock(&logging_mtx);
#endif
2018-04-30 18:33:05 +00:00
#endif
2015-11-29 02:03:39 +00:00
#endif
}
2015-11-29 02:03:39 +00:00
}
void RARCH_LOG_BUFFER(uint8_t *data, size_t size)
{
2018-05-01 23:03:25 +00:00
unsigned i, offset;
2018-08-18 14:15:55 +00:00
int padding = size % 16;
uint8_t buf[16] = {0};
if (verbosity_log_level > 1)
return;
2019-04-13 00:14:43 +00:00
RARCH_LOG("== %d-byte buffer ==================\n", (int)size);
2018-05-01 23:03:25 +00:00
2019-04-13 16:49:05 +00:00
for (i = 0, offset = 0; i < size; i++)
{
buf[offset] = data[i];
offset++;
2018-05-01 23:03:25 +00:00
if (offset == 16)
{
offset = 0;
RARCH_LOG("%02x%02x%02x%02x%02x%02x%02x%02x %02x%02x%02x%02x%02x%02x%02x%02x\n",
buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6], buf[7],
buf[8], buf[9], buf[10], buf[11], buf[12], buf[13], buf[14], buf[15]);
}
}
2019-04-13 16:49:05 +00:00
if (padding)
{
2019-04-13 16:49:05 +00:00
for (i = padding; i < 16; i++)
buf[i] = 0xff;
RARCH_LOG("%02x%02x%02x%02x%02x%02x%02x%02x %02x%02x%02x%02x%02x%02x%02x%02x\n",
buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6], buf[7],
buf[8], buf[9], buf[10], buf[11], buf[12], buf[13], buf[14], buf[15]);
}
RARCH_LOG("==================================\n");
}
2015-11-29 02:03:39 +00:00
void RARCH_LOG(const char *fmt, ...)
{
va_list ap;
2019-08-15 10:43:59 +00:00
if (!main_verbosity)
2015-11-29 02:03:39 +00:00
return;
if (verbosity_log_level > 1)
return;
2015-11-29 02:03:39 +00:00
va_start(ap, fmt);
2016-06-28 06:42:50 +00:00
RARCH_LOG_V(file_path_str(FILE_PATH_LOG_INFO), fmt, ap);
2015-11-29 02:03:39 +00:00
va_end(ap);
}
void RARCH_LOG_OUTPUT(const char *msg, ...)
{
va_list ap;
va_start(ap, msg);
2016-06-28 06:42:50 +00:00
RARCH_LOG_OUTPUT_V(file_path_str(FILE_PATH_LOG_INFO), msg, ap);
2015-11-29 02:03:39 +00:00
va_end(ap);
}
void RARCH_WARN(const char *fmt, ...)
{
va_list ap;
2019-08-15 10:43:59 +00:00
if (!main_verbosity)
return;
if (verbosity_log_level > 2)
return;
2015-11-29 02:03:39 +00:00
va_start(ap, fmt);
2016-06-28 06:42:50 +00:00
RARCH_WARN_V(file_path_str(FILE_PATH_LOG_WARN), fmt, ap);
2015-11-29 02:03:39 +00:00
va_end(ap);
}
void RARCH_ERR(const char *fmt, ...)
{
va_list ap;
2019-08-15 10:43:59 +00:00
if (!main_verbosity)
return;
2018-01-17 18:30:01 +00:00
va_start(ap, fmt);
2016-06-28 06:42:50 +00:00
RARCH_ERR_V(file_path_str(FILE_PATH_LOG_ERROR), fmt, ap);
2015-11-29 02:03:39 +00:00
va_end(ap);
}
#endif