Logo ROOT   6.18/05
Reference Guide
THttpCallArg.h
Go to the documentation of this file.
1// $Id$
2// Author: Sergey Linev 21/05/2015
3
4/*************************************************************************
5 * Copyright (C) 1995-2013, 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_THttpCallArg
13#define ROOT_THttpCallArg
14
15#include "TObject.h"
16
17#include "TString.h"
18
19#include <condition_variable>
20#include <string>
21#include <memory>
22
23class THttpServer;
24class THttpWSEngine;
25class THttpWSHandler;
26
27class THttpCallArg : public TObject {
28
29 friend class THttpServer;
30 friend class THttpWSEngine;
31 friend class THttpWSHandler;
32
33public:
34 enum {
35 kNoZip = 0, // no zipping
36 kZip = 1, // zip content if "Accept-Encoding" header contains "gzip"
37 kZipLarge = 2, // zip if content larger than 10K and "Accept-Encoding" contains "gzip"
38 kZipAlways = 3 // zip always
39 };
40
41protected:
42 TString fTopName; ///<! top item name
43 TString fMethod; ///<! request method like GET or POST
44 TString fPathName; ///<! item path
45 TString fFileName; ///<! file name
46 TString fUserName; ///<! authenticated user name (if any)
47 TString fQuery; ///<! additional arguments
48
49 UInt_t fWSId{0}; ///<! websocket identifier, used in web-socket related operations
50
51 std::condition_variable fCond; ///<! condition used to wait for processing
52
53 TString fContentType; ///<! type of content
54 TString fRequestHeader; ///<! complete header, provided with request
55 TString fHeader; ///<! response header like ContentEncoding, Cache-Control and so on
56 Int_t fZipping{kNoZip}; ///<! indicate if and when content should be compressed
57
58 Bool_t fNotifyFlag{kFALSE}; ///<! indicate that notification called
59
60 TString AccessHeader(TString &buf, const char *name, const char *value = nullptr, Bool_t doing_set = kFALSE);
61
62 TString CountHeader(const TString &buf, Int_t number = -1111) const;
63
64 void ReplaceAllinContent(const std::string &from, const std::string &to, bool once = false);
65
66 /** Method used to modify content of web page used by web socket handler */
68
69private:
70 std::shared_ptr<THttpWSEngine> fWSEngine; ///<! web-socket engine, which supplied to run created web socket
71
72 std::string fContent; ///<! content - text or binary
73 std::string fPostData; ///<! data received with post request - text - or binary
74
75 void AssignWSId();
76 std::shared_ptr<THttpWSEngine> TakeWSEngine();
77
78public:
79 explicit THttpCallArg() = default;
80 virtual ~THttpCallArg();
81
82 // these methods used to set http request arguments
83
84 /** set request method kind like GET or POST */
85 void SetMethod(const char *method) { fMethod = method; }
86
87 /** set engine-specific top-name */
88 void SetTopName(const char *topname) { fTopName = topname; }
89
90 void SetPathAndFileName(const char *fullpath);
91
92 /** set request path name */
93 void SetPathName(const char *p) { fPathName = p; }
94
95 /** set request file name */
96 void SetFileName(const char *f) { fFileName = f; }
97
98 /** set name of authenticated user */
99 void SetUserName(const char *n) { fUserName = n; }
100
101 /** set request query */
102 void SetQuery(const char *q) { fQuery = q; }
103
104 void SetPostData(void *data, Long_t length, Bool_t make_copy = kFALSE);
105
106 void SetPostData(std::string &&data);
107
108 /** set web-socket id */
109 void SetWSId(UInt_t id) { fWSId = id; }
110
111 /** get web-socket id */
112 UInt_t GetWSId() const { return fWSId; }
113
114 /** set full set of request header */
115 void SetRequestHeader(const char *h) { fRequestHeader = (h ? h : ""); }
116
117 /** returns number of fields in request header */
119
120 /** returns field name in request header */
122
123 /** get named field from request header */
125
126 /** returns engine-specific top-name */
127 const char *GetTopName() const { return fTopName.Data(); }
128
129 /** returns request method like GET or POST */
130 const char *GetMethod() const { return fMethod.Data(); }
131
132 /** returns kTRUE if post method is used */
133 Bool_t IsMethod(const char *name) const { return fMethod.CompareTo(name) == 0; }
134
135 /** returns kTRUE if post method is used */
136 Bool_t IsPostMethod() const { return IsMethod("POST"); }
137
138 /** return pointer on posted with request data */
139 const void *GetPostData() const { return fPostData.data(); }
140
141 /** return length of posted with request data */
142 Long_t GetPostDataLength() const { return (Long_t) fPostData.length(); }
143
144 /** returns path name from request URL */
145 const char *GetPathName() const { return fPathName.Data(); }
146
147 /** returns file name from request URL */
148 const char *GetFileName() const { return fFileName.Data(); }
149
150 /** return authenticated user name (0 - when no authentication) */
151 const char *GetUserName() const { return fUserName.Length() > 0 ? fUserName.Data() : nullptr; }
152
153 /** returns request query (string after ? in request URL) */
154 const char *GetQuery() const { return fQuery.Data(); }
155
156 // these methods used in THttpServer to set results of request processing
157
158 /** set content type like "text/xml" or "application/json" */
159 void SetContentType(const char *typ) { fContentType = typ; }
160
161 /** mark reply as 404 error - page/request not exists or refused */
162 void Set404() { SetContentType("_404_"); }
163
164 /** mark as postponed - reply will not be send to client immediately */
165 void SetPostponed() { SetContentType("_postponed_"); }
166
167 /** indicate that http request should response with file content */
168 void SetFile(const char *filename = nullptr)
169 {
170 SetContentType("_file_");
171 if (filename)
172 fContent = filename;
173 }
174
175 void SetText();
176 void SetTextContent(std::string &&txt);
177
178 void SetXml();
179 void SetXmlContent(std::string &&xml);
180
181 void SetJson();
182 void SetJsonContent(std::string &&json);
183
184 void SetBinary();
185 void SetBinaryContent(std::string &&bin);
186
187 void AddHeader(const char *name, const char *value);
188
189 void AddNoCacheHeader();
190
191 /** returns number of fields in header */
192 Int_t NumHeader() const { return CountHeader(fHeader).Atoi(); }
193
194 /** returns field name in header */
195 TString GetHeaderName(Int_t number) const { return CountHeader(fHeader, number); }
196
197 TString GetHeader(const char *name);
198
199 /** Set Content-Encoding header like gzip */
200 void SetEncoding(const char *typ) { AccessHeader(fHeader, "Content-Encoding", typ, kTRUE); }
201
202 void SetContent(const char *cont);
203 void SetContent(std::string &&cont);
204
206
207 void SetZipping(Int_t mode = kZipLarge) { fZipping = mode; }
208 Int_t GetZipping() const { return fZipping; }
209
210 /** add extra http header value to the reply */
211 void SetExtraHeader(const char *name, const char *value) { AddHeader(name, value); }
212
213 std::string FillHttpHeader(const char *header = nullptr);
214
215 // these methods used to return results of http request processing
216
217 Bool_t IsContentType(const char *typ) const { return fContentType == typ; }
218 const char *GetContentType() const { return fContentType.Data(); }
219
220 Bool_t Is404() const { return IsContentType("_404_"); }
221 Bool_t IsFile() const { return IsContentType("_file_"); }
222 Bool_t IsPostponed() const { return IsContentType("_postponed_"); }
223 Bool_t IsText() const { return IsContentType("text/plain"); }
224 Bool_t IsXml() const { return IsContentType("text/xml"); }
225 Bool_t IsJson() const { return IsContentType("application/json"); }
226 Bool_t IsBinary() const { return IsContentType("application/x-binary"); }
227
228 Long_t GetContentLength() const { return (Long_t) fContent.length(); }
229 const void *GetContent() const { return fContent.data(); }
230
231 void NotifyCondition();
232
233 virtual void HttpReplied();
234
235 template <class T, typename... Args>
236 void CreateWSEngine(Args... args)
237 {
238 fWSEngine = std::make_shared<T>(args...);
239 AssignWSId();
240 }
241
242 ClassDef(THttpCallArg, 0) // Arguments for single HTTP call
243};
244
245#endif
#define f(i)
Definition: RSha256.hxx:104
#define h(i)
Definition: RSha256.hxx:106
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
const Bool_t kFALSE
Definition: RtypesCore.h:88
long Long_t
Definition: RtypesCore.h:50
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kTRUE
Definition: RtypesCore.h:87
#define ClassDef(name, id)
Definition: Rtypes.h:326
XFontStruct * id
Definition: TGX11.cxx:108
char name[80]
Definition: TGX11.cxx:109
float * q
Definition: THbookFile.cxx:87
std::string fPostData
! data received with post request - text - or binary
Definition: THttpCallArg.h:73
Bool_t fNotifyFlag
! indicate that notification called
Definition: THttpCallArg.h:58
Bool_t CompressWithGzip()
compress reply data with gzip compression
void Set404()
mark reply as 404 error - page/request not exists or refused
Definition: THttpCallArg.h:162
Bool_t IsXml() const
Definition: THttpCallArg.h:224
void SetRequestHeader(const char *h)
set full set of request header
Definition: THttpCallArg.h:115
void SetJson()
Set content type as "application/json".
UInt_t GetWSId() const
get web-socket id
Definition: THttpCallArg.h:112
void SetFileName(const char *f)
set request file name
Definition: THttpCallArg.h:96
TString GetHeader(const char *name)
return specified header
void SetFile(const char *filename=nullptr)
indicate that http request should response with file content
Definition: THttpCallArg.h:168
std::condition_variable fCond
! condition used to wait for processing
Definition: THttpCallArg.h:51
TString fTopName
! top item name
Definition: THttpCallArg.h:42
TString GetRequestHeader(const char *name)
get named field from request header
Definition: THttpCallArg.h:124
void SetPostData(void *data, Long_t length, Bool_t make_copy=kFALSE)
const char * GetUserName() const
return authenticated user name (0 - when no authentication)
Definition: THttpCallArg.h:151
std::shared_ptr< THttpWSEngine > TakeWSEngine()
takeout websocket handle with HTTP call can be done only once
void AddHeader(const char *name, const char *value)
Set name: value pair to reply header Content-Type field handled separately - one should use SetConten...
void SetText()
Set content type as "text/plain".
void SetTextContent(std::string &&txt)
Set content type as "text/plain" and also assigns content After method call argument.
TString GetHeaderName(Int_t number) const
returns field name in header
Definition: THttpCallArg.h:195
virtual void HttpReplied()
virtual method to inform object that http request is processed Normally condition is notified and wai...
TString fUserName
! authenticated user name (if any)
Definition: THttpCallArg.h:46
void SetUserName(const char *n)
set name of authenticated user
Definition: THttpCallArg.h:99
void SetPathName(const char *p)
set request path name
Definition: THttpCallArg.h:93
const char * GetTopName() const
returns engine-specific top-name
Definition: THttpCallArg.h:127
void ReplaceAllinContent(const std::string &from, const std::string &to, bool once=false)
Replace all occurrences of.
Bool_t IsPostMethod() const
returns kTRUE if post method is used
Definition: THttpCallArg.h:136
const void * GetPostData() const
return pointer on posted with request data
Definition: THttpCallArg.h:139
void SetTopName(const char *topname)
set engine-specific top-name
Definition: THttpCallArg.h:88
const char * GetQuery() const
returns request query (string after ? in request URL)
Definition: THttpCallArg.h:154
TString fPathName
! item path
Definition: THttpCallArg.h:44
Bool_t IsBinary() const
Definition: THttpCallArg.h:226
std::shared_ptr< THttpWSEngine > fWSEngine
! web-socket engine, which supplied to run created web socket
Definition: THttpCallArg.h:70
void NotifyCondition()
method used to notify condition which waiting when operation will complete Condition notified only if...
void CreateWSEngine(Args... args)
Definition: THttpCallArg.h:236
Bool_t IsText() const
Definition: THttpCallArg.h:223
Int_t NumRequestHeader() const
returns number of fields in request header
Definition: THttpCallArg.h:118
void SetPathAndFileName(const char *fullpath)
set complete path of requested http element For instance, it could be "/folder/subfolder/get....
TString fContentType
! type of content
Definition: THttpCallArg.h:53
Long_t GetContentLength() const
Definition: THttpCallArg.h:228
Int_t GetZipping() const
Definition: THttpCallArg.h:208
Bool_t Is404() const
Definition: THttpCallArg.h:220
TString fQuery
! additional arguments
Definition: THttpCallArg.h:47
void SetMethod(const char *method)
set request method kind like GET or POST
Definition: THttpCallArg.h:85
virtual ~THttpCallArg()
destructor
TString CountHeader(const TString &buf, Int_t number=-1111) const
method used to counter number of headers or returns name of specified header
const void * GetContent() const
Definition: THttpCallArg.h:229
void SetPostponed()
mark as postponed - reply will not be send to client immediately
Definition: THttpCallArg.h:165
void SetBinary()
Set content type as "application/x-binary".
void AddNoCacheHeader()
Set CacheControl http header to disable browser caching.
TString AccessHeader(TString &buf, const char *name, const char *value=nullptr, Bool_t doing_set=kFALSE)
method used to get or set http header in the string buffer Header has following format: field1 : valu...
Bool_t IsContentType(const char *typ) const
Definition: THttpCallArg.h:217
void SetXml()
Set content type as "text/xml".
void SetExtraHeader(const char *name, const char *value)
add extra http header value to the reply
Definition: THttpCallArg.h:211
Int_t fZipping
! indicate if and when content should be compressed
Definition: THttpCallArg.h:56
void SetContent(const char *cont)
Set content as text.
Bool_t IsPostponed() const
Definition: THttpCallArg.h:222
void SetWSId(UInt_t id)
set web-socket id
Definition: THttpCallArg.h:109
TString fFileName
! file name
Definition: THttpCallArg.h:45
UInt_t fWSId
! websocket identifier, used in web-socket related operations
Definition: THttpCallArg.h:49
void SetQuery(const char *q)
set request query
Definition: THttpCallArg.h:102
TString GetRequestHeaderName(Int_t number) const
returns field name in request header
Definition: THttpCallArg.h:121
Int_t NumHeader() const
returns number of fields in header
Definition: THttpCallArg.h:192
std::string fContent
! content - text or binary
Definition: THttpCallArg.h:72
void SetBinaryContent(std::string &&bin)
Set content type as "application/x-binary" and also assigns content After method call argument.
Bool_t IsJson() const
Definition: THttpCallArg.h:225
void SetContentType(const char *typ)
set content type like "text/xml" or "application/json"
Definition: THttpCallArg.h:159
THttpCallArg()=default
virtual void CheckWSPageContent(THttpWSHandler *)
Method used to modify content of web page used by web socket handler.
Definition: THttpCallArg.h:67
const char * GetPathName() const
returns path name from request URL
Definition: THttpCallArg.h:145
TString fMethod
! request method like GET or POST
Definition: THttpCallArg.h:43
void SetEncoding(const char *typ)
Set Content-Encoding header like gzip.
Definition: THttpCallArg.h:200
Long_t GetPostDataLength() const
return length of posted with request data
Definition: THttpCallArg.h:142
void SetJsonContent(std::string &&json)
Set content type as "application/json" and also assigns content After method call argument.
const char * GetMethod() const
returns request method like GET or POST
Definition: THttpCallArg.h:130
Bool_t IsMethod(const char *name) const
returns kTRUE if post method is used
Definition: THttpCallArg.h:133
const char * GetContentType() const
Definition: THttpCallArg.h:218
const char * GetFileName() const
returns file name from request URL
Definition: THttpCallArg.h:148
void AssignWSId()
Assign websocket identifier from the engine.
void SetZipping(Int_t mode=kZipLarge)
Definition: THttpCallArg.h:207
void SetXmlContent(std::string &&xml)
Set content type as "text/xml" and also assigns content After method call argument.
std::string FillHttpHeader(const char *header=nullptr)
Fills HTTP header, which can be send at the beggining of reply on the http request.
TString fRequestHeader
! complete header, provided with request
Definition: THttpCallArg.h:54
TString fHeader
! response header like ContentEncoding, Cache-Control and so on
Definition: THttpCallArg.h:55
Bool_t IsFile() const
Definition: THttpCallArg.h:221
Mother of all ROOT objects.
Definition: TObject.h:37
Basic string class.
Definition: TString.h:131
Ssiz_t Length() const
Definition: TString.h:405
int CompareTo(const char *cs, ECaseCompare cmp=kExact) const
Compare a string to char *cs2.
Definition: TString.cxx:418
Int_t Atoi() const
Return integer value of string.
Definition: TString.cxx:1921
const char * Data() const
Definition: TString.h:364
const Int_t n
Definition: legend1.C:16
double T(double x)
Definition: ChebyshevPol.h:34