2019-12-18 11:47:49 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2019-12-17 18:45:31 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2019-12-17 18:45:31 +08:00
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Use of this source code is governed by MIT license that can be found in the
|
|
|
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
|
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
2019-12-17 18:45:31 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef MK_COMMON_H
|
|
|
|
|
#define MK_COMMON_H
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2021-01-17 18:31:50 +08:00
|
|
|
|
#include <stddef.h>
|
2019-12-17 18:45:31 +08:00
|
|
|
|
|
2022-05-26 20:30:43 +08:00
|
|
|
|
#if defined(GENERATE_EXPORT)
|
|
|
|
|
#include "mk_export.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-05-25 15:38:32 +08:00
|
|
|
|
#if defined(_WIN32) && defined(_MSC_VER)
|
2022-05-26 20:30:43 +08:00
|
|
|
|
# define API_CALL __cdecl
|
2019-12-17 18:45:31 +08:00
|
|
|
|
#else
|
2022-05-26 20:30:43 +08:00
|
|
|
|
# define API_CALL
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if defined(_WIN32) && defined(_MSC_VER)
|
|
|
|
|
# if !defined(GENERATE_EXPORT)
|
|
|
|
|
# if defined(MediaKitApi_EXPORTS)
|
|
|
|
|
# define API_EXPORT __declspec(dllexport)
|
|
|
|
|
# else
|
|
|
|
|
# define API_EXPORT __declspec(dllimport)
|
|
|
|
|
# endif
|
|
|
|
|
# endif
|
|
|
|
|
#elif !defined(GENERATE_EXPORT)
|
2022-05-25 15:38:32 +08:00
|
|
|
|
# define API_EXPORT
|
2019-12-17 18:45:31 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-08-30 20:43:03 +08:00
|
|
|
|
//输出日志到shell
|
|
|
|
|
#define LOG_CONSOLE (1 << 0)
|
|
|
|
|
//输出日志到文件
|
|
|
|
|
#define LOG_FILE (1 << 1)
|
|
|
|
|
//输出日志到回调函数(mk_events::on_mk_log)
|
|
|
|
|
#define LOG_CALLBACK (1 << 2)
|
|
|
|
|
|
2019-12-17 18:45:31 +08:00
|
|
|
|
typedef struct {
|
|
|
|
|
// 线程数
|
|
|
|
|
int thread_num;
|
2020-04-22 09:51:04 +08:00
|
|
|
|
|
2019-12-17 18:45:31 +08:00
|
|
|
|
// 日志级别,支持0~4
|
|
|
|
|
int log_level;
|
2021-08-30 20:43:03 +08:00
|
|
|
|
//控制日志输出的掩模,请查看LOG_CONSOLE、LOG_FILE、LOG_CALLBACK等宏
|
|
|
|
|
int log_mask;
|
2020-04-22 09:51:04 +08:00
|
|
|
|
//文件日志保存路径,路径可以不存在(内部可以创建文件夹),设置为NULL关闭日志输出至文件
|
|
|
|
|
const char *log_file_path;
|
|
|
|
|
//文件日志保存天数,设置为0关闭日志文件
|
|
|
|
|
int log_file_days;
|
2019-12-17 18:45:31 +08:00
|
|
|
|
|
|
|
|
|
// 配置文件是内容还是路径
|
|
|
|
|
int ini_is_path;
|
2019-12-23 15:31:35 +08:00
|
|
|
|
// 配置文件内容或路径,可以为NULL,如果该文件不存在,那么将导出默认配置至该文件
|
2019-12-17 18:45:31 +08:00
|
|
|
|
const char *ini;
|
|
|
|
|
|
|
|
|
|
// ssl证书是内容还是路径
|
|
|
|
|
int ssl_is_path;
|
|
|
|
|
// ssl证书内容或路径,可以为NULL
|
|
|
|
|
const char *ssl;
|
|
|
|
|
// 证书密码,可以为NULL
|
|
|
|
|
const char *ssl_pwd;
|
2019-12-19 16:45:32 +08:00
|
|
|
|
} mk_config;
|
2019-12-17 18:45:31 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 初始化环境,调用该库前需要先调用此函数
|
|
|
|
|
* @param cfg 库运行相关参数
|
|
|
|
|
*/
|
2019-12-19 16:45:32 +08:00
|
|
|
|
API_EXPORT void API_CALL mk_env_init(const mk_config *cfg);
|
2019-12-17 18:45:31 +08:00
|
|
|
|
|
2019-12-23 14:20:49 +08:00
|
|
|
|
/**
|
|
|
|
|
* 关闭所有服务器,请在main函数退出时调用
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT void API_CALL mk_stop_all_server();
|
|
|
|
|
|
2019-12-20 11:04:18 +08:00
|
|
|
|
/**
|
|
|
|
|
* 基础类型参数版本的mk_env_init,为了方便其他语言调用
|
2019-12-23 15:31:35 +08:00
|
|
|
|
* @param thread_num 线程数
|
|
|
|
|
* @param log_level 日志级别,支持0~4
|
2021-08-30 20:43:03 +08:00
|
|
|
|
* @param log_mask 日志输出方式掩模,请查看LOG_CONSOLE、LOG_FILE、LOG_CALLBACK等宏
|
2020-04-22 09:51:04 +08:00
|
|
|
|
* @param log_file_path 文件日志保存路径,路径可以不存在(内部可以创建文件夹),设置为NULL关闭日志输出至文件
|
|
|
|
|
* @param log_file_days 文件日志保存天数,设置为0关闭日志文件
|
2019-12-23 15:31:35 +08:00
|
|
|
|
* @param ini_is_path 配置文件是内容还是路径
|
|
|
|
|
* @param ini 配置文件内容或路径,可以为NULL,如果该文件不存在,那么将导出默认配置至该文件
|
|
|
|
|
* @param ssl_is_path ssl证书是内容还是路径
|
|
|
|
|
* @param ssl ssl证书内容或路径,可以为NULL
|
|
|
|
|
* @param ssl_pwd 证书密码,可以为NULL
|
2019-12-20 11:04:18 +08:00
|
|
|
|
*/
|
2020-04-22 09:51:04 +08:00
|
|
|
|
API_EXPORT void API_CALL mk_env_init1(int thread_num,
|
|
|
|
|
int log_level,
|
2021-08-30 20:43:03 +08:00
|
|
|
|
int log_mask,
|
2020-04-22 09:51:04 +08:00
|
|
|
|
const char *log_file_path,
|
|
|
|
|
int log_file_days,
|
|
|
|
|
int ini_is_path,
|
|
|
|
|
const char *ini,
|
|
|
|
|
int ssl_is_path,
|
|
|
|
|
const char *ssl,
|
|
|
|
|
const char *ssl_pwd);
|
2019-12-20 11:04:18 +08:00
|
|
|
|
|
2021-09-28 09:52:29 +08:00
|
|
|
|
/**
|
|
|
|
|
* 设置日志文件
|
|
|
|
|
* @param file_max_size 单个切片文件大小(MB)
|
|
|
|
|
* @param file_max_count 切片文件个数
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT void API_CALL mk_set_log(int file_max_size, int file_max_count);
|
|
|
|
|
|
2019-12-17 18:45:31 +08:00
|
|
|
|
/**
|
|
|
|
|
* 设置配置项
|
2023-02-11 11:39:26 +08:00
|
|
|
|
* @deprecated 请使用mk_ini_set_option替代
|
2019-12-17 18:45:31 +08:00
|
|
|
|
* @param key 配置项名
|
|
|
|
|
* @param val 配置项值
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT void API_CALL mk_set_option(const char *key, const char *val);
|
|
|
|
|
|
2020-06-24 09:50:35 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取配置项的值
|
2023-02-11 11:39:26 +08:00
|
|
|
|
* @deprecated 请使用mk_ini_get_option替代
|
2020-06-24 09:50:35 +08:00
|
|
|
|
* @param key 配置项名
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT const char * API_CALL mk_get_option(const char *key);
|
|
|
|
|
|
|
|
|
|
|
2019-12-17 18:45:31 +08:00
|
|
|
|
/**
|
|
|
|
|
* 创建http[s]服务器
|
|
|
|
|
* @param port htt监听端口,推荐80,传入0则随机分配
|
|
|
|
|
* @param ssl 是否为ssl类型服务器
|
|
|
|
|
* @return 0:失败,非0:端口号
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT uint16_t API_CALL mk_http_server_start(uint16_t port, int ssl);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 创建rtsp[s]服务器
|
|
|
|
|
* @param port rtsp监听端口,推荐554,传入0则随机分配
|
|
|
|
|
* @param ssl 是否为ssl类型服务器
|
|
|
|
|
* @return 0:失败,非0:端口号
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT uint16_t API_CALL mk_rtsp_server_start(uint16_t port, int ssl);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 创建rtmp[s]服务器
|
|
|
|
|
* @param port rtmp监听端口,推荐1935,传入0则随机分配
|
|
|
|
|
* @param ssl 是否为ssl类型服务器
|
|
|
|
|
* @return 0:失败,非0:端口号
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT uint16_t API_CALL mk_rtmp_server_start(uint16_t port, int ssl);
|
|
|
|
|
|
2019-12-18 14:53:42 +08:00
|
|
|
|
/**
|
|
|
|
|
* 创建rtp服务器
|
|
|
|
|
* @param port rtp监听端口(包括udp/tcp)
|
|
|
|
|
* @return 0:失败,非0:端口号
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT uint16_t API_CALL mk_rtp_server_start(uint16_t port);
|
2019-12-24 16:09:09 +08:00
|
|
|
|
|
2022-04-16 15:57:02 +08:00
|
|
|
|
/**
|
|
|
|
|
* 创建rtc服务器
|
2022-09-22 21:18:34 +08:00
|
|
|
|
* @param port rtc监听端口
|
2022-04-16 15:57:02 +08:00
|
|
|
|
* @return 0:失败,非0:端口号
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT uint16_t API_CALL mk_rtc_server_start(uint16_t port);
|
|
|
|
|
|
2022-10-06 12:33:48 +08:00
|
|
|
|
//获取webrtc answer sdp回调函数
|
|
|
|
|
typedef void(API_CALL *on_mk_webrtc_get_answer_sdp)(void *user_data, const char *answer, const char *err);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* webrtc交换sdp,根据offer sdp生成answer sdp
|
|
|
|
|
* @param user_data 回调用户指针
|
|
|
|
|
* @param cb 回调函数
|
|
|
|
|
* @param type webrtc插件类型,支持echo,play,push
|
|
|
|
|
* @param offer webrtc offer sdp
|
|
|
|
|
* @param url rtc url, 例如 rtc://__defaultVhost/app/stream?key1=val1&key2=val2
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT void API_CALL mk_webrtc_get_answer_sdp(void *user_data, on_mk_webrtc_get_answer_sdp cb, const char *type,
|
|
|
|
|
const char *offer, const char *url);
|
|
|
|
|
|
2022-09-22 21:18:34 +08:00
|
|
|
|
/**
|
|
|
|
|
* 创建srt服务器
|
|
|
|
|
* @param port srt监听端口
|
|
|
|
|
* @return 0:失败,非0:端口号
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT uint16_t API_CALL mk_srt_server_start(uint16_t port);
|
|
|
|
|
|
2022-04-16 15:57:02 +08:00
|
|
|
|
|
2019-12-24 16:09:09 +08:00
|
|
|
|
/**
|
|
|
|
|
* 创建shell服务器
|
|
|
|
|
* @param port shell监听端口
|
|
|
|
|
* @return 0:失败,非0:端口号
|
|
|
|
|
*/
|
|
|
|
|
API_EXPORT uint16_t API_CALL mk_shell_server_start(uint16_t port);
|
2019-12-18 14:53:42 +08:00
|
|
|
|
|
2019-12-17 18:45:31 +08:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* MK_COMMON_H */
|