Small native code reorganization

This commit is contained in:
topjohnwu
2020-03-09 01:50:30 -07:00
parent d6fdbfe9b7
commit a0998009c1
85 changed files with 216 additions and 317 deletions

View File

@ -0,0 +1,41 @@
#pragma once
#include <errno.h>
#include <stdarg.h>
#include <string.h>
__BEGIN_DECLS
typedef enum {
L_DEBUG,
L_INFO,
L_WARN,
L_ERR
} log_type;
struct log_callback {
int (*d)(const char* fmt, va_list ap);
int (*i)(const char* fmt, va_list ap);
int (*w)(const char* fmt, va_list ap);
int (*e)(const char* fmt, va_list ap);
void (*ex)(int code);
};
extern struct log_callback log_cb;
#define LOGD(...) log_handler(L_DEBUG, __VA_ARGS__)
#define LOGI(...) log_handler(L_INFO, __VA_ARGS__)
#define LOGW(...) log_handler(L_WARN, __VA_ARGS__)
#define LOGE(...) log_handler(L_ERR, __VA_ARGS__)
#define PLOGE(fmt, args...) LOGE(fmt " failed with %d: %s\n", ##args, errno, strerror(errno))
int nop_log(const char *fmt, va_list ap);
void nop_ex(int i);
void no_logging();
void android_logging();
void cmdline_logging();
int log_handler(log_type t, const char *fmt, ...);
__END_DECLS