mirror of
				https://github.com/hyperion-project/hyperion.ng.git
				synced 2025-03-01 10:33:28 +00:00 
			
		
		
		
	- Commit: 1d9165f403
- New default QT capture implementation
- UploadHandler added to Effects Configurator to allow uploading GIF files
- Docker compile script and instruction
- Travis Fix
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef QTHTTPCLIENTWRAPPER_H
 | |
| #define QTHTTPCLIENTWRAPPER_H
 | |
| 
 | |
| #include <QObject>
 | |
| #include <QString>
 | |
| 
 | |
| class QTcpSocket;
 | |
| 
 | |
| class QtHttpRequest;
 | |
| class QtHttpReply;
 | |
| class QtHttpServer;
 | |
| class WebSocketClient;
 | |
| class WebJsonRpc;
 | |
| 
 | |
| class QtHttpClientWrapper : public QObject {
 | |
|     Q_OBJECT
 | |
| 
 | |
| public:
 | |
|     explicit QtHttpClientWrapper (QTcpSocket * sock, QtHttpServer * parent);
 | |
| 
 | |
|     static const char SPACE = ' ';
 | |
|     static const char COLON = ':';
 | |
|     static const QByteArray & CRLF;
 | |
| 
 | |
|     enum ParsingStatus {
 | |
|         ParsingError    = -1,
 | |
|         AwaitingRequest =  0,
 | |
|         AwaitingHeaders =  1,
 | |
|         AwaitingContent =  2,
 | |
|         RequestParsed   =  3
 | |
|     };
 | |
| 
 | |
|     QString getGuid (void);
 | |
| 	/// @brief Wrapper for sendReplyToClient(), handles m_parsingStatus and signal connect
 | |
| 	void sendToClientWithReply (QtHttpReply * reply);
 | |
| 
 | |
| private slots:
 | |
|     void onClientDataReceived (void);
 | |
| 
 | |
| protected:
 | |
|     ParsingStatus sendReplyToClient (QtHttpReply * reply);
 | |
| 
 | |
| protected slots:
 | |
|     void onReplySendHeadersRequested (void);
 | |
|     void onReplySendDataRequested    (void);
 | |
| 
 | |
| private:
 | |
|     QString           m_guid;
 | |
|     ParsingStatus     m_parsingStatus;
 | |
|     QTcpSocket    *   m_sockClient;
 | |
|     QtHttpRequest *   m_currentRequest;
 | |
|     QtHttpServer  *   m_serverHandle;
 | |
| 	WebSocketClient * m_websocketClient;
 | |
| 	WebJsonRpc *      m_webJsonRpc;
 | |
| };
 | |
| 
 | |
| #endif // QTHTTPCLIENTWRAPPER_H
 |