31#if defined(G4UI_BUILD_QT_SESSION)
36#if defined(G4UI_BUILD_XM_SESSION)
40#if defined(G4UI_BUILD_WIN32_SESSION)
51#if defined(G4UI_BUILD_QT_SESSION)
52static const G4bool qt_build =
true;
54static const G4bool qt_build =
false;
57#if defined(G4UI_BUILD_XM_SESSION)
58static const G4bool xm_build =
true;
60static const G4bool xm_build =
false;
63#if defined(G4UI_BUILD_WIN32_SESSION)
64static const G4bool win32_build =
true;
66static const G4bool win32_build =
false;
70static const G4bool tcsh_build =
true;
72static const G4bool tcsh_build =
false;
75#define DISCARD_PARAMETER(p) (void)p
79 : selected(kNone), session(nullptr), shell(nullptr), isGUI(false), verbose(true)
82 G4cout <<
"Available UI session types: [ ";
83 if (qt_build)
G4cout <<
"Qt, ";
84 if (xm_build)
G4cout <<
"Xm, ";
85 if (win32_build)
G4cout <<
"Win32, ";
86 if (tcsh_build)
G4cout <<
"tcsh, ";
92 G4String stype = G4StrUtil::to_lower_copy(type);
93 if (! type.empty()) SelectSessionByArg(stype);
96 if (selected == kNone) SelectSessionByEnv();
99 if (selected == kNone) {
102 std::size_t islash = appinput.find_last_of(
"/\\");
103 if (islash == G4String::npos)
106 appname = appinput.substr(islash + 1, appinput.size() - islash - 1);
108 SelectSessionByFile(appname);
112 if (selected == kNone) SelectSessionByBestGuess();
117#if defined(G4UI_BUILD_QT_SESSION)
118 session =
new G4UIQt(argc, argv);
123#if defined(G4UI_BUILD_XM_SESSION)
124 session =
new G4UIXm(argc, argv);
129#if defined(G4UI_BUILD_WIN32_SESSION)
137#if ! (defined(WIN32) || defined(__MINGW32__))
154 if (session ==
nullptr) {
156 "Specified session type is not build in your system,\n"
157 "or no session type is specified.\n"
158 "A fallback session type is used.");
172void G4UIExecutive::SelectSessionByArg(
const G4String& stype)
174 if (qt_build && stype ==
"qt")
176 else if (xm_build && stype ==
"xm")
178 else if (win32_build && stype ==
"win32")
180 else if (tcsh_build && stype ==
"tcsh")
182 else if (stype ==
"csh")
187void G4UIExecutive::SelectSessionByEnv()
189 if (qt_build && (std::getenv(
"G4UI_USE_QT") !=
nullptr))
191 else if (xm_build && (std::getenv(
"G4UI_USE_XM") !=
nullptr))
193 else if (win32_build && (std::getenv(
"G4UI_USE_WIN32") !=
nullptr))
195 else if (tcsh_build && (std::getenv(
"G4UI_USE_TCSH") !=
nullptr))
200void G4UIExecutive::SelectSessionByFile(
const G4String& appname)
202 const char* path = std::getenv(
"HOME");
203 if (path ==
nullptr)
return;
204 G4String homedir = path;
207 G4String fname = homedir +
"/.g4session";
209 G4String fname = homedir +
"\\.g4session";
212 std::ifstream fsession;
217 char linebuf[BUFSIZE];
219 fsession.open(fname, std::ios::in);
221 G4String default_session =
"";
224 while (fsession.good()) {
225 if (fsession.eof())
break;
226 fsession.getline(linebuf, BUFSIZE);
227 const G4String& aline = G4StrUtil::strip_copy(linebuf);
228 if (aline[0] ==
'#')
continue;
229 if (aline.empty())
continue;
231 default_session = aline;
233 size_t idx = aline.find_first_of(
' ');
234 if (idx == G4String::npos)
break;
235 G4String aname = aline.substr(0, idx);
236 idx = aline.find_first_not_of(
' ', idx);
237 if (idx == G4String::npos)
break;
238 const G4String& sname = aline.substr(idx, aline.size() - idx);
239 sessionMap[aname] = sname;
246 auto it = sessionMap.find(appname);
247 if (it != sessionMap.end())
248 stype = sessionMap[appname];
250 stype = std::move(default_session);
251 G4StrUtil::to_lower(stype);
254 if (qt_build && stype ==
"qt")
256 else if (xm_build && stype ==
"xm")
258 else if (win32_build && stype ==
"win32")
260 else if (tcsh_build && stype ==
"tcsh")
262 else if (stype ==
"csh")
267void G4UIExecutive::SelectSessionByBestGuess()
271 else if (win32_build)
282 if (shell !=
nullptr) shell->SetPrompt(prompt);
288 if (shell !=
nullptr) shell->SetLsColor(dirColor, cmdColor);
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
#define DISCARD_PARAMETER(p)
G4GLOB_DLL std::ostream G4cout
void SetPrompt(const G4String &prompt)
G4UIExecutive(G4int argc, char **argv, const G4String &type="")
void SetLsColor(TermColorIndex dirColor, TermColorIndex cmdColor)