// // ******************************************************************** // * 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: G4UIcommandTree.cc,v 1.13 2006/06/29 19:08:58 gunter Exp $ // GEANT4 tag $Name: geant4-09-01-patch-02 $ // #include "G4UIcommandTree.hh" #include "G4StateManager.hh" #include #include "G4ios.hh" G4UIcommandTree::G4UIcommandTree() :guidance(NULL) { } G4UIcommandTree::G4UIcommandTree(const char * thePathName) :guidance(NULL) { pathName = thePathName; } G4UIcommandTree::~G4UIcommandTree() { G4int i; G4int n_treeEntry = tree.size(); for( i=0; i < n_treeEntry; i++ ) { delete tree[i]; } } G4int G4UIcommandTree::operator==(const G4UIcommandTree &right) const { return ( pathName == right.GetPathName() ); } G4int G4UIcommandTree::operator!=(const G4UIcommandTree &right) const { return ( pathName != right.GetPathName() ); } void G4UIcommandTree::AddNewCommand(G4UIcommand *newCommand) { G4String commandPath = newCommand->GetCommandPath(); G4String remainingPath = commandPath; remainingPath.remove(0,pathName.length()); if( remainingPath.isNull() ) { guidance = newCommand; return; } G4int i = remainingPath.first('/'); if( i == G4int(std::string::npos) ) { // Find command G4int n_commandEntry = command.size(); for( G4int i_thCommand = 0; i_thCommand < n_commandEntry; i_thCommand++ ) { if( remainingPath == command[i_thCommand]->GetCommandName() ) { return; } } command.push_back( newCommand ); return; } else { // Find path G4String nextPath = pathName; nextPath.append(remainingPath(0,i+1)); G4int n_treeEntry = tree.size(); for( G4int i_thTree = 0; i_thTree < n_treeEntry; i_thTree++ ) { if( nextPath == tree[i_thTree]->GetPathName() ) { tree[i_thTree]->AddNewCommand( newCommand ); return; } } G4UIcommandTree * newTree = new G4UIcommandTree( nextPath ); tree.push_back( newTree ); newTree->AddNewCommand( newCommand ); return; } } void G4UIcommandTree::RemoveCommand(G4UIcommand *aCommand) { G4String commandPath = aCommand->GetCommandPath(); G4String remainingPath = commandPath; remainingPath.remove(0,pathName.length()); if( remainingPath.isNull() ) { guidance = NULL; } else { G4int i = remainingPath.first('/'); if( i == G4int(std::string::npos) ) { // Find command G4int n_commandEntry = command.size(); for( G4int i_thCommand = 0; i_thCommand < n_commandEntry; i_thCommand++ ) { if( remainingPath == command[i_thCommand]->GetCommandName() ) { command.erase(command.begin()+i_thCommand); break; } } } else { // Find path G4String nextPath = pathName; nextPath.append(remainingPath(0,i+1)); G4int n_treeEntry = tree.size(); for( G4int i_thTree = 0; i_thTree < n_treeEntry; i_thTree++ ) { if( nextPath == tree[i_thTree]->GetPathName() ) { tree[i_thTree]->RemoveCommand( aCommand ); G4int n_commandRemain = tree[i_thTree]->GetCommandEntry(); if(n_commandRemain==0) { G4UIcommandTree * emptyTree = tree[i_thTree]; tree.erase(tree.begin()+i_thTree); delete emptyTree; } break; } } } } } G4UIcommand * G4UIcommandTree::FindPath(const char* commandPath) { G4String remainingPath = commandPath; if( remainingPath.index( pathName ) == std::string::npos ) { return NULL; } remainingPath.remove(0,pathName.length()); G4int i = remainingPath.first('/'); if( i == G4int(std::string::npos) ) { // Find command G4int n_commandEntry = command.size(); for( G4int i_thCommand = 0; i_thCommand < n_commandEntry; i_thCommand++ ) { if( remainingPath == command[i_thCommand]->GetCommandName() ) { return command[i_thCommand]; } } } else { // Find path G4String nextPath = pathName; nextPath.append(remainingPath(0,i+1)); G4int n_treeEntry = tree.size(); for( G4int i_thTree = 0; i_thTree < n_treeEntry; i_thTree++ ) { if( nextPath == tree[i_thTree]->GetPathName() ) { return tree[i_thTree]->FindPath( commandPath ); } } } return NULL; } void G4UIcommandTree::ListCurrent() { G4cout << "Command directory path : " << pathName << G4endl; if( guidance != NULL ) guidance->List(); G4cout << " Sub-directories : " << G4endl; G4int n_treeEntry = tree.size(); for( G4int i_thTree = 0; i_thTree < n_treeEntry; i_thTree++ ) { G4cout << " " << tree[i_thTree]->GetPathName() << " " << tree[i_thTree]->GetTitle() << G4endl; } G4cout << " Commands : " << G4endl; G4int n_commandEntry = command.size(); for( G4int i_thCommand = 0; i_thCommand < n_commandEntry; i_thCommand++ ) { G4cout << " " << command[i_thCommand]->GetCommandName() << " * " << command[i_thCommand]->GetTitle() << G4endl; } } void G4UIcommandTree::ListCurrentWithNum() { G4cout << "Command directory path : " << pathName << G4endl; if( guidance != NULL ) guidance->List(); G4int i = 0; G4cout << " Sub-directories : " << G4endl; G4int n_treeEntry = tree.size(); for( G4int i_thTree = 0; i_thTree < n_treeEntry; i_thTree++ ) { i++; G4cout << " " << i << ") " << tree[i_thTree]->GetPathName() << " " << tree[i_thTree]->GetTitle() << G4endl; } G4cout << " Commands : " << G4endl; G4int n_commandEntry = command.size(); for( G4int i_thCommand = 0; i_thCommand < n_commandEntry; i_thCommand++ ) { i++; G4cout << " " << i << ") " << command[i_thCommand]->GetCommandName() << " * " << command[i_thCommand]->GetTitle() << G4endl; } } void G4UIcommandTree::List() { ListCurrent(); G4int n_commandEntry = command.size(); for( G4int i_thCommand = 0; i_thCommand < n_commandEntry; i_thCommand++ ) { command[i_thCommand]->List(); } G4int n_treeEntry = tree.size(); for( G4int i_thTree = 0; i_thTree < n_treeEntry; i_thTree++ ) { tree[i_thTree]->List(); } } G4String G4UIcommandTree::CreateFileName(const char* pName) { G4String fn = pName; G4int idxs; while((idxs=fn.index("/"))!=G4int(std::string::npos)) { fn(idxs) = '_'; } fn += ".html"; return fn; } G4String G4UIcommandTree::ModStr(const char* strS) { G4String sx; G4String str = strS; for(G4int i=0;i': sx += ">"; break; case '&': sx += "&"; break; default: sx += c; } } return sx; } void G4UIcommandTree::CreateHTML() { G4String ofileName = CreateFileName(pathName); std::ofstream oF(ofileName, std::ios::out); oF << "Commands in " << ModStr(pathName) << "" << G4endl; oF << "

" << ModStr(pathName) << "

" << G4endl; if( guidance != NULL ) { for(G4int i=0;iGetGuidanceEntries();i++) { oF << ModStr(guidance->GetGuidanceLine(i)) << "
" << G4endl; } } oF << "


" << G4endl; oF << "

Sub-directories :

" << G4endl; for( G4int i_thTree = 0; i_thTree < G4int(tree.size()); i_thTree++ ) { oF << "


GetPathName()) << "\">" << ModStr(tree[i_thTree]->GetPathName()) << "" << G4endl; oF << "

" << ModStr(tree[i_thTree]->GetTitle()) << G4endl; tree[i_thTree]->CreateHTML(); } oF << "


" << G4endl; oF << "

Commands :

" << G4endl; for( G4int i_thCommand = 0; i_thCommand < G4int(command.size()); i_thCommand++ ) { G4UIcommand* cmd = command[i_thCommand]; oF << "


" << ModStr(cmd->GetCommandName()); if(cmd->GetParameterEntries()>0) { for(G4int i_thParam=0;i_thParamGetParameterEntries();i_thParam++) { oF << " [" << ModStr(cmd->GetParameter(i_thParam)->GetParameterName()) << "]"; } } oF << "" << G4endl; oF << "

" << G4endl; for(G4int i=0;iGetGuidanceEntries();i++) { oF << ModStr(cmd->GetGuidanceLine(i)) << "
" << G4endl; } if(!(cmd->GetRange()).isNull()) { oF << "

Range : " << ModStr(cmd->GetRange()) << G4endl; } std::vector* availabelStateList = cmd->GetStateList(); if(availabelStateList->size()==6) { oF << "

Available at all Geant4 states." << G4endl; } else { oF << "

Available Geant4 state(s) : "; for(G4int ias=0;iassize());ias++) { oF << G4StateManager::GetStateManager()->GetStateString((*availabelStateList)[ias]) << " " << G4endl; } } if(cmd->GetParameterEntries()>0) { oF << "

Parameters" << G4endl; for(G4int i_thParam=0;i_thParamGetParameterEntries();i_thParam++) { G4UIparameter* prm = cmd->GetParameter(i_thParam); oF << "
" << ModStr(prm->GetParameterName()) << G4endl; oF << "type " << prm->GetParameterType() << G4endl; oF << ""; if(prm->IsOmittable()) { oF << "Omittable : "; if(prm->GetCurrentAsDefault()) { oF << "current value is used as the default value." << G4endl; } else { oF << "default value = " << prm->GetDefaultValue() << G4endl; } } oF << ""; if(!(prm->GetParameterRange()).isNull()) { oF << "Parameter range : " << ModStr(prm->GetParameterRange()) << G4endl; } else if(!(prm->GetParameterCandidates()).isNull()) { oF << "Parameter candidates : " << ModStr(prm->GetParameterCandidates()) << G4endl; } } oF << "
" << G4endl; } } oF << "
" << G4endl; oF.close(); }