ZLMediaKit/src/Http/HttpSession.h

139 lines
4.6 KiB
C++
Raw Normal View History

2017-10-09 22:11:01 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2017-09-27 16:20:30 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
*
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.
2017-04-01 16:35:56 +08:00
*/
2020-04-04 20:30:09 +08:00
2017-04-01 16:35:56 +08:00
#ifndef SRC_HTTP_HTTPSESSION_H_
#define SRC_HTTP_HTTPSESSION_H_
2017-04-25 11:35:41 +08:00
#include <functional>
2018-02-23 15:36:51 +08:00
#include "Network/TcpSession.h"
2017-12-15 16:01:21 +08:00
#include "Rtmp/RtmpMediaSource.h"
2019-06-28 17:30:13 +08:00
#include "Rtmp/FlvMuxer.h"
#include "HttpRequestSplitter.h"
2018-09-21 16:11:09 +08:00
#include "WebSocketSplitter.h"
2019-06-13 12:00:41 +08:00
#include "HttpCookieManager.h"
2019-11-30 11:38:00 +08:00
#include "HttpFileManager.h"
2017-04-01 16:35:56 +08:00
using namespace std;
2018-10-24 17:17:55 +08:00
using namespace toolkit;
2017-04-01 16:35:56 +08:00
2018-10-24 17:17:55 +08:00
namespace mediakit {
2017-04-01 16:35:56 +08:00
2018-09-21 16:11:09 +08:00
class HttpSession: public TcpSession,
public FlvMuxer,
public HttpRequestSplitter,
public WebSocketSplitter {
2017-04-01 16:35:56 +08:00
public:
2020-03-20 11:51:24 +08:00
typedef StrCaseMap KeyValue;
typedef HttpResponseInvokerImp HttpResponseInvoker;
friend class AsyncSender;
/**
* @param errMsg
* @param accessPath 访
* @param cookieLifeSecond cookie有效期
**/
typedef std::function<void(const string &errMsg,const string &accessPath, int cookieLifeSecond)> HttpAccessPathInvoker;
HttpSession(const Socket::Ptr &pSock);
2020-04-24 12:39:22 +08:00
~HttpSession() override;
2020-03-20 11:51:24 +08:00
2020-04-24 12:39:22 +08:00
void onRecv(const Buffer::Ptr &) override;
void onError(const SockException &err) override;
void onManager() override;
2020-03-20 11:51:24 +08:00
static string urlDecode(const string &str);
2017-04-19 17:47:07 +08:00
protected:
2020-03-20 11:51:24 +08:00
//FlvMuxer override
2020-04-09 16:19:03 +08:00
void onWrite(const Buffer::Ptr &data, bool flush) override ;
2020-03-20 11:51:24 +08:00
void onDetach() override;
std::shared_ptr<FlvMuxer> getSharedPtr() override;
//HttpRequestSplitter override
int64_t onRecvHeader(const char *data,uint64_t len) override;
void onRecvContent(const char *data,uint64_t len) override;
/**
* content
* http-flv推流
* @param header http请求头
* @param data content分片数据
* @param len content分片数据大小
* @param totalSize content总大小,0content
* @param recvedSize
*/
virtual void onRecvUnlimitedContent(const Parser &header,
const char *data,
uint64_t len,
uint64_t totalSize,
uint64_t recvedSize){
2019-05-29 18:08:50 +08:00
shutdown(SockException(Err_shutdown,"http post content is too huge,default closed"));
2020-03-20 11:51:24 +08:00
}
2020-03-20 11:51:24 +08:00
/**
2019-09-16 17:42:52 +08:00
* websocket客户端连接上事件
* @param header http头
* @return true代表允许websocket连接
*/
virtual bool onWebSocketConnect(const Parser &header){
2020-04-24 12:39:22 +08:00
WarnP(this) << "http server do not support websocket default";
2019-09-16 17:42:52 +08:00
return false;
2018-09-20 18:20:43 +08:00
}
2019-05-28 17:14:36 +08:00
2020-03-20 11:51:24 +08:00
//WebSocketSplitter override
/**
2019-09-16 17:42:52 +08:00
* websocket协议打包后回调
* @param buffer websocket协议数据
*/
2020-03-20 11:51:24 +08:00
void onWebSocketEncodeData(const Buffer::Ptr &buffer) override;
/**
* webSocket数据包后回调
* @param header
*/
void onWebSocketDecodeComplete(const WebSocketHeader &header_in) override;
private:
2020-03-20 11:51:24 +08:00
void Handle_Req_GET(int64_t &content_len);
void Handle_Req_GET_l(int64_t &content_len, bool sendBody);
void Handle_Req_POST(int64_t &content_len);
void Handle_Req_HEAD(int64_t &content_len);
2020-03-11 20:58:41 +08:00
bool checkLiveFlvStream(const function<void()> &cb = nullptr);
2020-03-20 11:51:24 +08:00
bool checkWebSocket();
bool emitHttpEvent(bool doInvoke);
void urlDecode(Parser &parser);
void sendNotFound(bool bClose);
void sendResponse(const char *pcStatus, bool bClose, const char *pcContentType = nullptr,
const HttpSession::KeyValue &header = HttpSession::KeyValue(),
const HttpBody::Ptr &body = nullptr, bool no_content_length = false);
2020-03-20 11:51:24 +08:00
//设置socket标志
void setSocketFlags();
2019-05-28 17:14:36 +08:00
private:
2020-03-20 11:51:24 +08:00
string _origin;
2019-05-28 17:14:36 +08:00
Parser _parser;
Ticker _ticker;
//消耗的总流量
uint64_t _ui64TotalBytes = 0;
//flv over http
MediaInfo _mediaInfo;
//处理content数据的callback
function<bool (const char *data,uint64_t len) > _contentCallBack;
2020-03-20 11:51:24 +08:00
bool _flv_over_websocket = false;
bool _is_flv_stream = false;
2017-04-01 16:35:56 +08:00
};
2018-12-20 10:31:31 +08:00
typedef TcpSessionWithSSL<HttpSession> HttpsSession;
2018-10-24 17:17:55 +08:00
} /* namespace mediakit */
2017-04-01 16:35:56 +08:00
#endif /* SRC_HTTP_HTTPSESSION_H_ */