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

203 lines
4.4 KiB
C
Raw Normal View History

2015-11-23 11:03:38 +00:00
/* RetroArch - A frontend for libretro.
2016-01-10 03:06:50 +00:00
* Copyright (C) 2011-2016 - Daniel De Matteis
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
#ifdef ANDROID
#include <android/log.h>
#endif
2015-11-29 02:08:27 +00:00
2016-01-20 03:07:24 +00:00
#include <string/stdstring.h>
2016-06-27 05:52:48 +00:00
#include "file_path_special.h"
2015-11-23 11:03:38 +00:00
#include "verbosity.h"
2015-11-23 14:45:02 +00:00
/* If this is non-NULL. RARCH_LOG and friends
* will write to this file. */
2016-06-28 06:44:49 +00:00
static FILE *log_file = NULL;
static bool main_verbosity = false;
2015-11-23 14:45:02 +00:00
2016-05-31 02:42:04 +00:00
void verbosity_enable(void)
{
main_verbosity = true;
}
void verbosity_disable(void)
{
main_verbosity = false;
}
bool verbosity_is_enabled(void)
{
return main_verbosity;
}
bool *verbosity_get_ptr(void)
2015-11-23 11:03:38 +00:00
{
return &main_verbosity;
}
2015-11-23 14:45:02 +00:00
FILE *retro_main_log_file(void)
{
return log_file;
}
void retro_main_log_file_init(const char *path)
{
log_file = stderr;
if (path == NULL)
return;
log_file = fopen(path, "wb");
}
void retro_main_log_file_deinit(void)
{
if (log_file && log_file != stderr)
fclose(log_file);
log_file = NULL;
}
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 TARGET_OS_IPHONE
static int asl_inited = 0;
#if !TARGET_IPHONE_SIMULATOR
static aslclient asl_client;
#endif
2016-07-01 14:14:45 +00:00
#else
FILE *fp = NULL;
#endif
2016-05-31 02:42:04 +00:00
if (!verbosity_is_enabled())
2015-11-29 02:03:39 +00:00
return;
#if TARGET_OS_IPHONE
#if TARGET_IPHONE_SIMULATOR
vprintf(fmt, ap);
#else
if (!asl_inited)
{
2016-06-27 05:55:32 +00:00
asl_client = asl_open(file_path_str(FILE_PATH_PROGRAM_NAME), "com.apple.console", ASL_OPT_STDERR | ASL_OPT_NO_DELAY);
2015-11-29 02:03:39 +00:00
asl_inited = 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);
#endif
#elif defined(_XBOX1)
/* FIXME: Using arbitrary string as fmt argument is unsafe. */
char msg_new[1024], buffer[1024];
snprintf(msg_new, sizeof(msg_new), "%s: %s %s",
2016-06-27 05:52:48 +00:00
file_path_str(FILE_PATH_PROGRAM_NAME),
2015-11-29 02:03:39 +00:00
tag ? tag : "",
fmt);
wvsprintf(buffer, msg_new, ap);
OutputDebugStringA(buffer);
#elif defined(ANDROID)
int prio = ANDROID_LOG_INFO;
if (tag)
{
2016-06-28 06:42:50 +00:00
if (string_is_equal(file_path_str(FILE_PATH_LOG_WARN), tag))
2015-11-29 02:03:39 +00:00
prio = ANDROID_LOG_WARN;
2016-06-28 06:42:50 +00:00
else if (string_is_equal(file_path_str(FILE_PATH_LOG_ERROR), tag))
2015-11-29 02:03:39 +00:00
prio = ANDROID_LOG_ERROR;
}
2016-06-27 05:52:48 +00:00
__android_log_vprint(prio,
file_path_str(FILE_PATH_PROGRAM_NAME),
fmt,
ap);
2015-11-29 02:03:39 +00:00
#else
2016-06-28 06:44:49 +00:00
#ifdef HAVE_FILE_LOGGER
2016-06-30 15:43:36 +00:00
fp = retro_main_log_file();
2016-06-28 06:44:49 +00:00
#else
2016-06-30 15:43:36 +00:00
fp = stderr;
2016-06-28 06:44:49 +00:00
#endif
fprintf(fp, "%s %s :: ",
2016-06-27 05:52:48 +00:00
file_path_str(FILE_PATH_PROGRAM_NAME),
2016-06-28 06:42:50 +00:00
tag ? tag : file_path_str(FILE_PATH_LOG_INFO));
2016-06-28 06:44:49 +00:00
vfprintf(fp, fmt, ap);
fflush(fp);
2015-11-29 02:03:39 +00:00
#endif
}
void RARCH_LOG(const char *fmt, ...)
{
va_list ap;
2016-05-31 02:42:04 +00:00
if (!verbosity_is_enabled())
2015-11-29 02:03:39 +00:00
return;
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_V(const char *tag, const char *msg, va_list ap)
{
RARCH_LOG_V(tag, msg, 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_V(const char *tag, const char *fmt, va_list ap)
{
RARCH_LOG_V(tag, fmt, ap);
}
void RARCH_WARN(const char *fmt, ...)
{
va_list ap;
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_V(const char *tag, const char *fmt, va_list ap)
{
RARCH_LOG_V(tag, fmt, ap);
}
void RARCH_ERR(const char *fmt, ...)
{
va_list ap;
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
2015-11-29 02:08:27 +00:00