45 pathName = thePathName;
51 for (
auto& i : tree) {
72 G4String remainingPath = commandPath;
73 remainingPath.erase(0, pathName.length());
74 if (remainingPath.empty()) {
75 if (guidance ==
nullptr) {
76 guidance = newCommand;
78 broadcastCommands =
false;
80 if (workerThreadOnly) {
87 if (guidance !=
nullptr) {
91 std::size_t i = remainingPath.find(
'/');
92 if (i == std::string::npos) {
94 std::size_t n_commandEntry = command.size();
95 for (std::size_t i_thCommand = 0; i_thCommand < n_commandEntry; ++i_thCommand) {
96 if (remainingPath == command[i_thCommand]->GetCommandName()) {
100 ed <<
"Command <" << commandPath <<
"> already exist. New command is not added.";
101 G4Exception(
"G4UIcommandTree::AddNewCommand",
"UI_ComTree_001",
108 if (!broadcastCommands) {
111 if (workerThreadOnly) {
115 auto j = command.cbegin();
116 for (; j != command.cend(); ++j) {
121 command.insert(j, newCommand);
124 command.push_back(newCommand);
131 nextPath.append(remainingPath.substr(0, i + 1));
132 std::size_t n_treeEntry = tree.size();
133 for (std::size_t i_thTree = 0; i_thTree < n_treeEntry; ++i_thTree) {
135 if (!broadcastCommands) {
138 tree[i_thTree]->AddNewCommand(newCommand, workerThreadOnly);
145 auto j = tree.cbegin();
146 for (; j != tree.cend(); ++j) {
147 if (newTree->GetPathName() < (*j)->GetPathName()) {
151 tree.insert(j, newTree);
154 tree.push_back(newTree);
156 if (!broadcastCommands) {
162 newTree->AddNewCommand(newCommand, workerThreadOnly);
173 commandPath.erase(0, pathName.length());
174 if (commandPath.empty()) {
178 std::size_t i = commandPath.find(
'/');
179 if (i == std::string::npos) {
181 std::size_t n_commandEntry = command.size();
182 for (std::size_t i_thCommand = 0; i_thCommand < n_commandEntry; ++i_thCommand) {
183 if (commandPath == command[i_thCommand]->GetCommandName()) {
184 command.erase(command.begin() + i_thCommand);
192 nextPath.append(commandPath.substr(0, i + 1));
193 std::size_t n_treeEntry = tree.size();
194 for (std::size_t i_thTree = 0; i_thTree < n_treeEntry; ++i_thTree) {
196 tree[i_thTree]->RemoveCommand(aCommand);
197 G4int n_commandRemain = tree[i_thTree]->GetCommandEntry();
198 G4int n_treeRemain = tree[i_thTree]->GetTreeEntry();
199 if (n_commandRemain == 0 && n_treeRemain == 0) {
201 tree.erase(tree.begin() + i_thTree);
216 G4String remainingPath = commandPath;
217 if (remainingPath.find(pathName) == std::string::npos) {
220 remainingPath.erase(0, pathName.length());
221 std::size_t i = remainingPath.find(
'/');
222 if (i == std::string::npos) {
224 std::size_t n_commandEntry = command.size();
225 for (std::size_t i_thCommand = 0; i_thCommand < n_commandEntry; ++i_thCommand) {
226 if (remainingPath == command[i_thCommand]->GetCommandName()) {
227 return command[i_thCommand];
234 nextPath.append(remainingPath.substr(0, i + 1));
235 std::size_t n_treeEntry = tree.size();
236 for (std::size_t i_thTree = 0; i_thTree < n_treeEntry; ++i_thTree) {
238 return tree[i_thTree]->FindPath(commandPath);
252 G4String remainingPath = commandPath;
253 if (remainingPath.find(pathName) == std::string::npos) {
256 remainingPath.erase(0, pathName.length());
257 std::size_t i = remainingPath.find(
'/');
258 if (i != std::string::npos) {
261 nextPath.append(remainingPath.substr(0, i + 1));
262 std::size_t n_treeEntry = tree.size();
263 for (std::size_t i_thTree = 0; i_thTree < n_treeEntry; ++i_thTree) {
264 if (tree[i_thTree]->
GetPathName() == commandPath) {
265 return tree[i_thTree];
268 return tree[i_thTree]->FindCommandTree(commandPath);
282 G4String remainingPath = aCommandPath;
287 auto jpre = pName.rfind(
'/');
288 if (jpre != G4String::npos) {
289 pName.erase(jpre + 1);
293 if (aTree ==
nullptr) {
297 if (pName.find(pName) == std::string::npos) {
301 std::vector<G4String> paths;
311 for (
G4int idir = 1; idir <= Ndir; ++idir) {
314 if (fpdir.find(remainingPath, 0) == 0) {
316 matchingPath = fpdir;
322 paths.push_back(fpdir);
326 if (paths.size() >= 2) {
328 for (
const auto& path : paths) {
334 std::vector<G4String> commands;
336 for (
G4int icmd = 1; icmd <= Ncmd; ++icmd) {
339 if (fpcmd.find(remainingPath, 0) == 0) {
341 matchingPath = fpcmd +
" ";
344 strtmp = fpcmd +
" ";
348 commands.emplace_back(fpcmd +
" ");
352 if (commands.size() >= 2) {
354 for (
const auto& matched : commands) {
365 std::size_t nlen1 = str1.length();
366 std::size_t nlen2 = str2.length();
368 std::size_t nmin = nlen1 < nlen2 ? nlen1 : nlen2;
372 if (str1[i] == str2[i]) {
373 strMatched += str1[i];
386 G4cout <<
"Command directory path : " << pathName <<
G4endl;
387 if (guidance !=
nullptr) {
391 std::size_t n_treeEntry = tree.size();
392 for (std::size_t i_thTree = 0; i_thTree < n_treeEntry; ++i_thTree) {
393 G4cout <<
" " << tree[i_thTree]->GetPathName();
395 && tree[i_thTree]->
GetGuidance()->IsWorkerThreadOnly())
405 std::size_t n_commandEntry = command.size();
406 for (std::size_t i_thCommand = 0; i_thCommand < n_commandEntry; ++i_thCommand) {
407 G4cout <<
" " << command[i_thCommand]->GetCommandName();
408 if (command[i_thCommand]->IsWorkerThreadOnly()) {
421 G4cout <<
"Command directory path : " << pathName <<
G4endl;
422 if (guidance !=
nullptr) {
427 std::size_t n_treeEntry = tree.size();
428 for (std::size_t i_thTree = 0; i_thTree < n_treeEntry; ++i_thTree) {
430 G4cout <<
" " << i <<
") " << tree[i_thTree]->GetPathName() <<
" "
431 << tree[i_thTree]->GetTitle() <<
G4endl;
434 std::size_t n_commandEntry = command.size();
435 for (std::size_t i_thCommand = 0; i_thCommand < n_commandEntry; ++i_thCommand) {
437 G4cout <<
" " << i <<
") " << command[i_thCommand]->GetCommandName() <<
" * "
438 << command[i_thCommand]->GetTitle() <<
G4endl;
446 std::size_t n_commandEntry = command.size();
447 for (std::size_t i_thCommand = 0; i_thCommand < n_commandEntry; ++i_thCommand) {
448 command[i_thCommand]->List();
450 std::size_t n_treeEntry = tree.size();
451 for (std::size_t i_thTree = 0; i_thTree < n_treeEntry; ++i_thTree) {
452 tree[i_thTree]->List();
457G4String G4UIcommandTree::CreateFileName(
const char* pName)
461 while ((idxs = fn.find(
'/')) != std::string::npos) {
462 fn[(
G4int)idxs] =
'_';
469G4String G4UIcommandTree::ModStr(
const char* strS)
473 for (
G4int i = 0; i <
G4int(str.length()); ++i) {
495 G4String ofileName = CreateFileName(pathName);
496 std::ofstream oF(ofileName, std::ios::out);
498 oF <<
"<html><head><title>Commands in " << ModStr(pathName) <<
"</title></head>" <<
G4endl;
500 table,table td,table th { \
501 border:1px solid #eee \
503 table td,table th { \
510 text-decoration:none; \
511 transition-duration:0.3s \
517 border-collapse:collapse; \
524 letter-spacing:-1px; \
525 line-height:1.15em; \
526 margin-bottom:0.5em; \
527 word-wrap:break-word \
532 letter-spacing:-1px; \
533 line-height:1.15em; \
534 margin-bottom:0.5em; \
535 word-wrap:break-word \
541 padding:15px 0 15px 0; \
542 border-bottom:2px #eee solid; \
543 word-wrap:break-word \
550 -webkit-box-sizing:border-box; \
551 -moz-box-sizing:border-box; \
552 -ms-box-sizing:border-box; \
553 box-sizing:border-box; \
559 display:inline-block; \
560 background-color:#fff; \
561 padding: 25px 35px 20px 30px; \
562 -webkit-box-sizing:border-box; \
563 -moz-box-sizing:border-box; \
564 -ms-box-sizing:border-box; \
565 box-sizing:border-box \
569 oF <<
"<body bgcolor=\"#ffffff\">" <<
G4endl;
572 if (createHTMLTreeLevel == 0) {
573 oF <<
"<div class=\"sidebar\">" << sideBar <<
"</div>" <<
G4endl;
576 oF <<
"<div class=\"context\">";
577 oF <<
"<h1>" << ModStr(pathName) <<
"</h1>" <<
G4endl;
579 if (guidance !=
nullptr) {
580 for (
G4int i = 0; i < (
G4int)guidance->GetGuidanceEntries(); ++i) {
581 oF << ModStr(guidance->GetGuidanceLine(i)) <<
"<br>" <<
G4endl;
587 menu +=
"<h2>Sub-directories </h2><table>";
588 newSideBar +=
"<h2><a href=\"" + ofileName +
"\">Top level </a></h2><table>";
590 for (
auto& i_thTree : tree) {
591 newSideBar +=
"<tr><td><a href=\"" + CreateFileName(i_thTree->GetPathName()) +
"\">"
592 + ModStr(i_thTree->GetPathName()) +
"</a>";
595 for (
auto& i_thTree : tree) {
596 menu +=
"<tr><td><a href=\"" + CreateFileName(i_thTree->GetPathName()) +
"\">"
597 + ModStr(i_thTree->GetPathName()) +
"</a>";
598 menu +=
"</td><td>" + ModStr(i_thTree->GetTitle()) +
"</tr>";
601 newSideBar +=
"</table>";
602 for (
auto& i_thTree : tree) {
603 createHTMLTreeLevel++;
604 i_thTree->CreateHTML(newSideBar);
605 createHTMLTreeLevel--;
610 if (!command.empty()) {
611 oF <<
"<h2>Commands </h2>" <<
G4endl;
614 oF <<
"<table>" <<
G4endl;
615 for (std::size_t i_thCommand = 0; i_thCommand < command.size(); ++i_thCommand) {
617 oF <<
"<tr><td><a href=\"#c" << i_thCommand <<
"\">" << ModStr(cmd->
GetCommandName());
618 oF <<
"</a></td></tr>" <<
G4endl;
620 oF <<
"</table>" <<
G4endl;
621 for (std::size_t i_thCommand = 0; i_thCommand < command.size(); ++i_thCommand) {
623 oF <<
"<h3 id=\"c" << i_thCommand <<
"\">" << ModStr(cmd->
GetCommandName());
637 std::vector<G4ApplicationState>* availabelStateList = cmd->
GetStateList();
638 if (availabelStateList->size() == 6) {
639 oF <<
"<p>Available at all Geant4 states." <<
G4endl;
642 oF <<
"<p>Available Geant4 state(s) : ";
643 for (
auto& ias : *availabelStateList) {
648 oF <<
"<p>Parameters<table border=1>" <<
G4endl;
655 oF <<
"Omittable : ";
657 oF <<
"current value is used as the default value." <<
G4endl;
671 oF <<
"</table>" <<
G4endl;
675 oF <<
"</div></body></html>" <<
G4endl;
683 for (
auto& i : tree) {
684 if (comName == i->GetPathName()) {
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4GLOB_DLL std::ostream G4cout
G4String GetStateString(const G4ApplicationState &aState) const
static G4StateManager * GetStateManager()
G4bool operator!=(const G4UIcommandTree &right) const
G4int GetCommandEntry() const
G4UIcommandTree()=default
const G4UIcommand * GetGuidance() const
G4UIcommand * GetCommand(G4int i)
const G4String & GetPathName() const
G4int GetTreeEntry() const
G4UIcommandTree * GetTree(G4int i)
G4bool operator==(const G4UIcommandTree &right) const
void AddNewCommand(G4UIcommand *newCommand, G4bool workerThreadOnly=false)
G4UIcommandTree * FindCommandTree(const char *commandPath)
void ListCurrentWithNum() const
G4String CompleteCommandPath(const G4String &commandPath)
G4String GetFirstMatchedString(const G4String &, const G4String &) const
void CreateHTML(const G4String &="")
G4UIcommand * FindPath(const char *commandPath) const
void RemoveCommand(G4UIcommand *aCommand, G4bool workerThreadOnly=false)
void SetToBeBroadcasted(G4bool val)
G4bool IsWorkerThreadOnly() const
std::size_t GetParameterEntries() const
const G4String & GetGuidanceLine(G4int i) const
G4UIparameter * GetParameter(G4int i) const
G4bool ToBeBroadcasted() const
const G4String & GetCommandPath() const
std::size_t GetGuidanceEntries() const
std::vector< G4ApplicationState > * GetStateList()
void SetWorkerThreadOnly(G4bool val=true)
const G4String & GetCommandName() const
const G4String & GetRange() const
void SetDefaultSortFlag(G4bool val)
static G4UImanager * GetUIpointer()
const G4String & GetParameterCandidates() const
G4bool IsOmittable() const
const G4String & GetParameterRange() const
G4bool GetCurrentAsDefault() const
char GetParameterType() const
const G4String & GetParameterName() const
const G4String & GetDefaultValue() const