OutputFileHandler.hpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef OUTPUTFILEHANDLER_HPP_
00030 #define OUTPUTFILEHANDLER_HPP_
00031
00032 #include <string>
00033 #include <fstream>
00034 #include <sstream>
00035 #include <memory>
00036
00037 class FileFinder;
00038
00040 typedef std::auto_ptr<std::ofstream> out_stream;
00041
00047 class OutputFileHandler
00048 {
00049 private:
00050
00051 std::string mDirectory;
00052
00058 static void AddTrailingSlash(std::string& rDirectory);
00059
00075 std::string MakeFoldersAndReturnFullPath(const std::string& rDirectory) const;
00076
00077 public:
00078
00092 OutputFileHandler(const std::string& rDirectory,
00093 bool cleanOutputDirectory = true);
00094
00106 static std::string GetChasteTestOutputDirectory();
00107
00112 std::string GetOutputDirectoryFullPath() const;
00113
00117 void SetArchiveDirectory() const;
00118
00128 out_stream OpenOutputFile(const std::string& rFileName,
00129 std::ios_base::openmode mode=std::ios::out | std::ios::trunc) const;
00130
00143 out_stream OpenOutputFile(const std::string& rFileName,
00144 unsigned number,
00145 const std::string& rFileFormat,
00146 std::ios_base::openmode mode=std::ios::out | std::ios::trunc) const;
00147
00154 FileFinder CopyFileTo(const FileFinder& rSourceFile) const;
00155
00161 FileFinder FindFile(std::string leafName) const;
00162 };
00163
00164 #endif