Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
843e3423
Commit
843e3423
authored
Mar 12, 2023
by
xia-chu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增实例上报功能: #2294
parent
4617b6fa
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
151 行增加
和
2 行删除
+151
-2
3rdpart/ZLToolKit
+1
-1
CMakeLists.txt
+5
-1
src/Http/HttpRequester.cpp
+145
-0
没有找到文件。
ZLToolKit
@
aea48a14
Subproject commit
43690d713c156007da43bc0210f81293d0ebd460
Subproject commit
aea48a14f9619d292789b6ba66d2922e1ed36e71
CMakeLists.txt
查看文件 @
843e3423
...
...
@@ -54,7 +54,7 @@ option(ENABLE_SCTP "Enable SCTP" ON)
option
(
ENABLE_WEBRTC
"Enable WebRTC"
ON
)
option
(
ENABLE_X264
"Enable x264"
OFF
)
option
(
ENABLE_WEPOLL
"Enable wepoll"
ON
)
option
(
DISABLE_REPORT
"Disable report to report.zlmediakit.com"
off
)
option
(
USE_SOLUTION_FOLDERS
"Enable solution dir supported"
ON
)
##############################################################################
...
...
@@ -203,6 +203,10 @@ endif()
update_cached_list
(
MK_LINK_LIBRARIES
""
)
update_cached_list
(
MK_COMPILE_DEFINITIONS ENABLE_VERSION
)
if
(
DISABLE_REPORT
)
update_cached_list
(
MK_COMPILE_DEFINITIONS DISABLE_REPORT
)
endif
()
if
(
CMAKE_SYSTEM_NAME MATCHES
"Linux"
)
include
(
CheckCXXSourceCompiles
)
file
(
READ
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake/checks/atomic_check.cpp atomic_check_cpp
)
...
...
src/Http/HttpRequester.cpp
查看文件 @
843e3423
...
...
@@ -9,6 +9,8 @@
*/
#include "HttpRequester.h"
#include "Util/onceToken.h"
#include "Util/NoticeCenter.h"
using
namespace
std
;
using
namespace
toolkit
;
...
...
@@ -47,4 +49,147 @@ void HttpRequester::setOnResult(const HttpRequesterResult &onResult) {
_on_result
=
onResult
;
}
////////////////////////////////////////////////////////////////////////
#if !defined(DISABLE_REPORT)
static
constexpr
auto
s_interval_second
=
60
*
5
;
static
constexpr
auto
s_report_url
=
"http://report.zlmediakit.com:8888/index/api/report"
;
extern
const
char
kServerName
[];
static
std
::
string
httpBody
()
{
HttpArgs
args
;
auto
&
os
=
args
[
"os"
];
#if defined(_WIN32)
os
=
"windows"
;
#elif defined(__ANDROID__)
os
=
"android"
;
#elif defined(__linux__)
os
=
"linux"
;
#elif defined(OS_IPHONE)
os
=
"ios"
;
#elif defined(__MACH__)
os
=
"macos"
;
#else
os
=
"unknow"
;
#endif
auto
&
arch
=
args
[
"arch"
];
#if defined(__i386__)
arch
=
"x86"
;
#elif defined(__x86_64__) || defined(__amd64__)
arch
=
"x86_64"
;
#elif defined(__arm__)
arch
=
"arm"
;
#elif defined(__arm64__)
arch
=
"arm64"
;
#elif defined(__loognarch__)
arch
=
"loognarch"
;
#elif defined(__riscv)
arch
=
"riscv"
;
#elif defined(__mipsl__)
arch
=
"mipsl"
;
#else
arch
=
"unknow"
;
#endif
auto
&
compiler
=
args
[
"compiler"
];
#if defined(__clang__)
compiler
=
"clang"
;
#elif defined(_MSC_VER)
compiler
=
"msvc"
;
#elif defined(__MINGW32__)
compiler
=
"mingw"
;
#elif defined(__CYGWIN__)
compiler
=
"cygwin"
;
#elif defined(__GNUC__)
compiler
=
"gcc"
;
#elif defined(__ICC__)
compiler
=
"icc"
;
#else
compiler
=
"unknow"
;
#endif
args
[
"cplusplus"
]
=
__cplusplus
;
args
[
"build_date"
]
=
__DATE__
;
args
[
"version"
]
=
kServerName
;
args
[
"exe_name"
]
=
exeName
();
#if NDEBUG
args
[
"release"
]
=
1
;
#else
args
[
"release"
]
=
0
;
#endif
#if ENABLE_RTPPROXY
args
[
"rtp_proxy"
]
=
1
;
#else
args
[
"rtp_proxy"
]
=
0
;
#endif
#if ENABLE_HLS
args
[
"hls"
]
=
1
;
#else
args
[
"hls"
]
=
0
;
#endif
#if ENABLE_WEBRTC
args
[
"webrtc"
]
=
1
;
#else
args
[
"webrtc"
]
=
0
;
#endif
#if ENABLE_SCTP
args
[
"sctp"
]
=
1
;
#else
args
[
"sctp"
]
=
0
;
#endif
#if ENABLE_SRT
args
[
"srt"
]
=
1
;
#else
args
[
"srt"
]
=
0
;
#endif
#if ENABLE_MP4
args
[
"mp4"
]
=
1
;
#else
args
[
"mp4"
]
=
0
;
#endif
#if ENABLE_OPENSSL
args
[
"openssl"
]
=
1
;
#else
args
[
"openssl"
]
=
0
;
#endif
args
[
"rand_str"
]
=
makeRandStr
(
32
);
for
(
auto
&
pr
:
mINI
::
Instance
())
{
// 只获取转协议相关配置
if
(
pr
.
first
.
find
(
"protocol."
)
==
0
)
{
args
[
pr
.
first
]
=
pr
.
second
;
}
}
return
args
.
make
();
}
static
void
sendReport
()
{
static
HttpRequester
::
Ptr
requester
=
std
::
make_shared
<
HttpRequester
>
();
// 获取一次静态信息,定时上报主要方便统计在线实例个数
static
auto
body
=
httpBody
();
requester
->
setMethod
(
"POST"
);
requester
->
setBody
(
body
);
requester
->
startRequester
(
s_report_url
,
nullptr
,
s_interval_second
);
}
static
toolkit
::
onceToken
s_token
([]()
{
NoticeCenter
::
Instance
().
addListener
(
nullptr
,
EventPollerPool
::
kOnStarted
,
[](
EventPollerPool
&
pool
,
size_t
&
size
)
{
pool
.
getPoller
()
->
doDelayTask
(
s_interval_second
*
1000
,
[]()
{
sendReport
();
return
s_interval_second
*
1000
;
});
});
});
#endif
}
// namespace mediakit
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论