39static const G4String strESC(1,
'\033');
40static const G4String TermColorString[8] = {strESC +
"[30m", strESC +
"[31m", strESC +
"[32m",
41 strESC +
"[33m", strESC +
"[34m", strESC +
"[35m", strESC +
"[36m", strESC +
"[37m"};
123 if (absPath.length() == 0)
return nullptr;
124 if (absPath[
G4int(absPath.length() - 1)] !=
'/')
return nullptr;
125 if (absPath ==
"/")
return cmdTree;
127 for (std::size_t indx = 1; indx < absPath.length() - 1;) {
128 std::size_t jslash = absPath.find(
'/', indx);
129 if (jslash != G4String::npos) {
130 if (cmdTree !=
nullptr) cmdTree = cmdTree->
GetTree(
G4String(absPath.substr(0, jslash + 1)));
135 if (cmdTree ==
nullptr)
return nullptr;
143 if (apath.empty())
return apath;
152 for (std::size_t indx = 1; indx <= bpath.length() - 1;) {
153 std::size_t jslash = bpath.find(
'/', indx);
154 if (indx == jslash) {
158 if (jslash != G4String::npos) {
159 if (bpath.substr(indx, jslash - indx) ==
"..") {
160 if (absPath ==
"/") {
164 if (absPath.length() >= 2) {
165 absPath.erase(absPath.length() - 1);
166 auto jpre = absPath.rfind(
'/');
167 if (jpre != G4String::npos) absPath.erase(jpre + 1);
170 else if (bpath.substr(indx, jslash - indx) ==
".") {
173 if (jslash != indx || bpath[(
G4int)indx] !=
'/')
174 absPath += bpath.substr(indx, jslash - indx + 1);
191 if (apath.empty())
return apath;
193 auto lstr = (
G4int)apath.length();
197 if (apath[lstr - 1] ==
'/') Qsla =
true;
201 for (
G4int i = lstr - 1; i >= 0; --i) {
202 if (Qsla && apath[i] !=
'/') Qsla =
false;
203 if (apath[i] ==
'/' && ! Qsla) {
209 if (indx == -1)
return apath;
211 if (indx == 0 && lstr == 1) {
217 newPath = newPath.substr(indx + 1, lstr - indx - 1);
229 G4String input = G4StrUtil::strip_copy(dir);
235 auto len = (
G4int)input.length();
236 if (! input.empty()) {
238 for (
G4int i = len - 1; i >= 0; --i) {
239 if (input[i] ==
'/') {
246 if (indx != 0 || len != 1) vcmd = input.substr(indx + 1, len - indx - 1);
250 const G4String& inputpath = vpath + vcmd;
251 if (! vcmd.empty()) {
252 const G4String& tmpstr = inputpath +
"/";
261 if (atree ==
nullptr) {
262 G4cout <<
"<" << input <<
">: No such directory" <<
G4endl;
272 if (Ndir == 0 && Ncmd == 0)
return;
275 for (
G4int idir = 1; idir <= Ndir; idir++) {
279 if (candidate.empty()) {
280 if (vcmd.empty() || fpdir == inputpath) {
287 if (fpdir.find(candidate, 0) == 0) {
295 for (
G4int icmd = 1; icmd <= Ncmd; icmd++) {
299 if (candidate.empty()) {
300 if (vcmd.empty() || fpcmd == inputpath) {
307 if (fpcmd.find(candidate, 0) == 0) {
315 if (! isMatch && candidate.empty())
316 G4cout <<
"<" << input <<
">: No such directory or command" << std::flush;
G4GLOB_DLL std::ostream G4cout
const G4ApplicationState & GetCurrentState() const
G4String GetStateString(const G4ApplicationState &aState) const
static G4StateManager * GetStateManager()
G4int GetCommandEntry() const
G4UIcommand * GetCommand(G4int i)
const G4String & GetPathName() const
G4int GetTreeEntry() const
G4UIcommandTree * GetTree(G4int i)
const G4String & GetCommandName() const
G4UIcommandTree * GetTree() const
static G4UImanager * GetUIpointer()
TermColorIndex directoryColor
virtual void ResetTerminal()
virtual void ListCommand(const G4String &input, const G4String &candidate="") const
G4UIcommandTree * GetCommandTree(const G4String &dir) const
G4String currentCommandDir
TermColorIndex commandColor
virtual void MakePrompt(const char *msg=nullptr)
G4VUIshell(const G4String &prompt="> ")
G4String GetCommandPathTail(const G4String &apath) const
G4String GetAbsCommandDirPath(const G4String &apath) const