Chaste Release::3.1
|
#include <OutputFileHandler.hpp>
Public Member Functions | |
OutputFileHandler (const std::string &rDirectory, bool cleanOutputDirectory=true) | |
OutputFileHandler (const FileFinder &rDirectory, bool cleanOutputDirectory=true) | |
std::string | GetOutputDirectoryFullPath () const |
void | SetArchiveDirectory () const |
out_stream | OpenOutputFile (const std::string &rFileName, std::ios_base::openmode mode=std::ios::out|std::ios::trunc) const |
out_stream | OpenOutputFile (const std::string &rFileName, unsigned number, const std::string &rFileFormat, std::ios_base::openmode mode=std::ios::out|std::ios::trunc) const |
FileFinder | CopyFileTo (const FileFinder &rSourceFile) const |
FileFinder | FindFile (std::string leafName) const |
Static Public Member Functions | |
static std::string | GetChasteTestOutputDirectory () |
Static Public Attributes | |
static const std::string | SIG_FILE_NAME |
Private Member Functions | |
void | CommonConstructor (const std::string &rDirectory, bool cleanOutputDirectory) |
std::string | MakeFoldersAndReturnFullPath (const std::string &rDirectory) const |
Static Private Member Functions | |
static void | AddTrailingSlash (std::string &rDirectory) |
Private Attributes | |
std::string | mDirectory |
The directory to store output files in (always ends in "/") |
This file abstracts stuff that needs to be done when creating output files for tests. It defines some helpful functions, so that things that are otherwise repeated in lots of places are just done here.
Definition at line 54 of file OutputFileHandler.hpp.
OutputFileHandler::OutputFileHandler | ( | const std::string & | rDirectory, |
bool | cleanOutputDirectory = true |
||
) |
Create an OutputFileHandler that will create output files in the given directory. The directory name should be relative to the place where Chaste test output is stored. If the user needs to know where this is, use the GetChasteTestOutputDirectory method.
Will check that the directory exists and create it if needed.
rDirectory | the directory to put output files in. |
cleanOutputDirectory | whether to remove any existing files in the output directory |
Definition at line 85 of file OutputFileHandler.cpp.
References CommonConstructor().
OutputFileHandler::OutputFileHandler | ( | const FileFinder & | rDirectory, |
bool | cleanOutputDirectory = true |
||
) |
Create an OutputFileHandler that will create output files in the given directory. This must be located inside the folder where Chaste test output is stored, and will typically be obtained with the FindFile method of this class from a parent handler.
Will check that the directory exists and create it if needed.
rDirectory | the directory to put output files in |
cleanOutputDirectory | whether to remove any existing files in the output directory |
Definition at line 92 of file OutputFileHandler.cpp.
References RelativeTo::ChasteTestOutput, CommonConstructor(), EXCEPTION, FileFinder::GetAbsolutePath(), and FileFinder::GetRelativePath().
void OutputFileHandler::AddTrailingSlash | ( | std::string & | rDirectory | ) | [static, private] |
Takes a reference to a string and adds a trailing slash if one is not already present
rDirectory | The directory name to add a trailing slash to. |
Definition at line 246 of file OutputFileHandler.cpp.
Referenced by MakeFoldersAndReturnFullPath().
void OutputFileHandler::CommonConstructor | ( | const std::string & | rDirectory, |
bool | cleanOutputDirectory | ||
) | [private] |
Functionality common to both constructors.
rDirectory | relative path to the directory to put output files in |
cleanOutputDirectory | whether to remove any existing files in the output directory |
Definition at line 111 of file OutputFileHandler.cpp.
References RelativeTo::Absolute, PetscTools::AmMaster(), PetscTools::Barrier(), EXCEPTION, FileFinder::Exists(), FileFinder::IsAbsolutePath(), MakeFoldersAndReturnFullPath(), mDirectory, and SIG_FILE_NAME.
Referenced by OutputFileHandler().
FileFinder OutputFileHandler::CopyFileTo | ( | const FileFinder & | rSourceFile | ) | const |
Copy the given file to this output directory.
rSourceFile | the file to copy |
Definition at line 255 of file OutputFileHandler.cpp.
References RelativeTo::Absolute, PetscTools::AmMaster(), PetscTools::Barrier(), EXCEPTION, FileFinder::GetAbsolutePath(), GetOutputDirectoryFullPath(), FileFinder::IsFile(), and TERMINATE.
Referenced by CellMLLoader::LoadCellMLFile().
FileFinder OutputFileHandler::FindFile | ( | std::string | leafName | ) | const |
Get a FileFinder for a file in this output directory.
leafName | the name of the file to find |
Definition at line 279 of file OutputFileHandler.cpp.
References RelativeTo::Absolute, and GetOutputDirectoryFullPath().
Referenced by CellMLLoader::LoadCellMLFile().
std::string OutputFileHandler::GetChasteTestOutputDirectory | ( | ) | [static] |
Static method for getting the test output directory (the directory where chaste stores test output). This is set from the environment variable CHASTE_TEST_OUTPUT, and defaults to "./testoutput" if it is not set.
Attempts to return an absolute path, but may get confused by odd setups.
Static so an output file handler does not have to be created if the test output directory is wanted for, say, reading a file.
Definition at line 148 of file OutputFileHandler.cpp.
References RelativeTo::AbsoluteOrCwd, RelativeTo::CWD, FileFinder::GetAbsolutePath(), and FileFinder::SetPath().
Referenced by ArchiveLocationInfo::GetArchiveRelativePath(), ArchiveLocationInfo::GetIsDirRelativeToChasteTestOutput(), AbstractCardiacProblem< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM >::InitialiseWriter(), MakeFoldersAndReturnFullPath(), FileFinder::Remove(), and FileFinder::SetPath().
std::string OutputFileHandler::GetOutputDirectoryFullPath | ( | ) | const |
Return the full pathname to the directory this object will create files in.
Definition at line 214 of file OutputFileHandler.cpp.
References mDirectory.
Referenced by ColumnDataReader::ColumnDataReader(), AbstractConvergenceTester< CELL, CARDIAC_PROBLEM, DIM, PROBLEM_DIM >::Converge(), CopyFileTo(), CardiacSimulation::CreateAndRun(), CardiacSimulation::CreateResumeXmlFile(), CylindricalHoneycombMeshGenerator::CylindricalHoneycombMeshGenerator(), Hdf5DataWriter::EndDefineMode(), FindFile(), ColumnDataWriter::GetOutputDirectory(), Hdf5DataWriter::Hdf5DataWriter(), HoneycombMeshGenerator::HoneycombMeshGenerator(), CardiacSimulationArchiver< PROBLEM_CLASS >::Save(), SetArchiveDirectory(), AdaptiveBidomainProblem::Solve(), and HeartConfig::Write().
std::string OutputFileHandler::MakeFoldersAndReturnFullPath | ( | const std::string & | rDirectory | ) | const [private] |
Check that the desired output directory exists and is writable by us. Create it if needed. Return the full pathname of the output directory.
The environment variable CHASTE_TEST_OUTPUT will be examined. If it is set and non-empty it is taken to be a directory where test output should be stored. Otherwise the current directory is used.
rDirectory | pathname of the output directory, relative to where Chaste output will be stored (user shouldn't care about this). |
Definition at line 165 of file OutputFileHandler.cpp.
References AddTrailingSlash(), PetscTools::AmMaster(), PetscTools::Barrier(), GetChasteTestOutputDirectory(), SIG_FILE_NAME, and TERMINATE.
Referenced by CommonConstructor().
out_stream OutputFileHandler::OpenOutputFile | ( | const std::string & | rFileName, |
unsigned | number, | ||
const std::string & | rFileFormat, | ||
std::ios_base::openmode | mode = std::ios::out | std::ios::trunc |
||
) | const |
This just calls the other OpenOutputFile after concatenating the first three arguments together to make the full filename. For example OpenOutputFile("results_", 3, ".dat") creates results_3.dat. See documentation for OpenOutputFile(std::string, std::ios_base::openmode).
rFileName | the root name of the file to open |
number | the number to append to the root name of the file |
rFileFormat | the file format |
mode | optionally, flags to use when opening the file (defaults are as for std::ofstream). |
Definition at line 230 of file OutputFileHandler.cpp.
References OpenOutputFile().
out_stream OutputFileHandler::OpenOutputFile | ( | const std::string & | rFileName, |
std::ios_base::openmode | mode = std::ios::out | std::ios::trunc |
||
) | const |
Open an output file in our directory, and check it was opened successfully. Throws an Exception if not.
rFileName | the name of the file to open, relative to the output directory. |
mode | optionally, flags to use when opening the file (defaults are as for std::ofstream). |
Definition at line 219 of file OutputFileHandler.cpp.
References EXCEPTION, and mDirectory.
Referenced by AbstractHdf5Converter< ELEMENT_DIM, SPACE_DIM >::AbstractHdf5Converter(), AbstractConvergenceTester< CELL, CARDIAC_PROBLEM, DIM, PROBLEM_DIM >::Converge(), ColumnDataWriter::CreateFixedDimensionFile(), ColumnDataWriter::CreateInfoFile(), CellMLToSharedLibraryConverter::CreateOptionsFile(), VertexBasedCellPopulation< DIM >::CreateOutputFiles(), PottsBasedCellPopulation< DIM >::CreateOutputFiles(), MultipleCaBasedCellPopulation< DIM >::CreateOutputFiles(), MeshBasedCellPopulation< ELEMENT_DIM, SPACE_DIM >::CreateOutputFiles(), AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM >::CreateOutputFiles(), CardiacSimulation::CreateResumeXmlFile(), CylindricalHoneycombMeshGenerator::CylindricalHoneycombMeshGenerator(), CardiacElectroMechanicsProblem< DIM, ELEC_PROB_DIM >::DetermineWatchedNodes(), ColumnDataWriter::EndDefineMode(), StreeterFibreGenerator< SPACE_DIM >::GenerateOrthotropicFibreOrientation(), Hdf5ToTxtConverter< ELEMENT_DIM, SPACE_DIM >::Hdf5ToTxtConverter(), HoneycombMeshGenerator::HoneycombMeshGenerator(), OpenOutputFile(), CellBasedPdeHandler< DIM >::OpenResultsFiles(), AbstractCellBasedSimulation< ELEMENT_DIM, SPACE_DIM >::OutputSimulationSetup(), ExecutableSupport::PrintError(), ProgressReporter::ProgressReporter(), LogFile::Set(), OnLatticeSimulation< DIM >::SetupSolve(), OffLatticeSimulation< ELEMENT_DIM, SPACE_DIM >::SetupSolve(), CryptSimulation2d::SetupWriteBetaCatenin(), SimpleDataWriter::SimpleDataWriter(), AbstractCellBasedSimulation< ELEMENT_DIM, SPACE_DIM >::Solve(), LinearParabolicPdeSystemWithCoupledOdeSystemSolver< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM >::SolveAndWriteResultsToFile(), OffLatticeSimulation< ELEMENT_DIM, SPACE_DIM >::UpdateNodePositions(), AbstractPerElementWriter< ELEMENT_DIM, SPACE_DIM, DATA_SIZE >::WriteData(), PostProcessingWriter< ELEMENT_DIM, SPACE_DIM >::WriteGenericFileToMeshalyzer(), HeartGeometryInformation< SPACE_DIM >::WriteLayerForEachNode(), ExecutableSupport::WriteMachineInfoFile(), ExecutableSupport::WriteProvenanceInfoFile(), PseudoEcgCalculator< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM >::WritePseudoEcg(), DiscreteSystemForceCalculator::WriteResultsToFile(), AbstractCentreBasedCellPopulation< ELEMENT_DIM, SPACE_DIM >::WriteTimeAndNodeResultsToFiles(), and AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM >::WriteTimeAndNodeResultsToFiles().
void OutputFileHandler::SetArchiveDirectory | ( | ) | const |
Helper method to set up ArchiveLocationInfo.
Definition at line 240 of file OutputFileHandler.cpp.
References RelativeTo::Absolute, and GetOutputDirectoryFullPath().
const std::string OutputFileHandler::SIG_FILE_NAME [static] |
The name of the Chaste signature file added to folders we create.
Definition at line 158 of file OutputFileHandler.hpp.
Referenced by CommonConstructor(), MakeFoldersAndReturnFullPath(), and FileFinder::Remove().