common.h 3.84 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
/*
 * MIT License
 *
 * Copyright (c) 2016 xiongziliang <771730766@qq.com>
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#ifndef SRC_COMMON_H_
#define SRC_COMMON_H_

#include <stdint.h>

#if defined(_WIN32)
#if defined(MediaKitWrapper_EXPORTS)
		#define API_EXPORT __declspec(dllexport)
	#else
		#define API_EXPORT __declspec(dllimport)
	#endif

39
	#define API_CALL __cdecl
40 41
#else
#define API_EXPORT
42
#define API_CALL
43 44 45 46 47 48 49 50 51 52
#endif


#ifdef __cplusplus
extern "C" {
#endif



/////////////////////////environment init////////////////////////////////
53 54 55
API_EXPORT void API_CALL onAppStart();
API_EXPORT void API_CALL onAppExit();
API_EXPORT void API_CALL setGlobalOptionString(const char *key,const char *val);
56 57 58

/*
 * 描述:创建Http服务器
xiongziliang committed
59 60
 * 参数:port:htt监听端口,推荐80,传入0则随机分配
 * 返回值:0:失败,非0:端口号
61
 */
xiongziliang committed
62
API_EXPORT unsigned short API_CALL initHttpServer(unsigned short port);
63 64 65

/*
 * 描述:创建RTSP服务器
xiongziliang committed
66 67
 * 参数:port:rtsp监听端口,推荐554,传入0则随机分配
 * 返回值:0:失败,非0:端口号
68
 */
xiongziliang committed
69
API_EXPORT unsigned short API_CALL initRtspServer(unsigned short port);
70 71 72

/*
 * 描述:创建RTMP服务器
xiongziliang committed
73 74
 * 参数:port:rtmp监听端口,推荐1935,传入0则随机分配
 * 返回值:0:失败,非0:端口号
75
 */
xiongziliang committed
76
API_EXPORT unsigned short API_CALL initRtmpServer(unsigned short port);
77 78 79 80 81 82 83 84 85


/////////////////////////日志////////////////////////////////

typedef enum {
            //日志级别
            LogTrace = 0, LogDebug, LogInfo, LogWarn, LogError, LogFatal,
} LogType;

86
typedef void(API_CALL *onLogOut)(const char *strLog, int iLogLen);
87 88 89 90 91 92

/*
 * 描述:设置Log输出回调
 * 参数:onLogOut:回调函数
 * 返回值:无
 */
93
API_EXPORT void API_CALL log_setOnLogOut(onLogOut);
94 95 96 97 98 99

/*
 * 描述:设在日志显示级别
 * 参数:level:日志级别
 * 返回值:无
 */
100
API_EXPORT void API_CALL log_setLevel(LogType level);
101 102 103 104 105 106

/*
 * 描述:打印日志
 * 参数:level:日志级别;file:文件名称,function:函数名称,line:所在行数,fmt:格式化字符串
 * 返回值:无
 */
107
API_EXPORT void API_CALL log_printf(LogType level, const char* file, const char* function, int line, const char *fmt, ...);
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123


#define log_trace(fmt,...) log_printf(LogTrace,__FILE__,__FUNCTION__,__LINE__,fmt,__VA_ARGS__)
#define log_debug(fmt,...) log_printf(LogDebug,__FILE__,__FUNCTION__,__LINE__,fmt,__VA_ARGS__)
#define log_info(fmt,...) log_printf(LogInfo,__FILE__,__FUNCTION__,__LINE__,fmt,__VA_ARGS__)
#define log_warn(fmt,...) log_printf(LogWarn,__FILE__,__FUNCTION__,__LINE__,fmt,__VA_ARGS__)
#define log_error(fmt,...) log_printf(LogError,__FILE__,__FUNCTION__,__LINE__,fmt,__VA_ARGS__)
#define log_fatal(fmt,...) log_printf(LogFatal,__FILE__,__FUNCTION__,__LINE__,fmt,__VA_ARGS__)


#ifdef __cplusplus
}
#endif


#endif /* SRC_COMMON_H_ */