ZLMediaKit/c_wrapper/src/common.h

124 lines
3.8 KiB
C
Raw Normal View History

2017-12-13 18:15:22 +08:00
/*
* 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
2017-12-19 10:34:52 +08:00
#define API_CALL __cdecl
2017-12-13 18:15:22 +08:00
#else
#define API_EXPORT
2017-12-19 10:34:52 +08:00
#define API_CALL
2017-12-13 18:15:22 +08:00
#endif
#ifdef __cplusplus
extern "C" {
#endif
/////////////////////////environment init////////////////////////////////
2017-12-19 10:34:52 +08:00
API_EXPORT void API_CALL onAppStart();
API_EXPORT void API_CALL onAppExit();
API_EXPORT void API_CALL setGlobalOptionString(const char *key,const char *val);
2017-12-13 18:15:22 +08:00
/*
* :Http服务器
2018-02-28 10:58:36 +08:00
* :port:htt监听端口800
* :0:,0:
2017-12-13 18:15:22 +08:00
*/
2018-02-28 10:58:36 +08:00
API_EXPORT unsigned short API_CALL initHttpServer(unsigned short port);
2017-12-13 18:15:22 +08:00
/*
* :RTSP服务器
2018-02-28 10:58:36 +08:00
* :port:rtsp监听端口5540
* :0:,0:
2017-12-13 18:15:22 +08:00
*/
2018-02-28 10:58:36 +08:00
API_EXPORT unsigned short API_CALL initRtspServer(unsigned short port);
2017-12-13 18:15:22 +08:00
/*
* :RTMP服务器
2018-02-28 10:58:36 +08:00
* :port:rtmp监听端口19350
* :0:,0:
2017-12-13 18:15:22 +08:00
*/
2018-02-28 10:58:36 +08:00
API_EXPORT unsigned short API_CALL initRtmpServer(unsigned short port);
2017-12-13 18:15:22 +08:00
/////////////////////////日志////////////////////////////////
typedef enum {
//日志级别
LogTrace = 0, LogDebug, LogInfo, LogWarn, LogError, LogFatal,
} LogType;
2017-12-19 10:34:52 +08:00
typedef void(API_CALL *onLogOut)(const char *strLog, int iLogLen);
2017-12-13 18:15:22 +08:00
/*
* :Log输出回调
* :onLogOut
* :
*/
2017-12-19 10:34:52 +08:00
API_EXPORT void API_CALL log_setOnLogOut(onLogOut);
2017-12-13 18:15:22 +08:00
/*
* :
* :level:
* :
*/
2017-12-19 10:34:52 +08:00
API_EXPORT void API_CALL log_setLevel(LogType level);
2017-12-13 18:15:22 +08:00
/*
* :
* :level:file:,functionlinefmt
* :
*/
2017-12-19 10:34:52 +08:00
API_EXPORT void API_CALL log_printf(LogType level, const char* file, const char* function, int line, const char *fmt, ...);
2017-12-13 18:15:22 +08:00
#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_ */