Files
geant4/source/interfaces/common/include/G4VBasicShell.hh
T
2016-06-08 15:09:25 +02:00

77 lines
2.2 KiB
C++

// This code implementation is the intellectual property of
// the RD44 GEANT4 collaboration.
//
// By copying, distributing or modifying the Program (or any work
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4VBasicShell.hh,v 1.3 1999/04/16 10:06:05 barrand Exp $
// GEANT4 tag $Name: geant4-00-01 $
//
#ifndef G4VBasicShell_H
#define G4VBasicShell_H 1
class G4UIcommandTree;
class G4UIcommand;
#include "G4UIsession.hh"
#include "globals.hh"
class G4VBasicShell : public G4UIsession
{
public:
G4VBasicShell();
virtual ~G4VBasicShell();
virtual G4UIsession* SessionStart() = 0;
// null should be returned for interactive session
virtual void PauseSessionStart(G4String Prompt) = 0;
// Prompt string can be ignored
protected:
G4String ModifyToFullPathCommand(const char* aCommandLine);
// convert "BeamOn 10" to "/run/BeamOn 10" if the
// current working directory is "/run/"
G4String GetCurrentWorkingDirectory();
// directory string starts with '/' and ends with '/'
G4bool ChangeDirectory(const char* newDir);
// change directory to newDir
// false will be returned if the target directory doesn't exist
G4UIcommandTree* FindDirectory(const char* dirName);
// find G4UIcommandTree object
// null returned if the taregt does not exist
G4UIcommand* FindCommand(const char* commandName);
// find G4UIcommand object
// null returned if the target does not exist
G4String Complete(G4String);
// command completion
G4String FindMatchingPath(G4UIcommandTree*,G4String);
/////////////////////////////////////////////
// Methods involving an interactive G4cout //
/////////////////////////////////////////////
virtual void ExecuteCommand(G4String);
virtual G4bool GetHelpChoice(G4int&) = 0;
virtual void ExitHelp() = 0;
void ApplyShellCommand(G4String,G4bool&,G4bool&);
void ShowCurrent(G4String);
void ChangeDirectoryCommand(G4String);
void ListDirectory(G4String);
void TerminalHelp(G4String);
private:
G4String currentDirectory;
G4String ModifyPath(G4String tempPath);
};
#endif