2019-08-08 19:01:45 +08:00
|
|
|
|
/*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
|
2020-04-04 20:30:09 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
|
2020-04-04 20:30:09 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Use of this source code is governed by MIT-like license that can be found in the
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* 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-03-27 18:41:52 +08:00
|
|
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
#include "PusherBase.h"
|
|
|
|
|
|
#include "Rtsp/RtspPusher.h"
|
|
|
|
|
|
#include "Rtmp/RtmpPusher.h"
|
2024-12-28 20:21:29 +08:00
|
|
|
|
#ifdef ENABLE_SRT
|
|
|
|
|
|
#include "Srt/SrtPusher.h"
|
|
|
|
|
|
#endif // ENABLE_SRT
|
2019-03-27 18:41:52 +08:00
|
|
|
|
|
|
|
|
|
|
using namespace toolkit;
|
|
|
|
|
|
|
|
|
|
|
|
namespace mediakit {
|
|
|
|
|
|
|
2024-02-07 23:06:42 +08:00
|
|
|
|
PusherBase::Ptr PusherBase::createPusher(const EventPoller::Ptr &in_poller,
|
2019-04-01 10:16:15 +08:00
|
|
|
|
const MediaSource::Ptr &src,
|
2022-07-29 17:31:55 +08:00
|
|
|
|
const std::string & url) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
auto poller = in_poller ? in_poller : EventPollerPool::Instance().getPoller();
|
|
|
|
|
|
std::weak_ptr<EventPoller> weak_poller = poller;
|
2024-12-05 21:13:22 +08:00
|
|
|
|
auto release_func = [weak_poller](PusherBase *ptr) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
if (auto poller = weak_poller.lock()) {
|
|
|
|
|
|
poller->async([ptr]() {
|
|
|
|
|
|
onceToken token(nullptr, [&]() { delete ptr; });
|
|
|
|
|
|
ptr->teardown();
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
delete ptr;
|
|
|
|
|
|
}
|
2019-03-27 18:41:52 +08:00
|
|
|
|
};
|
2023-06-10 12:28:49 +08:00
|
|
|
|
std::string prefix = findSubString(url.data(), NULL, "://");
|
2019-07-20 20:53:50 +08:00
|
|
|
|
|
|
|
|
|
|
if (strcasecmp("rtsps",prefix.data()) == 0) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PusherBase::Ptr(new TcpClientWithSSL<RtspPusherImp>(poller, std::dynamic_pointer_cast<RtspMediaSource>(src)), release_func);
|
2019-07-20 20:53:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-03-27 18:41:52 +08:00
|
|
|
|
if (strcasecmp("rtsp",prefix.data()) == 0) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PusherBase::Ptr(new RtspPusherImp(poller, std::dynamic_pointer_cast<RtspMediaSource>(src)), release_func);
|
2019-03-27 18:41:52 +08:00
|
|
|
|
}
|
2019-07-20 20:53:50 +08:00
|
|
|
|
|
|
|
|
|
|
if (strcasecmp("rtmps",prefix.data()) == 0) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PusherBase::Ptr(new TcpClientWithSSL<RtmpPusherImp>(poller, std::dynamic_pointer_cast<RtmpMediaSource>(src)), release_func);
|
2019-07-20 20:53:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-03-27 18:41:52 +08:00
|
|
|
|
if (strcasecmp("rtmp",prefix.data()) == 0) {
|
2024-02-07 23:06:42 +08:00
|
|
|
|
return PusherBase::Ptr(new RtmpPusherImp(poller, std::dynamic_pointer_cast<RtmpMediaSource>(src)), release_func);
|
2019-03-27 18:41:52 +08:00
|
|
|
|
}
|
2019-07-20 20:53:50 +08:00
|
|
|
|
|
2024-12-28 20:21:29 +08:00
|
|
|
|
#ifdef ENABLE_SRT
|
|
|
|
|
|
if (strcasecmp("srt", prefix.data()) == 0) {
|
|
|
|
|
|
return PusherBase::Ptr(new SrtPusherImp(poller, std::dynamic_pointer_cast<TSMediaSource>(src)), release_func);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif//ENABLE_SRT
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-07-29 17:31:55 +08:00
|
|
|
|
throw std::invalid_argument("not supported push schema:" + url);
|
2019-03-27 18:41:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PusherBase::PusherBase() {
|
2022-02-02 20:34:50 +08:00
|
|
|
|
this->mINI::operator[](Client::kTimeoutMS) = 10000;
|
|
|
|
|
|
this->mINI::operator[](Client::kBeatIntervalMS) = 5000;
|
2019-03-27 18:41:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} /* namespace mediakit */
|