51G4bool G4UImanager::doublePrecisionStr =
false;
52G4int G4UImanager::igThreadID = -1;
62G4bool& G4UImanager::fUImanagerHasBeenKilled()
78 if (fUImanager() ==
nullptr) {
79 if (!fUImanagerHasBeenKilled()) {
81 fUImanager()->CreateMessenger();
90 return fMasterUImanager();
99 commandStack =
new std::vector<G4String>;
103void G4UImanager::CreateMessenger()
113 if (bridges !=
nullptr) {
114 for (
auto bridge : *bridges) {
124 delete CoutMessenger;
125 delete UnitsMessenger;
129 fUImanagerHasBeenKilled() =
true;
130 fUImanager() =
nullptr;
131 if (commandStack !=
nullptr) {
132 commandStack->clear();
145 doublePrecisionStr = val;
151 return doublePrecisionStr;
158 savedCommand = treeTop->FindPath(theCommand);
159 if (savedCommand ==
nullptr) {
163 return savedCommand->GetCurrentValue();
170 if (reGet || savedCommand ==
nullptr) {
175 for (
G4int i_thParameter = 0; i_thParameter < parameterNumber; ++i_thParameter) {
176 token = savedToken();
180 if (token[(
size_t)0] ==
'"') {
182 token.append(savedToken(
"\""));
192 if (reGet || savedCommand ==
nullptr) {
195 for (
G4int i = 0; i < (
G4int)savedCommand->GetParameterEntries(); ++i) {
196 if (aParameterName == savedCommand->GetParameter(i)->GetParameterName()) {
209 const char* t = targetParameter;
210 std::istringstream is(t);
220 const char* t = targetParameter;
221 std::istringstream is(t);
232 const char* t = targetParameter;
233 std::istringstream is(t);
244 const char* t = targetParameter;
245 std::istringstream is(t);
253 treeTop->AddNewCommand(newCommand);
255 fMasterUImanager()->AddWorkerCommand(newCommand);
260void G4UImanager::AddWorkerCommand(
G4UIcommand* newCommand)
268 treeTop->RemoveCommand(aCommand);
270 fMasterUImanager()->RemoveWorkerCommand(aCommand);
275void G4UImanager::RemoveWorkerCommand(
G4UIcommand* aCommand)
284 session = batchSession;
289 session = previousSession;
301 c1 += parameterToken();
303 c1 += parameterToken();
305 std::istringstream is(t1);
309 is >> d1 >> d2 >> d3;
310 Loop(mf, vn, d1, d2, d3);
319 for (
G4double d = initialValue; d <= finalValue; d += stepSize) {
320 std::ostringstream os;
327 for (
G4double d = initialValue; d >= finalValue; d += stepSize) {
328 std::ostringstream os;
334 Foreach(macroFile, variableName, cd);
342 const G4String& mf = parameterToken();
343 const G4String& vn = parameterToken();
346 while (!((ca = parameterToken()).empty())) {
351 G4String aliasValue = std::move(c1);
352 if (aliasValue[0] ==
'"') {
354 if (aliasValue.back() ==
'"') {
355 strippedValue = aliasValue.substr(1, aliasValue.length() - 2);
358 strippedValue = aliasValue.substr(1, aliasValue.length() - 1);
360 aliasValue = std::move(strippedValue);
370 G4String candidatesString = candidates;
373 while (!((cd = parameterToken()).empty())) {
381 ed <<
"Loop aborted due to a command execution error - "
382 <<
"error code " << lastRC;
393 std::size_t ia = aCommand.find(
'{');
394 std::size_t iz = aCommand.find(
'#');
395 while ((ia != std::string::npos) && ((iz == std::string::npos) || (ia < iz))) {
398 std::size_t ib = aCommand.find(
'}');
399 if (ib == std::string::npos) {
401 for (std::size_t i = 0; i < ia; ++i) {
405 G4cerr <<
"Unmatched alias parenthesis -- command ignored" <<
G4endl;
409 G4String ps = aCommand.substr(ia + 1, aCommand.length() - (ia + 1));
410 std::size_t ic = ps.find(
'{');
411 std::size_t
id = ps.find(
'}');
412 if (ic != std::string::npos && ic <
id) {
423 subs = aCommand.substr(0, ia);
425 G4String alis = aCommand.substr(ia + 1, ibx - ia - 1);
426 G4String rems = aCommand.substr(ibx + 1, aCommand.length() - ibx);
427 const G4String* alVal = aliasList->FindAlias(alis);
428 if (alVal ==
nullptr) {
429 G4cerr <<
"Alias <" << alis <<
"> not found -- command ignored" <<
G4endl;
433 aCommand = subs + (*alVal) + rems;
434 ia = aCommand.find(
'{');
449 if (aCommand.empty()) {
452 if (verboseLevel != 0) {
454 fLastCommandOutputTreated =
false;
461 std::size_t i = aCommand.find(
' ');
462 if (i != std::string::npos) {
463 commandString = aCommand.substr(0, i);
464 commandParameter = aCommand.substr(i + 1, aCommand.length() - (i + 1));
467 commandString = aCommand;
471 std::size_t len = commandString.length();
475 while (ll < len - 1) {
476 if (commandString.substr(ll, 2) ==
"//") {
479 commandString.erase(ll, 1);
482 a1 = commandString.substr(0, ll);
483 a2 = commandString.substr(ll + 1, len - ll - 1);
484 commandString = a1 + a2;
493 if (isMaster && bridges !=
nullptr) {
494 for (
auto bridge : *bridges) {
495 G4int leng = bridge->DirLength();
496 if (commandString.substr(0, leng) == bridge->DirName()) {
497 return bridge->LocalUI()->ApplyCommand(commandString +
" " + commandParameter);
502 G4UIcommand* targetCommand = treeTop->FindPath(commandString);
503 if (targetCommand ==
nullptr) {
504 if (ignoreCmdNotFound) {
505 if (stackCommandsForBroadcast) {
506 commandStack->push_back(commandString +
" " + commandParameter);
515 commandStack->push_back(commandString +
" " + commandParameter);
523 historyFile << aCommand <<
G4endl;
525 if (
G4int(histVec.size()) >= maxHistSize) {
526 histVec.erase(histVec.begin());
528 histVec.push_back(aCommand);
531 G4int commandFailureCode = targetCommand->
DoIt(commandParameter);
532 if (commandFailureCode == 0) {
534 if (additionalFailureCode > 0) {
537 <<
"Error code : " << additionalFailureCode;
539 commandFailureCode += additionalFailureCode;
542 return commandFailureCode;
555 if (aCommand.empty()) {
561 std::size_t i = aCommand.find(
' ');
562 if (i != std::string::npos) {
563 commandString = aCommand.substr(0, i);
566 commandString = aCommand;
569 return treeTop->FindPath(commandString);
585 historyFile.open((
char*)fileName);
592 saveHistory = historySwitch;
596void G4UImanager::PauseSession(
const char* msg)
599 session->PauseSessionStart(msg);
607 if (comTree !=
nullptr) {
619 G4String targetDir = G4StrUtil::strip_copy(aDirName);
620 if (targetDir.back() !=
'/') {
623 G4UIcommandTree* comTree = treeTop;
624 if (targetDir ==
"/") {
628 while (idx < targetDir.length() - 1) {
629 std::size_t i = targetDir.find(
'/', idx);
630 G4String targetDirString = targetDir.substr(0, i + 1);
631 comTree = comTree->
GetTree(targetDirString);
632 if (comTree ==
nullptr) {
643 if (pauseAtBeginOfEvent) {
647 PauseSession(
"BeginOfEvent");
650 if (pauseAtEndOfEvent) {
654 PauseSession(
"EndOfEvent");
670 std::size_t i = aLine.find(
' ');
671 const G4String& aliasName = aLine.substr(0, i);
672 G4String aliasValue = aLine.substr(i + 1, aLine.length() - (i + 1));
673 if (aliasValue[0] ==
'"') {
675 if (aliasValue.back() ==
'"') {
676 strippedValue = aliasValue.substr(1, aliasValue.length() - 2);
679 strippedValue = aliasValue.substr(1, aliasValue.length() - 1);
681 aliasValue = std::move(strippedValue);
684 aliasList->ChangeAlias(aliasName, aliasValue);
691 G4String targetAlias = G4StrUtil::strip_copy(aL);
692 aliasList->RemoveAlias(targetAlias);
709 G4cerr <<
"Directory <" << dir <<
"> is not found." <<
G4endl;
718 std::size_t idxfirst = 0;
719 std::size_t idxend = 0;
721 while ((idxend = searchPath.find(
':', idxfirst)) != G4String::npos) {
722 pathstring = searchPath.substr(idxfirst, idxend - idxfirst);
723 if (!pathstring.empty()) {
724 searchDirs.push_back(pathstring);
726 idxfirst = idxend + 1;
729 pathstring = searchPath.substr(idxfirst, searchPath.size() - idxfirst);
730 if (!pathstring.empty()) {
731 searchDirs.push_back(std::move(pathstring));
740 fs.open(fname.c_str(), std::ios::in);
753 for (
const auto& searchDir : searchDirs) {
754 const G4String& fullpath = searchDir +
"/" + fname;
755 if (FileFound(fullpath)) {
756 macrofile = fullpath;
766 std::vector<G4String>* returnValue = commandStack;
767 commandStack =
new std::vector<G4String>;
776 "G4UIBridge cannot bridge between same object.");
779 bridges->push_back(brg);
789 threadCout->SetIgnoreCout(igThreadID);
799 threadCout->SetPrefixString(pref);
800 threadCout->SetIgnoreCout(igThreadID);
811 if (fileN ==
"**Screen**") {
812 threadCout->SetCoutFileName(fileN, ifAppend);
815 std::stringstream fn;
816 fn <<
"G4W_" << threadID <<
"_" << fileN;
817 threadCout->SetCoutFileName(fn.str(), ifAppend);
829 if (fileN ==
"**Screen**") {
830 threadCout->SetCerrFileName(fileN, ifAppend);
833 std::stringstream fn;
834 fn <<
"G4W_" << threadID <<
"_" << fileN;
835 threadCout->SetCerrFileName(fn.str(), ifAppend);
846 threadCout->SetPrefixString(s);
856 threadCout->EnableBuffering(flg);
867 threadCout->SetIgnoreCout(tid);
877 threadCout->SetIgnoreInit(flg);
886 while (
auto aBatchSession =
dynamic_cast<G4UIbatch*
>(baseSession)) {
887 auto previousSession = aBatchSession->GetPreviousSession();
888 if (previousSession ==
nullptr) {
890 baseSession = aBatchSession;
895 baseSession = previousSession;
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
@ fIllegalApplicationState
G4GLOB_DLL std::ostream G4cerr
void G4iosSetDestination(G4coutDestination *sink)
G4GLOB_DLL std::ostream G4cout
void G4iosInitialization()
static G4StateManager * GetStateManager()
G4UImanager * LocalUI() const
G4UIcommandTree * GetTree(G4int i)
void AddNewCommand(G4UIcommand *newCommand, G4bool workerThreadOnly=false)
void CreateHTML(const G4String &="")
void RemoveCommand(G4UIcommand *aCommand, G4bool workerThreadOnly=false)
G4bool ToBeBroadcasted() const
virtual G4int DoIt(const G4String ¶meterList)
const G4String & GetFailureDescription()
static G4bool DoublePrecisionStr()
void SetCerrFileName(const G4String &fileN="G4cerr.txt", G4bool ifAppend=true)
void SetCoutDestination(G4UIsession *const value)
static void UseDoublePrecisionStr(G4bool val)
void ForeachS(const char *valueList)
void SetUpForAThread(G4int tId)
std::vector< G4String > * GetCommandStack()
void Foreach(const char *macroFile, const char *variableName, const char *candidates)
G4int ApplyCommand(const char *aCommand)
void SetThreadIgnoreInit(G4bool flg=true)
void CreateHTML(const char *dir="/")
void Loop(const char *macroFile, const char *variableName, G4double initialValue, G4double finalValue, G4double stepSize=1.0)
G4int GetCurrentIntValue(const char *aCommand, G4int parameterNumber=1, G4bool reGet=true)
void SetThreadPrefixString(const G4String &prefix="W")
void LoopS(const char *valueList)
void StoreHistory(const char *fileName="G4history.macro")
void ListCommands(const char *direc)
G4double GetCurrentDoubleValue(const char *aCommand, G4int parameterNumber=1, G4bool reGet=true)
void ExecuteMacroFile(const char *fileName)
void SetCoutFileName(const G4String &fileN="G4cout.txt", G4bool ifAppend=true)
static G4UImanager * GetMasterUIpointer()
G4String GetCurrentStringValue(const char *aCommand, G4int parameterNumber=1, G4bool reGet=true)
void SetUpForSpecialThread(const G4String &aPrefix)
void AddNewCommand(G4UIcommand *newCommand)
G4String GetCurrentValues(const char *aCommand)
void SetThreadIgnore(G4int tid=0)
void SetAlias(const char *aliasLine)
G4String FindMacroPath(const G4String &fname) const
void RemoveAlias(const char *aliasName)
G4bool Notify(G4ApplicationState requestedState) override
G4String SolveAlias(const char *aCmd)
void RemoveCommand(G4UIcommand *aCommand)
G4UIcommand * FindCommand(const char *aCommand)
void ParseMacroSearchPath()
static G4UImanager * GetUIpointer()
void RegisterBridge(G4UIbridge *brg)
G4UImanager(const G4UImanager &)=delete
G4UIsession * GetBaseSession() const
void SetThreadUseBuffer(G4bool flg=true)
virtual G4UIsession * SessionStart()
G4int GetLastReturnCode() const
G4VStateDependent(G4bool bottom=false)
void G4SetThreadId(G4int aNewValue)
#define G4ThreadLocalStatic