1 /* 2 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved. 3 * 4 * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit). 5 * 6 * Use of this source code is governed by MIT license that can be found in the 7 * LICENSE file in the root of the source tree. All contributing project authors 8 * may be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 #ifndef MK_UTIL_H 12 #define MK_UTIL_H 13 14 #include <stdlib.h> 15 #include "mk_common.h" 16 17 #ifdef __cplusplus 18 extern "C" { 19 #endif 20 21 /** 22 * 获取本程序可执行文件路径 23 * @return 文件路径,使用完后需要自己free 24 */ 25 API_EXPORT char* API_CALL mk_util_get_exe_path(); 26 27 /** 28 * 获取本程序可执行文件相同目录下文件的绝对路径 29 * @param relative_path 同目录下文件的路径相对,可以为null 30 * @return 文件路径,使用完后需要自己free 31 */ 32 API_EXPORT char* API_CALL mk_util_get_exe_dir(const char *relative_path); 33 34 /** 35 * 获取unix标准的系统时间戳 36 * @return 当前系统时间戳 37 */ 38 API_EXPORT uint64_t API_CALL mk_util_get_current_millisecond(); 39 40 /** 41 * 获取时间字符串 42 * @param fmt 时间格式,譬如%Y-%m-%d %H:%M:%S 43 * @return 时间字符串,使用完后需要自己free 44 */ 45 API_EXPORT char* API_CALL mk_util_get_current_time_string(const char *fmt); 46 47 /** 48 * 打印二进制为字符串 49 * @param buf 二进制数据 50 * @param len 数据长度 51 * @return 可打印的调试信息,使用完后需要自己free 52 */ 53 API_EXPORT char* API_CALL mk_util_hex_dump(const void *buf, int len); 54 ///////////////////////////////////////////日志///////////////////////////////////////////// 55 56 /** 57 * 打印日志 58 * @param level 日志级别,支持0~4 59 * @param file __FILE__ 60 * @param function __FUNCTION__ 61 * @param line __LINE__ 62 * @param fmt printf类型的格式控制字符串 63 * @param ... 不定长参数 64 */ 65 API_EXPORT void API_CALL mk_log_printf(int level, const char *file, const char *function, int line, const char *fmt, ...); 66 67 // 以下宏可以替换printf使用 68 #define log_printf(lev, ...) mk_log_printf(lev, __FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__) 69 #define log_trace(...) log_printf(0, ##__VA_ARGS__) 70 #define log_debug(...) log_printf(1, ##__VA_ARGS__) 71 #define log_info(...) log_printf(2, ##__VA_ARGS__) 72 #define log_warn(...) log_printf(3, ##__VA_ARGS__) 73 #define log_error(...) log_printf(4, ##__VA_ARGS__) 74 75 #ifdef __cplusplus 76 } 77 #endif 78 #endif //MK_UTIL_H 79