source: trunk/source/interfaces/basic/src/G4VUIshell.cc @ 1156

Last change on this file since 1156 was 1156, checked in by garnier, 15 years ago

append qt3 fix

File size: 10.0 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// $Id: G4VUIshell.cc,v 1.10 2007/06/14 05:44:58 kmura Exp $
28// GEANT4 tag $Name:  $
29//
30
31#include "G4UImanager.hh"
32#include "G4UIcommand.hh"
33#include "G4UIcommandTree.hh"
34#include "G4StateManager.hh"
35#include "G4UIcommandStatus.hh"
36#include "G4VUIshell.hh"
37#include "G4UIArrayString.hh"
38
39// terminal color string
40static const G4String strESC= '\033';
41static const G4String TermColorString[8] ={ 
42  strESC+"[30m", strESC+"[31m", strESC+"[32m", strESC+"[33m", 
43  strESC+"[34m", strESC+"[35m", strESC+"[36m", strESC+"[37m"
44};
45
46///////////////////////////////////////////////////////////////////
47G4VUIshell::G4VUIshell(const G4String& prompt)
48  : promptSetting(prompt), promptString(""), nColumn(80), 
49    lsColorFlag(FALSE), directoryColor(BLACK), commandColor(BLACK),
50    currentCommandDir("/")
51///////////////////////////////////////////////////////////////////
52{
53}
54
55/////////////////////////
56G4VUIshell::~G4VUIshell()
57/////////////////////////
58{
59}
60
61////////////////////////////////////////////
62void G4VUIshell::MakePrompt(const char* msg) 
63////////////////////////////////////////////
64{
65  if(promptSetting.length()<=1) {
66    promptString= promptSetting;
67    return;
68  }
69
70  promptString="";
71  G4int i;
72  for(i=0; i<G4int(promptSetting.length())-1; i++){
73    if(promptSetting[(size_t)i]=='%'){
74      switch (promptSetting[(size_t)(i+1)]) {
75      case 's':  // current application status
76        {
77           G4String stateStr;
78           if(msg)
79           { stateStr = msg; }
80           else
81           {
82             G4StateManager* statM= G4StateManager::GetStateManager();
83             stateStr= statM-> GetStateString(statM->GetCurrentState());
84           }
85           promptString.append(stateStr);
86           i++;
87        }
88        break;
89      case '/':  // current working directory
90        promptString.append(currentCommandDir);
91        i++;
92        break;
93      default:
94        promptString.append(G4String(promptSetting[(size_t)i]));
95        break;
96      }           
97    } else {
98      promptString.append(G4String(promptSetting[(size_t)i]));
99    }
100  }
101
102  // append last chaacter
103  if(i == G4int(promptSetting.length())-1) 
104    promptString.append(G4String(promptSetting[(size_t)i]));
105}
106
107
108////////////////////////////////
109void G4VUIshell::ResetTerminal()
110////////////////////////////////
111{
112
113}
114
115// --------------------------------------------------------------------
116//      G4command operations
117// --------------------------------------------------------------------
118////////////////////////////////////////////////////////////////////////
119G4UIcommandTree* G4VUIshell::GetCommandTree(const G4String& input) const
120////////////////////////////////////////////////////////////////////////
121{
122  G4UImanager* UI= G4UImanager::GetUIpointer();
123
124  G4UIcommandTree* cmdTree= UI-> GetTree();  // root tree
125
126  G4String absPath= input; // G4String::strip() CONST !!
127  absPath= GetAbsCommandDirPath(absPath.strip(G4String::both));
128
129  // parsing absolute path ...
130  if(absPath.length()==0) return NULL;
131  if(absPath[absPath.length()-1] != '/') return NULL; // error??
132  if(absPath=="/") return cmdTree;
133
134  for(G4int indx=1; indx<G4int(absPath.length())-1; ) {
135    G4int jslash= absPath.index("/", indx);  // search index begin with "/"
136    if(jslash != G4int(G4String::npos)) {
137      if(cmdTree != NULL)
138        cmdTree= cmdTree-> GetTree(G4String(absPath(0,jslash+1)));
139    }
140    indx= jslash+1;
141  }
142
143  if(cmdTree == NULL) return NULL;
144  else return cmdTree;
145}
146
147//////////////////////////////////////////////////////////////////////
148G4String G4VUIshell::GetAbsCommandDirPath(const G4String& apath) const
149//////////////////////////////////////////////////////////////////////
150{
151  if(apath.empty()) return apath;  // null string
152
153  // if "apath" does not start with "/",
154  //   then it is treared as relative path
155  G4String bpath= apath;
156  if(apath[(size_t)0] != '/') bpath= currentCommandDir + apath;
157
158  // parsing...
159  G4String absPath= "/";
160  for(G4int indx=1; indx<=G4int(bpath.length())-1; ) {
161    G4int jslash= bpath.index("/", indx);  // search index begin with "/"
162    if(jslash != G4int(G4String::npos)) {
163      if(bpath(indx,jslash-indx) == ".."){  // directory up
164        if(absPath.length() >=1) {
165          absPath.remove(absPath.length()-1);  // remove last  "/"
166          G4int jpre= absPath.last('/');
167          if(jpre != G4int(G4String::npos)) absPath.remove(jpre+1);
168        }
169      } else if(bpath(indx,jslash-indx) == "."){  // nothing to do
170      } else { // add
171        if( !(jslash==indx && bpath(indx)=='/') ) // truncate "////"
172          absPath+= bpath(indx, jslash-indx+1);
173          // better to be check directory existence. (it costs!)
174      }
175    } else { // directory ONLY (ignore non-"/" terminated string)
176    }
177    indx= jslash+1;
178  }
179  return  absPath;
180}
181
182
183////////////////////////////////////////////////////////////////////
184G4String G4VUIshell::GetCommandPathTail(const G4String& apath) const
185////////////////////////////////////////////////////////////////////
186{   // xxx/xxx/zzz -> zzz, trancate /// -> /
187  if(apath.empty()) return apath;
188
189  G4int lstr= apath.length();
190
191  // for trancating "/"
192  G4bool Qsla= FALSE;
193  if(apath[(size_t)(lstr-1)]=='/') Qsla= TRUE;
194
195  // searching last '/' from tail
196  G4int indx= -1;
197  for(G4int i=lstr-1; i>=0; i--) {
198    if(Qsla && apath[(size_t)i]!='/') Qsla= FALSE; // break "/" flag!!
199    if(apath[(size_t)i]=='/' && !Qsla) {
200      indx= i;
201      break;
202    } 
203  }
204
205  if(indx==-1) return apath;  // not found
206
207  if(indx==0  && lstr==1) { // "/"
208    G4String nullStr;
209    return nullStr;
210  } else { 
211    //G4String newPath= apath(indx+1,lstr-indx-1);
212    G4String newPath= apath;
213    newPath= newPath(indx+1,lstr-indx-1);
214    return newPath;
215  }
216}
217
218// --------------------------------------------------------------------
219//      shell commands
220// --------------------------------------------------------------------
221/////////////////////////////////////////////////////////////
222void G4VUIshell::ListCommand(const G4String& dir, 
223                             const G4String& candidate) const
224/////////////////////////////////////////////////////////////
225{
226  // specified directpry
227  G4String input= dir; // ...
228  input= input.strip(G4String::both);
229
230  // command tree of "user specified directory"
231  G4String vpath= currentCommandDir;
232  G4String vcmd;
233
234  G4int len= input.length();
235  if(! input.empty()) {
236    G4int indx= -1;
237    for(G4int i=len-1; i>=0; i--) { // search last '/'
238      if(input[(size_t)i]=='/') {
239        indx= i;
240        break;
241      }   
242    }
243    // get abs. path
244    if(indx != -1) vpath= GetAbsCommandDirPath(input(0,indx+1));
245    if(!(indx==0  && len==1)) vcmd= input(indx+1,len-indx-1); // care for "/"
246  }
247
248  // check "vcmd" is directory?
249  G4String inputpath= vpath+vcmd;
250  if(! vcmd.empty()){
251    G4String tmpstr= inputpath + "/";
252    if(GetCommandTree(tmpstr) != NULL) {
253      vpath= tmpstr;
254      vcmd= "";
255    }
256  }
257     
258  // check "vpath" directory exists?
259  G4UIcommandTree* atree= GetCommandTree(vpath); 
260  if(atree == NULL) {
261    G4cout << "<" << input << ">: No such directory" << G4endl;
262    return;
263  }
264
265  // list matched directories/commands
266  G4String stream;
267  G4bool isMatch= FALSE;
268
269  G4int Ndir= atree-> GetTreeEntry();
270  G4int Ncmd= atree-> GetCommandEntry();
271  if(Ndir==0 && Ncmd==0) return;  // no contents
272 
273  // directory ...
274  for(G4int idir=1; idir<=Ndir; idir++) {
275    if(idir==1 && lsColorFlag) stream+= TermColorString[directoryColor];
276    G4String fpdir= atree-> GetTree(idir)-> GetPathName();
277    // matching test
278    if(candidate.empty()) { // list all
279      if(vcmd=="" || fpdir==inputpath) {
280        stream+= GetCommandPathTail(fpdir); stream+= "  ";
281        isMatch= TRUE;
282      }
283    } else { // list only matched with candidate
284      if( fpdir.index(candidate, 0) == 0) {
285        stream+= GetCommandPathTail(fpdir); stream+= "  ";
286      }
287    }
288  }
289 
290  // command ...
291  for(G4int icmd=1; icmd<=Ncmd; icmd++){
292    if(icmd==1 && lsColorFlag) stream+= TermColorString[commandColor];
293    G4String fpcmd= atree-> GetPathName() +
294             atree-> GetCommand(icmd) -> GetCommandName();
295    // matching test
296    if(candidate.empty()) { // list all
297      if(vcmd=="" || fpcmd==inputpath) {
298        stream+= GetCommandPathTail(fpcmd); stream+= "*  ";
299        isMatch= TRUE;
300      }
301    } else {  // list only matched with candidate
302      if( fpcmd.index(candidate, 0) == 0) {
303        stream+= GetCommandPathTail(fpcmd); stream+= "*  ";
304      }
305    }
306  }
307 
308  // waring : not matched
309  if(!isMatch && candidate.empty()) 
310    G4cout << "<" << input
311           << ">: No such directory or command" << std::flush;
312
313  // display
314  G4UIArrayString arrayString(stream);
315  arrayString.Show(nColumn);
316}
317
Note: See TracBrowser for help on using the repository browser.