16std::shared_ptr<ROOT::RWebWindow> window;
24auto start_tm = std::chrono::high_resolution_clock::now();
29void ProcessData(
unsigned connid,
const std::string &arg)
31 if (arg.find(
"PING:") == 0) {
32 window->Send(connid, arg);
33 }
else if (arg ==
"first") {
35 firstmsg_tm = std::chrono::high_resolution_clock::now();
36 window->Send(connid, std::string(
"CLIENTS:") + std::to_string(
num_clients));
37 }
else if (arg.find(
"SHOW:") == 0) {
38 std::string
msg = arg.substr(5);
40 std::cout <<
msg << std::endl;
41 if (
msg.find(
"Cnt:") == 0) {
42 int counter = std::stoi(
msg.substr(4));
47 auto p =
msg.find(
"round-trip:");
50 }
else if (arg ==
"halt") {
53 window->TerminateROOT();
127 auto pos =
fname.find(
"ping.cxx");
132 fname.append(
"ping.html");
133 window->SetDefaultPage(
"file:" +
fname);
136 window->SetGeometry(300, 500);
140 window->SetDataCallBack(ProcessData);
144 window->UseServerThreads();
147 window->StartThread();
153 std::cout <<
"Window url is: " << window->GetUrl(
true) << std::endl;
161 stop_tm = std::chrono::high_resolution_clock::now();
166 std::cout <<
"PING-PONG TEST COMPLETED " <<
round_trip;
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
winID h TVirtualViewer3D TVirtualGLPainter p
static std::shared_ptr< RWebWindow > Create()
Create new RWebWindow Using default RWebWindowsManager.
virtual void SetValue(const char *name, const char *value, EEnvLevel level=kEnvChange, const char *type=nullptr)
Set the value of a resource or create a new resource.