Logo ROOT  
Reference Guide
THttpLongPollEngine.h
Go to the documentation of this file.
1// $Id$
2// Author: Sergey Linev 8/01/2018
3
4/*************************************************************************
5 * Copyright (C) 1995-2017, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_THttpLongPollEngine
13#define ROOT_THttpLongPollEngine
14
15#include "THttpWSEngine.h"
16
17#include <string>
18#include <queue>
19#include <mutex>
20
21class THttpServer;
22
24 friend class THttpServer;
25
26protected:
27
28 bool fRaw{false}; ///!< if true, only content can be used for data transfer
29 std::mutex fMutex; ///!< protect polling request to use it from different threads
30 std::shared_ptr<THttpCallArg> fPoll; ///!< hold polling request, which can be immediately used for the next sending
31 static const std::string gLongPollNope; ///!< default reply on the longpoll request
32
33 std::string MakeBuffer(const void *buf, int len, const char *hdr = nullptr);
34
35 virtual Bool_t CanSendDirectly() override;
36
37public:
38 THttpLongPollEngine(bool raw = false);
39 virtual ~THttpLongPollEngine() = default;
40
41 UInt_t GetId() const override;
42
43 void ClearHandle(Bool_t) override;
44
45 void Send(const void *buf, int len) override;
46
47 void SendCharStar(const char *buf) override;
48
49 void SendHeader(const char *hdr, const void *buf, int len) override;
50
51 Bool_t PreProcess(std::shared_ptr<THttpCallArg> &arg) override;
52
53 void PostProcess(std::shared_ptr<THttpCallArg> &arg) override;
54};
55
56#endif
std::string MakeBuffer(const void *buf, int len, const char *hdr=nullptr)
!< default reply on the longpoll request
std::shared_ptr< THttpCallArg > fPoll
!< protect polling request to use it from different threads
void Send(const void *buf, int len) override
Send binary data via connection.
void SendHeader(const char *hdr, const void *buf, int len) override
Send binary data with text header via connection.
std::mutex fMutex
!< if true, only content can be used for data transfer
virtual Bool_t CanSendDirectly() override
Indicate that polling requests is there and can be immediately invoked.
THttpLongPollEngine(bool raw=false)
constructor
static const std::string gLongPollNope
!< hold polling request, which can be immediately used for the next sending
void ClearHandle(Bool_t) override
clear request, normally called shortly before destructor
void SendCharStar(const char *buf) override
Send const char data Either do it immediately or keep in internal buffer.
Bool_t PreProcess(std::shared_ptr< THttpCallArg > &arg) override
Preview data for given socket Method called by WS handler before processing websocket data Returns kT...
UInt_t GetId() const override
returns ID of the engine, created from this pointer
void PostProcess(std::shared_ptr< THttpCallArg > &arg) override
Normally requests from client does not replied directly for longpoll socket Therefore one can use suc...
virtual ~THttpLongPollEngine()=default