Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
REveGeomViewer.cxx
Go to the documentation of this file.
1// @(#)root/eve7:$Id$
2// Author: Sergey Linev, 13.12.2018
3
4/*************************************************************************
5 * Copyright (C) 1995-2019, 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
13
14#include <ROOT/REveUtil.hxx> // EveLog()
15#include <ROOT/RLogger.hxx>
16#include <ROOT/RWebWindow.hxx>
17
18#include "TSystem.h"
19#include "TBase64.h"
20#include "TROOT.h"
21#include "TEnv.h"
22#include "THttpServer.h"
23#include "TBufferJSON.h"
24#include "TGeoManager.h"
25
26#include <fstream>
27
28using namespace std::string_literals;
29
30//////////////////////////////////////////////////////////////////////////////////////////////
31/// constructor
32
34{
36 fWebWindow->SetDefaultPage("file:rootui5sys/eve7/geom.html");
37
38 // this is call-back, invoked when message received via websocket
39 fWebWindow->SetDataCallBack([this](unsigned connid, const std::string &arg) { WebWindowCallback(connid, arg); });
40 fWebWindow->SetGeometry(900, 700); // configure predefined window geometry
41 fWebWindow->SetConnLimit(0); // allow any connections numbers at the same time
42 fWebWindow->SetMaxQueueLength(30); // number of allowed entries in the window queue
43
44 fDesc.SetPreferredOffline(gEnv->GetValue("WebGui.PreferredOffline",0) != 0);
46 fDesc.SetBuildShapes(gEnv->GetValue("WebGui.GeomBuildShapes", 1));
47
48 if (mgr) SetGeometry(mgr, volname);
49}
50
51//////////////////////////////////////////////////////////////////////////////////////////////
52/// destructor
53
55{
56
57}
58
59//////////////////////////////////////////////////////////////////////////////////////////////
60/// assign new geometry to the viewer
61
63{
64 fGeoManager = mgr;
65 fSelectedVolume = volname;
66
67 fDesc.Build(mgr, volname);
68
69 Update();
70}
71
72
73/////////////////////////////////////////////////////////////////////////////////
74/// Select visible top volume, all other volumes will be disabled
75
77{
78 if (volname != fSelectedVolume)
79 SetGeometry(fGeoManager, volname);
80}
81
82/////////////////////////////////////////////////////////////////////////////////
83/// Show or update geometry in web window
84/// If web browser already started - just refresh drawing like "reload" button does
85/// If no web window exists or \param always_start_new_browser configured, starts new window
86
87void ROOT::Experimental::REveGeomViewer::Show(const RWebDisplayArgs &args, bool always_start_new_browser)
88{
89 std::string user_args = "";
90 if (!GetShowHierarchy()) user_args = "{ nobrowser: true }";
91 fWebWindow->SetUserArgs(user_args);
92
93 if ((fWebWindow->NumConnections(true) == 0) || always_start_new_browser)
94 fWebWindow->Show(args);
95 else
96 Update();
97}
98
99//////////////////////////////////////////////////////////////////////////////////////////////
100/// Return URL address of web window used for geometry viewer
101
103{
104 if (!fWebWindow) return "";
105 return fWebWindow->GetAddr();
106}
107
108//////////////////////////////////////////////////////////////////////////////////////////////
109/// Update geometry drawings in all web displays
110
112{
113 fWebWindow->Send(0, "RELOAD");
114}
115
116//////////////////////////////////////////////////////////////////////////////////////////////
117/// convert JSON into stack array
118
119std::vector<int> ROOT::Experimental::REveGeomViewer::GetStackFromJson(const std::string &json, bool node_ids)
120{
121 std::vector<int> *stack{nullptr}, res;
122
123 if (TBufferJSON::FromJSON(stack, json.c_str())) {
124 if (node_ids) res = fDesc.MakeStackByIds(*stack);
125 else res = *stack;
126 delete stack;
127 } else {
128 R__LOG_ERROR(EveLog()) << "Fail convert " << json << " into vector<int>";
129 }
130
131 return res;
132}
133
134//////////////////////////////////////////////////////////////////////////////////////////////
135/// Send data for principal geometry draw
136
138{
139 if (!fDesc.HasDrawData())
140 fDesc.CollectVisibles();
141
142 auto &json = fDesc.GetDrawJson();
143
144 R__LOG_DEBUG(0, EveLog()) << "Produce geometry JSON len: " << json.length();
145
146 fWebWindow->Send(connid, json);
147}
148
149//////////////////////////////////////////////////////////////////////////////////////////////
150/// Configures draw option for geometry
151/// Normally has effect before first drawing of the geometry
152/// When geometry displayed, only "axis" and "rotate" options are updated
153
155{
156 fDesc.SetDrawOptions(opt);
157 unsigned connid = fWebWindow->GetConnectionId();
158 if (connid)
159 fWebWindow->Send(connid, "DROPT:"s + opt);
160}
161
162//////////////////////////////////////////////////////////////////////////////////////////////
163/// Produce PNG image of drawn geometry
164/// Drawing should be completed at the moment
165/// Executed asynchronous - method returns immediately, image stored when received from the client
166
168{
169 unsigned connid = fWebWindow->GetConnectionId();
170 if (connid)
171 fWebWindow->Send(connid, "IMAGE:"s + fname);
172}
173
174//////////////////////////////////////////////////////////////////////////////////////////////
175/// receive data from client
176
177void ROOT::Experimental::REveGeomViewer::WebWindowCallback(unsigned connid, const std::string &arg)
178{
179 printf("Recv %s\n", arg.substr(0,100).c_str());
180
181 if (arg == "GETDRAW") {
182
183 SendGeometry(connid);
184
185 } else if (arg == "QUIT_ROOT") {
186
187 fWebWindow->TerminateROOT();
188
189 } else if (arg.compare(0, 7, "SEARCH:") == 0) {
190
191 std::string query = arg.substr(7);
192
193 std::string hjson, json;
194
195 auto nmatches = fDesc.SearchVisibles(query, hjson, json);
196
197 printf("Searches %s found %d hjson %d json %d\n", query.c_str(), nmatches, (int) hjson.length(), (int) json.length());
198
199 // send reply with appropriate header - NOFOUND, FOUND0:, FOUND1:
200 fWebWindow->Send(connid, hjson);
201
202 if (!json.empty())
203 fWebWindow->Send(connid, json);
204
205 } else if (arg.compare(0,4,"GET:") == 0) {
206 // provide exact shape
207
208 auto stack = GetStackFromJson(arg.substr(4));
209
210 auto nodeid = fDesc.FindNodeId(stack);
211
212 std::string json{"SHAPE:"};
213
214 fDesc.ProduceDrawingFor(nodeid, json);
215
216 printf("Produce shape for stack json %d\n", (int) json.length());
217
218 fWebWindow->Send(connid, json);
219
220 } else if (arg.compare(0, 6, "GVREQ:") == 0) {
221
222 auto req = TBufferJSON::FromJSON<REveGeomRequest>(arg.substr(6));
223
224 if (req && (req->oper == "HOVER")) {
225 if ((req->path.size() > 0 ) && (req->path[0] != "OFF"))
226 req->stack = fDesc.MakeStackByPath(req->path);
227 req->path.clear();
228 } else if (req && (req->oper == "HIGHL")) {
229 if (req->stack.size() > 0)
230 req->path = fDesc.MakePathByStack(req->stack);
231 req->stack.clear();
232 } else if (req && (req->oper == "INFO")) {
233
234 auto info = fDesc.MakeNodeInfo(req->path);
235 if (info)
236 fWebWindow->Send(connid, "NINFO:"s + TBufferJSON::ToJSON(info.get(), (fDesc.GetJsonComp() % 5) + TBufferJSON::kSameSuppression).Data());
237
238 // not request but different object type is send
239 req.reset(nullptr);
240
241 } else {
242 req.reset(nullptr);
243 }
244
245 if (req)
246 fWebWindow->Send(connid, "GVRPL:"s + TBufferJSON::ToJSON(req.get(), TBufferJSON::kSkipTypeInfo + TBufferJSON::kNoSpaces).Data());
247
248 } else if ((arg.compare(0, 7, "SETVI0:") == 0) || (arg.compare(0, 7, "SETVI1:") == 0)) {
249 // change visibility for specified nodeid
250
251 auto nodeid = std::stoi(arg.substr(7));
252
253 bool selected = (arg[5] == '1');
254
255 if (fDesc.ChangeNodeVisibility(nodeid, selected)) {
256
257 // send only modified entries, includes all nodes with same volume
258 std::string json0 = fDesc.ProduceModifyReply(nodeid);
259
260 // when visibility disabled, client will automatically remove node from drawing
261 fWebWindow->Send(connid, json0);
262
263 if (selected && fDesc.IsPrincipalEndNode(nodeid)) {
264 // we need to send changes in drawing elements
265 // there can be many elements, which reference same volume
266
267 std::string json{"APPND:"};
268
269 if (fDesc.ProduceDrawingFor(nodeid, json, true)) {
270
271 printf("Send appending JSON %d\n", (int) json.length());
272
273 fWebWindow->Send(connid, json);
274 }
275 } else if (selected) {
276
277 // just resend full geometry
278 // TODO: one can improve here and send only nodes which are not exists on client
279 // TODO: for that one should remember all information send to client
280
281 auto json = fDesc.ProcessBrowserRequest();
282 if (json.length() > 0) fWebWindow->Send(connid, json);
283
284 SendGeometry(connid);
285 }
286 }
287 } else if (arg.compare(0,6, "BRREQ:") == 0) {
288
289 // central place for processing browser requests
290
291 if (!fDesc.IsBuild()) fDesc.Build(fGeoManager);
292
293 auto json = fDesc.ProcessBrowserRequest(arg.substr(6));
294 if (json.length() > 0) fWebWindow->Send(connid, json);
295 } else if (arg.compare(0,6, "IMAGE:") == 0) {
296 auto separ = arg.find("::",6);
297 if (separ == std::string::npos) return;
298
299 std::string fname = arg.substr(6, separ-6);
300 if (fname.empty()) {
301 int cnt = 0;
302 do {
303 fname = "geometry"s;
304 if (cnt++>0) fname += std::to_string(cnt);
305 fname += ".png"s;
306 } while (!gSystem->AccessPathName(fname.c_str()));
307 }
308
309 TString binary = TBase64::Decode(arg.c_str() + separ + 2);
310
311 std::ofstream ofs(fname);
312 ofs.write(binary.Data(), binary.Length());
313 ofs.close();
314
315 printf("Image file %s size %d has been created\n", fname.c_str(), (int) binary.Length());
316
317 } else if (arg.compare(0,4, "CFG:") == 0) {
318
319 if (fDesc.ChangeConfiguration(arg.substr(4)))
320 SendGeometry(connid);
321
322 } else if (arg == "RELOAD") {
323
324 SendGeometry(connid);
325 }
326}
#define R__LOG_ERROR(...)
Definition RLogger.hxx:362
#define R__LOG_DEBUG(DEBUGLEVEL,...)
Definition RLogger.hxx:365
R__EXTERN TEnv * gEnv
Definition TEnv.h:171
R__EXTERN TSystem * gSystem
Definition TSystem.h:559
void SetJsonComp(int comp=0)
Set JSON compression level for data transfer.
void SetBuildShapes(int lvl=1)
Instruct to build binary 3D model already on the server (true) or send TGeoShape as is to client,...
void SetPreferredOffline(bool on)
Set preference of offline operations.
void SaveImage(const std::string &fname="geometry.png")
Produce PNG image of drawn geometry Drawing should be completed at the moment Executed asynchronous -...
void SelectVolume(const std::string &volname)
Select visible top volume, all other volumes will be disabled.
void Update()
Update geometry drawings in all web displays.
void SendGeometry(unsigned connid)
Send data for principal geometry draw.
std::string GetWindowAddr() const
Return URL address of web window used for geometry viewer.
std::shared_ptr< RWebWindow > fWebWindow
! web window to show geometry
REveGeomDescription fDesc
! geometry description, send to the client as first message
REveGeomViewer(TGeoManager *mgr=nullptr, const std::string &volname="")
constructor
void WebWindowCallback(unsigned connid, const std::string &arg)
receive data from client
std::vector< int > GetStackFromJson(const std::string &json, bool node_ids=false)
convert JSON into stack array
void SetDrawOptions(const std::string &opt)
Configures draw option for geometry Normally has effect before first drawing of the geometry When geo...
void SetGeometry(TGeoManager *mgr, const std::string &volname="")
assign new geometry to the viewer
void Show(const RWebDisplayArgs &args="", bool always_start_new_browser=false)
Show or update geometry in web window If web browser already started - just refresh drawing like "rel...
Holds different arguments for starting browser with RWebDisplayHandle::Display() method.
static std::shared_ptr< RWebWindow > Create()
Create new RWebWindow Using default RWebWindowsManager.
static TString Decode(const char *data)
Decode a base64 string date into a generic TString.
Definition TBase64.cxx:131
static TString ToJSON(const T *obj, Int_t compact=0, const char *member_name=nullptr)
Definition TBufferJSON.h:75
@ kNoSpaces
no new lines plus remove all spaces around "," and ":" symbols
Definition TBufferJSON.h:39
@ kSameSuppression
zero suppression plus compress many similar values together
Definition TBufferJSON.h:45
static Bool_t FromJSON(T *&obj, const char *json)
Definition TBufferJSON.h:81
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
Definition TEnv.cxx:491
The manager class for any TGeo geometry.
Definition TGeoManager.h:45
Basic string class.
Definition TString.h:136
Ssiz_t Length() const
Definition TString.h:410
const char * Data() const
Definition TString.h:369
virtual Bool_t AccessPathName(const char *path, EAccessMode mode=kFileExists)
Returns FALSE if one can access a file using the specified access mode.
Definition TSystem.cxx:1294
RLogChannel & EveLog()
Log channel for Eve diagnostics.
Definition REveUtil.cxx:36