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 class FileFinder;
00039
00041 typedef std::auto_ptr<std::ofstream> out_stream;
00042
00048 class OutputFileHandler
00049 {
00050 private:
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:
00091 OutputFileHandler(const std::string& rDirectory,
00092 bool cleanOutputDirectory = true);
00093
00105 static std::string GetChasteTestOutputDirectory();
00106
00111 std::string GetOutputDirectoryFullPath() const;
00112
00116 void SetArchiveDirectory() const;
00117
00127 out_stream OpenOutputFile(const std::string& rFileName,
00128 std::ios_base::openmode mode=std::ios::out | std::ios::trunc) const;
00129
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