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 bool mAmMaster;
00052
00053 public:
00065 OutputFileHandler(const std::string& rDirectory,
00066 bool cleanOutputDirectory = true);
00067
00075 static std::string GetChasteTestOutputDirectory();
00076
00090 std::string GetOutputDirectoryFullPath(const std::string& rDirectory);
00095 std::string GetOutputDirectoryFullPath();
00096
00100 void SetArchiveDirectory();
00101
00111 out_stream OpenOutputFile(const std::string& rFileName,
00112 std::ios_base::openmode mode=std::ios::out | std::ios::trunc);
00113
00114
00127 out_stream OpenOutputFile(const std::string& rFileName,
00128 unsigned number,
00129 const std::string& rFileFormat,
00130 std::ios_base::openmode mode=std::ios::out | std::ios::trunc);
00134 bool IsMaster();
00135
00136 };
00137
00138 #endif