177 lines
5.5 KiB
C++
177 lines
5.5 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G4UIGainServer.hh,v 1.5 2006/06/29 19:09:21 gunter Exp $
|
|
// $Name: geant4-09-01 $
|
|
//
|
|
|
|
|
|
#ifndef G4UIGainServer_h
|
|
#define G4UIGainServer_h 1
|
|
|
|
#ifndef WIN32
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
//#include <sys/un.h>
|
|
#include <netinet/in.h>
|
|
#include <unistd.h>
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include "globals.hh"
|
|
#include "G4UImanager.hh"
|
|
#include "G4VBasicShell.hh"
|
|
|
|
#define SOCK_NAME "/tmp/socket"
|
|
#define DEFAULT_PORT 40000;
|
|
|
|
enum UImode { terminal_mode , java_mode, tcl_mode };
|
|
enum ChangeOfTree { notChanged=0, added, deleted, addedAndDeleted };
|
|
|
|
// class description:
|
|
//
|
|
// This class is similar to G4UIGAG.
|
|
// While G4UIGAG provides direct connection to GAG via pipe,
|
|
// G4UIGainServer provides socket connection to remote Gain client.
|
|
// Gain = Geant4 adaptive interface for network
|
|
// Its usage is same as G4UIGAG, except that Geant4 application waits
|
|
// a connection from a Gain client.
|
|
|
|
class G4UIGainServer : public G4VBasicShell {
|
|
private:
|
|
G4String prefix;
|
|
G4String promptCharacter;
|
|
G4UImanager* UI;
|
|
UImode uiMode;
|
|
G4String JVersion;
|
|
G4String TVersion;
|
|
|
|
// shell
|
|
// G4VUIshell* shell;
|
|
|
|
// program states
|
|
G4bool iExit;
|
|
G4bool iCont;
|
|
|
|
// need for socket
|
|
int socketD[3];
|
|
int port;
|
|
struct sockaddr_in saddr;
|
|
struct sockaddr_in caddr;
|
|
int len;
|
|
int ret;
|
|
char buf[1024];
|
|
|
|
// --- the following are used by Notify*Update() and *Updated()
|
|
void GetNewTreeStructure( G4UIcommandTree*,int recursiveLevel);
|
|
void GetNewTreeValues( G4UIcommandTree*,int recursiveLevel);
|
|
|
|
std::vector<G4String> previousTreeCommands;
|
|
std::vector<G4String> newTreeCommands;
|
|
std::vector<G4String> previousTreeParams;
|
|
std::vector<G4String> newTreeParams;
|
|
std::vector<G4UIcommand*> previousTreePCP;
|
|
std::vector<G4UIcommand*> newTreePCP;
|
|
|
|
public:
|
|
// These methods are implementation of corresponding virtual methods
|
|
// of G4UIsession class.
|
|
|
|
// A GainServer session "gainSession" is instantiated.
|
|
// G4cout stream is redirected by default to the constructed instance.
|
|
// Usage: G4UIsession * gainSession = new G4UIGainServer();
|
|
// "gainSession" is started.
|
|
// Usage: gainSession->SessionStart();
|
|
// "gainSession" is deleted.
|
|
// Usage: delete gainSession;
|
|
//
|
|
|
|
|
|
G4UIsession* SessionStart();
|
|
void PauseSessionStart(G4String msg);
|
|
G4int ReceiveG4cout(G4String coutString);
|
|
G4int ReceiveG4cerr(G4String cerrString);
|
|
|
|
|
|
|
|
public:
|
|
// G4UIGainServer(G4VUIshell* aShell=0);
|
|
G4UIGainServer();
|
|
//G4UIGainServer(void){}
|
|
~G4UIGainServer();
|
|
//~G4UIGainServer(void){}
|
|
|
|
// void SetPrompt(const G4String& prompt);
|
|
void SessionTerminate();
|
|
void Prompt(G4String);
|
|
G4String GetCommand();
|
|
|
|
private:
|
|
void ExecuteCommand(G4String aCommand);
|
|
G4bool GetHelpChoice(G4int& aInt);
|
|
void ExitHelp();
|
|
bool SetUPServer();
|
|
void WaitingConnection();
|
|
void CloseConnection();
|
|
|
|
void ChangeDirectory(G4String);
|
|
void ListDirectory(G4String);
|
|
void TerminalHelp(G4String);
|
|
G4String ModifyPrefix(G4String);
|
|
G4UIcommandTree * FindDirPath(G4String);
|
|
void ShowCurrent(G4String);
|
|
G4String GetFullPath(G4String);
|
|
|
|
void SendCommandProperties(G4UIcommandTree *);
|
|
void SendParameterProperties(G4UIcommandTree *);
|
|
void SendAParamProperty(G4UIcommand *);
|
|
void SendATclParamProperty(G4UIcommand *);
|
|
void CodeGenJavaTree(G4UIcommandTree *,int recursiveLevel);
|
|
void CodeGenJavaParams(G4UIcommandTree *,int recursiveLevel);
|
|
void CodeGenTclTree(G4UIcommandTree *, int recursiveLevel);
|
|
void CodeGenTclParams(G4UIcommandTree *, int recursiveLevel);
|
|
void SendDisableList(G4UIcommandTree *, int recursiveLevel);
|
|
|
|
void NotifyStateChange(void);
|
|
void NotifyCommandUpdate(void);
|
|
void NotifyParameterUpdate(G4UIcommand *);
|
|
|
|
int CommandUpdated(void);
|
|
void UpdateState(void);
|
|
void UpdateParamVal(void); // if param is updated,
|
|
// call NotifyParameterUpdate()
|
|
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|