2012-07-28 15:32:30 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2012-07-28 15:32:30 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RARCH_LOGGER_H
|
|
|
|
#define __RARCH_LOGGER_H
|
|
|
|
|
2015-06-27 14:14:54 +00:00
|
|
|
#ifdef _XBOX1
|
|
|
|
#include <xtl.h>
|
|
|
|
#endif
|
2013-12-09 09:32:12 +00:00
|
|
|
#include <stdarg.h>
|
2014-09-12 02:22:39 +00:00
|
|
|
#include <stdio.h>
|
2013-12-09 09:32:12 +00:00
|
|
|
|
2015-06-27 14:14:54 +00:00
|
|
|
#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
|
|
|
|
|
|
|
|
#include <retro_inline.h>
|
2015-06-27 18:39:23 +00:00
|
|
|
#include <boolean.h>
|
2015-06-27 14:14:54 +00:00
|
|
|
#include <compat/posix_string.h>
|
|
|
|
#include <compat/strl.h>
|
|
|
|
|
2015-06-12 15:31:28 +00:00
|
|
|
#if defined(HAVE_FILE_LOGGER) && defined(RARCH_INTERNAL) && !defined(IS_JOYCONFIG)
|
2015-06-29 22:38:10 +00:00
|
|
|
|
2015-06-12 16:36:07 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
#endif
|
2015-06-29 22:38:10 +00:00
|
|
|
|
2015-06-12 15:31:28 +00:00
|
|
|
FILE *rarch_main_log_file(void);
|
2015-06-29 22:38:10 +00:00
|
|
|
|
2015-03-21 05:02:00 +00:00
|
|
|
#define LOG_FILE (rarch_main_log_file())
|
2015-06-29 22:38:10 +00:00
|
|
|
|
2012-11-27 21:57:40 +00:00
|
|
|
#else
|
2013-11-06 13:21:12 +00:00
|
|
|
#define LOG_FILE (stderr)
|
2012-11-27 21:57:40 +00:00
|
|
|
#endif
|
2012-11-26 01:46:40 +00:00
|
|
|
|
2015-01-11 15:16:26 +00:00
|
|
|
#if defined(IS_SALAMANDER)
|
|
|
|
#define PROGRAM_NAME "RetroArch Salamander"
|
|
|
|
#elif defined(RARCH_INTERNAL)
|
|
|
|
#define PROGRAM_NAME "RetroArch"
|
2015-06-29 21:21:33 +00:00
|
|
|
#elif defined(MARCH_INTERNAL)
|
|
|
|
#define PROGRAM_NAME "MicroArch"
|
2015-01-11 15:16:26 +00:00
|
|
|
#else
|
|
|
|
#define PROGRAM_NAME "N/A"
|
|
|
|
#endif
|
|
|
|
|
2015-07-02 13:16:23 +00:00
|
|
|
#if defined(RARCH_INTERNAL) && !defined(ANDROID)
|
2015-06-28 00:00:44 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2015-06-27 18:35:39 +00:00
|
|
|
bool rarch_main_verbosity(void);
|
2015-06-28 00:00:44 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-03-21 05:02:00 +00:00
|
|
|
#define RARCH_LOG_VERBOSE (rarch_main_verbosity())
|
2015-01-11 15:16:26 +00:00
|
|
|
#else
|
|
|
|
#define RARCH_LOG_VERBOSE (true)
|
|
|
|
#endif
|
|
|
|
|
2015-08-23 23:32:35 +00:00
|
|
|
#if TARGET_OS_IPHONE && defined(RARCH_INTERNAL) && !TARGET_IPHONE_SIMULATOR
|
|
|
|
static aslclient asl_client;
|
|
|
|
static int asl_inited = 0;
|
|
|
|
#endif
|
|
|
|
|
2015-08-29 14:48:53 +00:00
|
|
|
#if defined(HAVE_LOGGER) && defined(RARCH_INTERNAL)
|
|
|
|
|
|
|
|
#define BUFSIZE (64 * 1024)
|
|
|
|
#define TCPDUMP_STACKSIZE (16 * 1024)
|
|
|
|
#define TCPDUMP_PRIO (2048)
|
|
|
|
|
|
|
|
void logger_init (void);
|
|
|
|
void logger_shutdown (void);
|
|
|
|
void logger_send (const char *__format,...);
|
|
|
|
void logger_send_v(const char *__format, va_list args);
|
|
|
|
|
|
|
|
#ifdef IS_SALAMANDER
|
|
|
|
|
|
|
|
#define RARCH_LOG(...) do { \
|
|
|
|
logger_send("RetroArch Salamander: " __VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_V(tag, fmt, vp) do { \
|
|
|
|
logger_send("RetroArch Salamander: " tag); \
|
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT(...) do { \
|
|
|
|
logger_send("RetroArch Salamander [OUTPUT] :: " __VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT_V(tag, fmt, vp) do { \
|
|
|
|
logger_send("RetroArch Salamander [OUTPUT] :: " tag); \
|
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_ERR(...) do { \
|
|
|
|
logger_send("RetroArch Salamander [ERROR] :: " __VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define RARCH_ERR_V(tag, fmt, vp) do { \
|
|
|
|
logger_send("RetroArch Salamander [ERROR] :: " tag); \
|
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_WARN(...) do { \
|
|
|
|
logger_send("RetroArch Salamander [WARN] :: " __VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define RARCH_WARN_V(tag, fmt, vp) do { \
|
|
|
|
logger_send("RetroArch Salamander [WARN] :: " tag); \
|
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define RARCH_LOG(...) do { \
|
|
|
|
logger_send("RetroArch: " __VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_V(tag, fmt, vp) do { \
|
|
|
|
logger_send("RetroArch: " tag); \
|
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_ERR(...) do { \
|
|
|
|
logger_send("RetroArch [ERROR] :: " __VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define RARCH_ERR_V(tag, fmt, vp) do { \
|
|
|
|
logger_send("RetroArch [ERROR] :: " tag); \
|
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_WARN(...) do { \
|
|
|
|
logger_send("RetroArch [WARN] :: " __VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define RARCH_WARN_V(tag, fmt, vp) do { \
|
|
|
|
logger_send("RetroArch [WARN] :: " tag); \
|
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT(...) do { \
|
|
|
|
logger_send("RetroArch [OUTPUT] :: " __VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT_V(tag, fmt, vp) do { \
|
|
|
|
logger_send("RetroArch [OUTPUT] :: " tag); \
|
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-06-29 14:54:43 +00:00
|
|
|
#else
|
2015-06-27 14:14:54 +00:00
|
|
|
static INLINE void RARCH_LOG_V(const char *tag, const char *fmt, va_list ap)
|
|
|
|
{
|
2015-06-27 18:32:45 +00:00
|
|
|
if (!RARCH_LOG_VERBOSE)
|
|
|
|
return;
|
2015-06-27 18:20:15 +00:00
|
|
|
#if TARGET_OS_IPHONE && defined(RARCH_INTERNAL)
|
|
|
|
#if TARGET_IPHONE_SIMULATOR
|
|
|
|
vprintf(fmt, ap);
|
|
|
|
#else
|
2015-08-23 23:35:52 +00:00
|
|
|
if (!asl_inited)
|
2015-08-23 23:32:35 +00:00
|
|
|
{
|
|
|
|
asl_client = asl_open("RetroArch", "com.apple.console", ASL_OPT_STDERR | ASL_OPT_NO_DELAY);
|
2015-08-23 23:35:52 +00:00
|
|
|
asl_inited = 1;
|
2015-08-23 23:32:35 +00:00
|
|
|
}
|
2015-06-27 18:20:15 +00:00
|
|
|
aslmsg msg = asl_new(ASL_TYPE_MSG);
|
|
|
|
asl_set(msg, ASL_KEY_READ_UID, "-1");
|
|
|
|
if (tag)
|
2015-08-23 23:35:52 +00:00
|
|
|
asl_log(asl_client, msg, ASL_LEVEL_NOTICE, "%s", tag);
|
2015-08-23 23:32:35 +00:00
|
|
|
asl_vlog(asl_client, msg, ASL_LEVEL_NOTICE, fmt, ap);
|
2015-06-27 18:20:15 +00:00
|
|
|
asl_free(msg);
|
|
|
|
#endif
|
|
|
|
#elif defined(_XBOX1)
|
|
|
|
/* FIXME: Using arbitrary string as fmt argument is unsafe. */
|
2015-06-27 14:14:54 +00:00
|
|
|
char msg_new[1024], buffer[1024];
|
2015-06-27 18:25:56 +00:00
|
|
|
snprintf(msg_new, sizeof(msg_new), "%s: %s %s",
|
|
|
|
PROGRAM_NAME,
|
|
|
|
tag ? tag : "",
|
|
|
|
fmt);
|
2015-06-27 14:14:54 +00:00
|
|
|
wvsprintf(buffer, msg_new, ap);
|
|
|
|
OutputDebugStringA(buffer);
|
2015-06-29 14:54:43 +00:00
|
|
|
#elif defined(ANDROID) && defined(HAVE_LOGGER) && defined(RARCH_INTERNAL)
|
|
|
|
int prio = ANDROID_LOG_INFO;
|
|
|
|
if (tag)
|
|
|
|
{
|
|
|
|
if (!strcmp("[WARN]", tag))
|
|
|
|
prio = ANDROID_LOG_WARN;
|
|
|
|
else if (!strcmp("[ERROR]", tag))
|
|
|
|
prio = ANDROID_LOG_ERROR;
|
|
|
|
}
|
|
|
|
__android_log_vprint(prio, PROGRAM_NAME, fmt, ap);
|
|
|
|
#else
|
|
|
|
fprintf(LOG_FILE, "%s %s :: ", PROGRAM_NAME, tag ? tag : "[INFO]");
|
|
|
|
vfprintf(LOG_FILE, fmt, ap);
|
2015-06-27 18:20:15 +00:00
|
|
|
#endif
|
2015-06-27 14:14:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static INLINE void RARCH_LOG(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
2015-06-27 18:32:45 +00:00
|
|
|
|
|
|
|
if (!RARCH_LOG_VERBOSE)
|
|
|
|
return;
|
|
|
|
|
2015-06-27 14:14:54 +00:00
|
|
|
va_start(ap, fmt);
|
2015-06-29 14:54:43 +00:00
|
|
|
RARCH_LOG_V("[INFO]", fmt, ap);
|
2015-06-27 14:14:54 +00:00
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static INLINE void RARCH_LOG_OUTPUT_V(const char *tag,
|
|
|
|
const char *msg, va_list ap)
|
|
|
|
{
|
|
|
|
RARCH_LOG_V(tag, msg, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static INLINE void RARCH_LOG_OUTPUT(const char *msg, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, msg);
|
2015-06-29 14:54:43 +00:00
|
|
|
RARCH_LOG_OUTPUT_V("[INFO]", msg, ap);
|
2015-06-27 14:14:54 +00:00
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static INLINE void RARCH_WARN_V(const char *tag, const char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
RARCH_LOG_V(tag, fmt, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static INLINE void RARCH_WARN(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
2015-06-27 18:20:15 +00:00
|
|
|
RARCH_WARN_V("[WARN]", fmt, ap);
|
2015-06-27 14:14:54 +00:00
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static INLINE void RARCH_ERR_V(const char *tag, const char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
RARCH_LOG_V(tag, fmt, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static INLINE void RARCH_ERR(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
2015-06-27 18:31:06 +00:00
|
|
|
RARCH_ERR_V("[ERROR]", fmt, ap);
|
2015-06-27 14:14:54 +00:00
|
|
|
va_end(ap);
|
|
|
|
}
|
2012-07-28 15:32:30 +00:00
|
|
|
#endif
|
2015-01-11 15:16:26 +00:00
|
|
|
|
2013-12-09 09:32:12 +00:00
|
|
|
#endif
|
2013-10-14 19:08:41 +00:00
|
|
|
|