2021-09-08 18:00:55 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef ZLMEDIAKIT_WEBRTCSESSION_H
|
|
|
|
|
#define ZLMEDIAKIT_WEBRTCSESSION_H
|
|
|
|
|
|
|
|
|
|
#include "Network/Session.h"
|
2022-11-18 22:52:57 +08:00
|
|
|
|
#include "Http/HttpRequestSplitter.h"
|
|
|
|
|
|
|
|
|
|
namespace toolkit {
|
|
|
|
|
class TcpServer;
|
|
|
|
|
}
|
2021-09-08 18:00:55 +08:00
|
|
|
|
|
2022-09-18 21:03:05 +08:00
|
|
|
|
namespace mediakit {
|
2022-11-29 11:07:13 +08:00
|
|
|
|
class WebRtcTransportImp;
|
|
|
|
|
using namespace toolkit;
|
2022-09-18 21:03:05 +08:00
|
|
|
|
|
2022-11-18 22:52:57 +08:00
|
|
|
|
class WebRtcSession : public Session, public HttpRequestSplitter {
|
2021-09-08 18:00:55 +08:00
|
|
|
|
public:
|
|
|
|
|
WebRtcSession(const Socket::Ptr &sock);
|
|
|
|
|
~WebRtcSession() override;
|
|
|
|
|
|
2022-11-18 22:52:57 +08:00
|
|
|
|
void attachServer(const Server &server) override;
|
2021-09-08 18:00:55 +08:00
|
|
|
|
void onRecv(const Buffer::Ptr &) override;
|
|
|
|
|
void onError(const SockException &err) override;
|
|
|
|
|
void onManager() override;
|
2021-10-16 10:29:00 +08:00
|
|
|
|
static EventPoller::Ptr queryPoller(const Buffer::Ptr &buffer);
|
|
|
|
|
|
2021-09-15 11:50:15 +08:00
|
|
|
|
private:
|
2022-11-18 22:52:57 +08:00
|
|
|
|
//// HttpRequestSplitter override ////
|
|
|
|
|
ssize_t onRecvHeader(const char *data, size_t len) override;
|
|
|
|
|
const char *onSearchPacketTail(const char *data, size_t len) override;
|
|
|
|
|
|
|
|
|
|
void onRecv_l(const char *data, size_t len);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool _over_tcp = false;
|
2021-09-15 11:50:15 +08:00
|
|
|
|
bool _find_transport = true;
|
2021-09-10 22:31:44 +08:00
|
|
|
|
Ticker _ticker;
|
2022-05-08 00:26:01 +08:00
|
|
|
|
struct sockaddr_storage _peer_addr;
|
2022-11-18 22:52:57 +08:00
|
|
|
|
std::weak_ptr<toolkit::TcpServer> _server;
|
2021-09-10 18:37:32 +08:00
|
|
|
|
std::shared_ptr<WebRtcTransportImp> _transport;
|
2021-09-08 18:00:55 +08:00
|
|
|
|
};
|
|
|
|
|
|
2022-09-18 21:03:05 +08:00
|
|
|
|
}// namespace mediakit
|
2021-09-08 18:00:55 +08:00
|
|
|
|
|
|
|
|
|
#endif //ZLMEDIAKIT_WEBRTCSESSION_H
|