22#include "RConfigure.h"
178 ::Warning(
"THttpServer::THttpServer",
"problems resolving '%s', set JSROOTSYS to proper JavaScript ROOT location",
206 ::Warning(
"THttpServer::THttpServer",
"Fail to load TRootSnifferFull class, use basic functionality");
212 sniff->CreateOwnTopFolder();
226 const char *opt =
lst->At(
n)->GetName();
227 if ((
strcmp(opt,
"readonly") == 0) || (
strcmp(opt,
"ro") == 0)) {
229 }
else if ((
strcmp(opt,
"readwrite") == 0) || (
strcmp(opt,
"rw") == 0)) {
231 }
else if (
strcmp(opt,
"global") == 0) {
233 }
else if (
strcmp(opt,
"noglobal") == 0) {
235 }
else if (
strncmp(opt,
"cors=", 5) == 0) {
237 }
else if (
strcmp(opt,
"cors") == 0) {
341 if (!prefix || (*prefix == 0))
364 fJSROOT = location ? location :
"";
445 }
else if (
clname ==
"socket") {
451 }
else if (
clname ==
"https") {
453 }
else if (
clname ==
"fastcgi") {
468 eng->SetServer(
this);
470 if (!
eng->Create(arg)) {
505 Error(
"SetTimer",
"Server runs already in special thread, therefore no any timer can be created");
531 std::thread
thrd([
this] {
541 std::this_thread::sleep_for(std::chrono::milliseconds(1));
621 if (!uri || (*uri == 0))
630 fname.Remove(0, pos + (
entry.first.length() - 1));
633 res =
entry.second.c_str();
634 if ((
fname[0] ==
'/') && (res[res.
Length() - 1] ==
'/'))
666 std::unique_lock<std::mutex>
lk(
fMutex);
695 arg->NotifyCondition();
700 std::unique_lock<std::mutex>
lk(
fMutex);
721 Warning(
"ProcessRequests",
"Changing main thread to %ld", (
long)
id);
741 std::unique_lock<std::mutex>
lk(
fMutex, std::defer_lock);
745 std::shared_ptr<THttpCallArg> arg;
748 if (!
fArgs.empty()) {
757 if (arg->fFileName ==
"root_batch_holder.js") {
762 auto prev =
fSniffer->SetCurrentCallArg(arg.get());
772 arg->NotifyCondition();
810 if (!
wsptr || !
wsptr->ProcessBatchHolder(arg)) {
812 arg->NotifyCondition();
822 std::string
arr =
"[";
827 if (
arr.length() > 1)
830 arr.append(
TString::Format(
"{ name: \"%s\", title: \"%s\" }", ws->GetName(), ws->GetTitle()).Data());
838 std::string arg =
"\"$$$wslist$$$\"";
840 auto pos = res.find(arg);
841 if (pos != std::string::npos)
842 res.replace(pos, arg.length(),
arr);
856 const std::string
place_holder =
"<!--jsroot_importmap-->";
864 if (arg->fPathName.Length() > 0)
866 for (
Int_t n = 1;
n < arg->fPathName.Length()-1; ++
n)
867 if (arg->fPathName[
n] ==
'/') {
868 if (arg->fPathName[
n-1] !=
'/') {
882 std::string
search =
"from './jsrootsys/";
883 std::string replace =
"from './" +
version +
"/jsrootsys/";
884 arg->ReplaceAllinContent(
search, replace);
886 search =
"from './rootui5sys/";
887 replace =
"from './" +
version +
"/rootui5sys/";
888 arg->ReplaceAllinContent(
search, replace);
890 search =
"jsrootsys/scripts/JSRoot.core.";
891 replace =
version +
"/jsrootsys/scripts/JSRoot.core.";
892 arg->ReplaceAllinContent(
search, replace,
true);
893 arg->AddNoCacheHeader();
901 if (
repl.back() !=
'/')
907 repl.append(
"jsrootsys/");
912 arg->ReplaceAllinContent(
"=\"jsrootsys/",
repl);
913 arg->ReplaceAllinContent(
"from './jsrootsys/",
TString::Format(
"from '%s",
repl.substr(2).c_str()).Data());
938 static std::map<std::string, std::string>
modules = {
939 {
"jsroot",
"main.mjs"}, {
"jsroot/core",
"core.mjs"},
940 {
"jsroot/io",
"io.mjs"}, {
"jsroot/tree",
"tree.mjs"},
941 {
"jsroot/draw",
"draw.mjs"}, {
"jsroot/gui",
"gui.mjs"},
942 {
"jsroot/d3",
"d3.mjs"}, {
"jsroot/three",
"three.mjs"}, {
"jsroot/three_addons",
"three_addons.mjs"},
943 {
"jsroot/geom",
"geom/TGeoPainter.mjs"}, {
"jsroot/hpainter",
"gui/HierarchyPainter.mjs"},
944 {
"jsroot/webwindow",
"webwindow.mjs"}
963 if (
entry.first !=
"jsrootsys/")
989 if ((arg->fFileName ==
"root.websocket") || (arg->fFileName ==
"root.longpoll")) {
994 if (arg->fFileName.IsNull() || (arg->fFileName ==
"index.htm") || (arg->fFileName ==
"default.htm")) {
998 if (arg->fFileName ==
"default.htm") {
1006 auto handler =
wsptr.get();
1013 arg->fContent = handler->GetDefaultPageContent().Data();
1015 if (arg->fContent.find(
"file:") == 0) {
1016 const char *
fname = arg->fContent.c_str() + 5;
1022 version = handler->GetCodeVersion();
1024 handler->VerifyDefaultPageContent(arg);
1028 if (arg->fContent.empty() && arg->fFileName.IsNull() && arg->fPathName.IsNull() &&
IsWSOnly()) {
1033 arg->SetContent(
"refused");
1037 if (arg->fContent.empty() && !
IsWSOnly()) {
1045 if (arg->fContent.empty()) {
1048 }
else if (!arg->Is404()) {
1052 const char *
hjsontag =
"\"$$$h.json$$$\"";
1055 if (arg->fContent.find(
hjsontag) != std::string::npos) {
1059 if (arg->fTopName.Length() > 0)
1060 topname = arg->fTopName.Data();
1065 arg->AddNoCacheHeader();
1067 if (arg->fQuery.Index(
"nozip") ==
kNPOS)
1070 arg->SetContentType(
"text/html");
1075 if ((arg->fFileName ==
"draw.htm") && !
IsWSOnly()) {
1083 const char *
hjsontag =
"\"$$$h.json$$$\"";
1089 if ((arg->fQuery.Index(
"no_h_json") ==
kNPOS) && (arg->fQuery.Index(
"webcanvas") ==
kNPOS) &&
1090 (arg->fContent.find(
hjsontag) != std::string::npos)) {
1094 if (arg->fTopName.Length() > 0)
1095 topname = arg->fTopName.Data();
1101 if ((arg->fQuery.Index(
"no_root_json") ==
kNPOS) && (arg->fQuery.Index(
"webcanvas") ==
kNPOS) &&
1102 (arg->fContent.find(
rootjsontag) != std::string::npos)) {
1104 if (
fSniffer->Produce(arg->fPathName.Data(),
"root.json",
"compact=23", str))
1107 arg->AddNoCacheHeader();
1108 if (arg->fQuery.Index(
"nozip") ==
kNPOS)
1110 arg->SetContentType(
"text/html");
1115 if ((arg->fFileName ==
"favicon.ico") && arg->fPathName.IsNull()) {
1116 arg->SetFile(
fJSROOTSYS +
"/img/RootIcon.ico");
1127 if (!arg->fPathName.IsNull() && !arg->fFileName.IsNull()) {
1129 auto pos =
wsname.First(
'/');
1133 wsname = arg->fPathName(0, pos);
1134 fname = arg->fPathName(pos + 1, arg->fPathName.Length() - pos);
1138 fname.Append(arg->fFileName);
1144 if (ws && ws->CanServeFiles()) {
1145 TString fdir = ws->GetDefaultPageContent();
1147 if (fdir.
Index(
"file:") == 0) {
1172 if (arg->fContent.empty())
1180 res.
Form(
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
1190 if (arg->fTopName.Length() > 0)
1191 topname = arg->fTopName.Data();
1199 arg->SetContent(std::string(res.
Data()));
1206 if (arg->fTopName.Length() > 0)
1207 topname = arg->fTopName.Data();
1209 arg->SetContent(std::string(res.
Data()));
1211 }
else if (
fSniffer->Produce(arg->fPathName.Data(),
filename.Data(), arg->fQuery.Data(), arg->fContent)) {
1228 const char *
parname =
fSniffer->IsStreamerInfoItem(arg->fPathName.Data()) ?
"BVersion" :
"MVersion";
1233 arg->AddNoCacheHeader();
1237 arg->AddHeader(
"Access-Control-Allow-Origin",
GetCors());
1259 return fSniffer->UnregisterObject(obj);
1312 auto handler =
wsptr.get();
1317 if (
external_thrd && (!handler || !handler->AllowMTProcess())) {
1322 std::unique_lock<std::mutex>
lk(
fMutex);
1326 arg->fCond.wait(
lk);
1338 if (arg->fFileName ==
"root.websocket") {
1340 process = handler->HandleWS(arg);
1341 }
else if (arg->fFileName ==
"root.longpoll") {
1343 if (arg->fQuery.BeginsWith(
"raw_connect") || arg->fQuery.BeginsWith(
"txt_connect")) {
1346 arg->SetMethod(
"WS_CONNECT");
1348 bool israw = arg->fQuery.BeginsWith(
"raw_connect");
1353 if (handler->HandleWS(arg)) {
1354 arg->SetMethod(
"WS_READY");
1356 if (handler->HandleWS(arg))
1357 arg->SetTextContent(std::string(
israw ?
"txt:" :
"") + std::to_string(arg->GetWSId()));
1359 arg->TakeWSEngine();
1362 process = arg->IsText();
1365 url.SetOptions(arg->fQuery);
1367 const char *connid =
url.GetValueFromOptions(
"connection");
1369 arg->SetWSId(std::stoul(connid));
1370 if (
url.HasOption(
"close")) {
1371 arg->SetMethod(
"WS_CLOSE");
1372 arg->SetTextContent(
"OK");
1374 arg->SetMethod(
"WS_DATA");
1377 process = handler->HandleWS(arg);
1463 return fSniffer->CreateItem(fullname, title);
1487 static const struct {
1492 {
".json", 5,
"application/json"},
1493 {
".bin", 4,
"application/x-binary"},
1494 {
".gif", 4,
"image/gif"},
1495 {
".jpg", 4,
"image/jpeg"},
1496 {
".png", 4,
"image/png"},
1497 {
".html", 5,
"text/html"},
1498 {
".htm", 4,
"text/html"},
1499 {
".shtm", 5,
"text/html"},
1500 {
".shtml", 6,
"text/html"},
1501 {
".css", 4,
"text/css"},
1502 {
".js", 3,
"application/x-javascript"},
1503 {
".mjs", 4,
"text/javascript"},
1504 {
".ico", 4,
"image/x-icon"},
1505 {
".jpeg", 5,
"image/jpeg"},
1506 {
".svg", 4,
"image/svg+xml"},
1507 {
".txt", 4,
"text/plain"},
1508 {
".torrent", 8,
"application/x-bittorrent"},
1509 {
".wav", 4,
"audio/x-wav"},
1510 {
".mp3", 4,
"audio/x-mp3"},
1511 {
".mid", 4,
"audio/mid"},
1512 {
".m3u", 4,
"audio/x-mpegurl"},
1513 {
".ogg", 4,
"application/ogg"},
1514 {
".ram", 4,
"audio/x-pn-realaudio"},
1515 {
".xslt", 5,
"application/xml"},
1516 {
".xsl", 4,
"application/xml"},
1517 {
".ra", 3,
"audio/x-pn-realaudio"},
1518 {
".doc", 4,
"application/msword"},
1519 {
".exe", 4,
"application/octet-stream"},
1520 {
".zip", 4,
"application/x-zip-compressed"},
1521 {
".xls", 4,
"application/excel"},
1522 {
".tgz", 4,
"application/x-tar-gz"},
1523 {
".tar", 4,
"application/x-tar"},
1524 {
".gz", 3,
"application/x-gunzip"},
1525 {
".arj", 4,
"application/x-arj-compressed"},
1526 {
".rar", 4,
"application/x-arj-compressed"},
1527 {
".rtf", 4,
"application/rtf"},
1528 {
".pdf", 4,
"application/pdf"},
1529 {
".swf", 4,
"application/x-shockwave-flash"},
1530 {
".mpg", 4,
"video/mpeg"},
1531 {
".webm", 5,
"video/webm"},
1532 {
".mpeg", 5,
"video/mpeg"},
1533 {
".mov", 4,
"video/quicktime"},
1534 {
".mp4", 4,
"video/mp4"},
1535 {
".m4v", 4,
"video/x-m4v"},
1536 {
".asf", 4,
"video/x-ms-asf"},
1537 {
".avi", 4,
"video/x-msvideo"},
1538 {
".bmp", 4,
"image/bmp"},
1539 {
".ttf", 4,
"application/x-font-ttf"},
1540 {
".woff", 5,
"font/woff"},
1541 {
".woff2", 6,
"font/woff2"},
1555 return "text/plain";
1567 std::ifstream
is(
filename, std::ios::in | std::ios::binary);
1573 is.seekg(0,
is.beg);
1591 std::ifstream
is(
filename, std::ios::in | std::ios::binary);
1594 is.seekg(0, std::ios::end);
1595 res.resize(
is.tellg());
1596 is.seekg(0, std::ios::beg);
1597 is.read((
char *)res.data(), res.length());
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char filename
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize id
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void on
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t UChar_t len
Option_t Option_t TPoint TPoint const char mode
R__EXTERN TSystem * gSystem
static const struct @140 builtin_mime_types[]
const_iterator end() const
THttpEngine implementation, based on civetweb embedded server.
TClass instances represent classes, structs and namespaces in the ROOT type system.
static TClass * GetClass(const char *name, Bool_t load=kTRUE, Bool_t silent=kFALSE)
Static method returning pointer to TClass of the specified class name.
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
THttpEngine implementation, based on fastcgi package.
Contains arguments for single HTTP call.
void Set404()
mark reply as 404 error - page/request not exists or refused
Abstract class for implementing http protocol for THttpServer.
Emulation of websocket with long poll requests.
Online http server for arbitrary ROOT application.
Bool_t IsReadOnly() const
returns read-only mode
Bool_t RegisterCommand(const char *cmdname, const char *method, const char *icon=nullptr)
Register command which can be executed from web interface.
TString fJSROOT
! location of external JSROOT files
virtual void ProcessRequest(std::shared_ptr< THttpCallArg > arg)
Process single http request.
std::shared_ptr< THttpWSHandler > FindWS(const char *name)
Find web-socket handler with given name.
std::unique_ptr< TRootSniffer > fSniffer
! sniffer provides access to ROOT objects hierarchy
void SetTimer(Long_t milliSec=100, Bool_t mode=kTRUE)
Create timer which will invoke ProcessRequests() function periodically.
virtual void ProcessBatchHolder(std::shared_ptr< THttpCallArg > &arg)
Process special http request for root_batch_holder.js script.
std::vector< std::shared_ptr< THttpWSHandler > > fWSHandlers
! list of WS handlers
virtual ~THttpServer()
destructor
void SetTerminate()
set termination flag, no any further requests will be processed
virtual void MissedRequest(THttpCallArg *arg)
Method called when THttpServer cannot process request.
Bool_t fOwnThread
! true when specialized thread allocated for processing requests
void SetSniffer(TRootSniffer *sniff)
Set TRootSniffer to the server.
Bool_t IsFileRequested(const char *uri, TString &res) const
Check if file is requested, thread safe.
void SetReadOnly(Bool_t readonly=kTRUE)
Set read-only mode for the server (default on)
const char * GetItemField(const char *fullname, const char *name)
Get item field from sniffer.
const char * GetCors() const
Returns specified CORS domain.
std::thread fThrd
! own thread
void StopServerThread()
Stop server thread.
Int_t ProcessRequests()
Process submitted requests, must be called from appropriate thread.
Bool_t ExecuteWS(std::shared_ptr< THttpCallArg > &arg, Bool_t external_thrd=kFALSE, Bool_t wait_process=kFALSE)
Execute WS request.
void RegisterWS(std::shared_ptr< THttpWSHandler > ws)
Register WS handler.
Long_t fProcessingThrdId
! id of the thread where events are recently processing
TString fTopName
! name of top folder, default - "ROOT"
void SetDrawPage(const std::string &filename="")
Set drawing HTML page.
Bool_t CreateItem(const char *fullname, const char *title)
Create item in sniffer.
Bool_t ExecuteHttp(std::shared_ptr< THttpCallArg > arg)
Execute HTTP request.
Bool_t Hide(const char *fullname, Bool_t hide=kTRUE)
Hides folder or element from web gui.
Bool_t IsCorsCredentials() const
Returns kTRUE if Access-Control-Allow-Credentials header should be used.
void AddLocation(const char *prefix, const char *path)
Add files location, which could be used in the server.
std::map< std::string, std::string > fLocations
! list of local directories, which could be accessed via server
Bool_t SubmitHttp(std::shared_ptr< THttpCallArg > arg, Bool_t can_run_immediately=kFALSE)
Submit HTTP request.
Long_t fMainThrdId
! id of the thread for processing requests
TString fJSROOTSYS
! location of local JSROOT files
std::unique_ptr< THttpTimer > fTimer
! timer used to access main thread
Bool_t fWSOnly
! when true, handle only websockets / longpoll engine
Bool_t Register(const char *subfolder, TObject *obj)
Register object in subfolder.
TList fEngines
! engines which runs http server
void SetCors(const std::string &domain="*")
Enable CORS header to ProcessRequests() responses Specified location (typically "*") add as "Access-C...
Bool_t IsCors() const
Returns kTRUE if CORS was configured.
const char * GetCorsCredentials() const
Returns specified CORS credentials value - if any.
std::queue< std::shared_ptr< THttpCallArg > > fArgs
! submitted arguments
void SetDefaultPage(const std::string &filename="")
Set default HTML page.
THttpServer(const THttpServer &)=delete
static char * ReadFileContent(const char *filename, Int_t &len)
Reads content of file from the disk.
void CreateServerThread()
Creates special thread to process all requests, directed to http server.
std::string fDrawPageCont
! content of draw html page
Bool_t Unregister(TObject *obj)
Unregister object.
void SetWSOnly(Bool_t on=kTRUE)
Set websocket-only mode.
std::string BuildWSEntryPage()
Create summary page with active WS handlers.
Bool_t IsWSOnly() const
returns true if only websockets are handled by the server
std::mutex fWSMutex
! mutex to protect WS handler lists
Bool_t CreateEngine(const char *engine)
Factory method to create different http engines.
Bool_t SetIcon(const char *fullname, const char *iconname)
Set name of icon, used in browser together with the item.
std::string fDrawPage
! file name for drawing of single element
std::string fDefaultPageCont
! content of default html page
static Bool_t VerifyFilePath(const char *fname)
Checked that filename does not contains relative path below current directory.
Bool_t SetItemField(const char *fullname, const char *name, const char *value)
Set item field in sniffer.
void SetJSROOT(const char *location)
Set location of JSROOT to use with the server.
std::mutex fMutex
! mutex to protect list with arguments
std::string fDefaultPage
! file name for default page name
void UnregisterWS(std::shared_ptr< THttpWSHandler > ws)
Unregister WS handler.
static const char * GetMimeType(const char *path)
Guess mime type base on file extension.
TRootSniffer * GetSniffer() const
returns pointer on objects sniffer
void ReplaceJSROOTLinks(std::shared_ptr< THttpCallArg > &arg, const std::string &version="")
Replaces all references like "jsrootsys/..." or other pre-configured pathes.
Bool_t fTerminated
! termination flag, disables all requests processing
void Restrict(const char *path, const char *options)
Restrict access to specified object.
void Timeout() override
timeout handler used to process http requests in main ROOT thread
void SetSlow(Bool_t flag)
THttpTimer(Long_t milliSec, Bool_t mode, THttpServer &serv)
!< server processing requests
Class for user-side handling of websocket with THttpServer.
void Add(TObject *obj) override
void Delete(Option_t *option="") override
Remove all objects from the list AND delete all heap based objects.
The TNamed class is the base class for all named ROOT classes.
Mother of all ROOT objects.
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
static const TString & GetRootSys()
Get the rootsys directory in the installation. Static utility function.
static const TString & GetDataDir()
Get the data directory in the installation. Static utility function.
Storage of hierarchy scan in TRootSniffer in JSON format.
Storage of hierarchy scan in TRootSniffer in XML format.
Sniffer of ROOT objects, data provider for THttpServer.
void SetReadOnly(Bool_t on=kTRUE)
When readonly on (default), sniffer is not allowed to change ROOT structures For instance,...
void SetScanGlobalDir(Bool_t on=kTRUE)
When enabled (default), sniffer scans gROOT for files, canvases, histograms.
const char * Data() const
void Resize(Ssiz_t n)
Resize the string. Truncate or add blanks as necessary.
Ssiz_t Last(char c) const
Find last occurrence of a character c.
TObjArray * Tokenize(const TString &delim) const
This function is used to isolate sequential tokens in a TString.
TString & Remove(Ssiz_t pos)
TString & Append(const char *cs)
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
virtual Bool_t ExpandPathName(TString &path)
Expand a pathname getting rid of special shell characters like ~.
virtual const char * Getenv(const char *env)
Get environment variable.
static Long_t SelfId()
Static method returning the id for the current thread.
Handles synchronous and a-synchronous timer events.
void SetTime(Long_t milliSec)
This class represents a WWW compatible URL.