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
00030 #ifndef OUTPUTFILEHANDLER_HPP_
00031 #define OUTPUTFILEHANDLER_HPP_
00032
00033 #include <string>
00034 #include <fstream>
00035 #include <sstream>
00036 #include <memory>
00037
00038
00040 typedef std::auto_ptr<std::ofstream> out_stream;
00041
00047 class OutputFileHandler
00048 {
00049 private:
00050 std::string mDirectory;
00051
00057 static void AddTrailingSlash(std::string& rDirectory);
00058
00074 std::string MakeFoldersAndReturnFullPath(const std::string& rDirectory);
00075
00076 public:
00090 OutputFileHandler(const std::string& rDirectory,
00091 bool cleanOutputDirectory = true);
00092
00104 static std::string GetChasteTestOutputDirectory();
00105
00110 std::string GetOutputDirectoryFullPath();
00111
00115 void SetArchiveDirectory();
00116
00126 out_stream OpenOutputFile(const std::string& rFileName,
00127 std::ios_base::openmode mode=std::ios::out | std::ios::trunc);
00128
00129
00142 out_stream OpenOutputFile(const std::string& rFileName,
00143 unsigned number,
00144 const std::string& rFileFormat,
00145 std::ios_base::openmode mode=std::ios::out | std::ios::trunc);
00146
00147 };
00148
00149 #endif