2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-05-16 20:40:45 +00:00
|
|
|
#ifndef cmGeneratedFileStream_h
|
|
|
|
#define cmGeneratedFileStream_h
|
|
|
|
|
2017-08-25 18:39:02 +00:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-09-01 18:05:48 +00:00
|
|
|
|
2017-04-11 20:00:21 +00:00
|
|
|
#include "cm_codecvt.hxx"
|
|
|
|
#include "cmsys/FStream.hxx"
|
2016-09-01 18:59:28 +00:00
|
|
|
#include <string>
|
2004-11-03 12:23:18 +00:00
|
|
|
|
|
|
|
// This is the first base class of cmGeneratedFileStream. It will be
|
|
|
|
// created before and destroyed after the ofstream portion and can
|
|
|
|
// therefore be used to manage the temporary file.
|
|
|
|
class cmGeneratedFileStreamBase
|
|
|
|
{
|
|
|
|
protected:
|
2005-01-26 19:25:16 +00:00
|
|
|
// This constructor does not prepare the temporary file. The open
|
|
|
|
// method must be used.
|
|
|
|
cmGeneratedFileStreamBase();
|
|
|
|
|
|
|
|
// This constructor prepares the temporary output file.
|
2004-11-03 12:51:51 +00:00
|
|
|
cmGeneratedFileStreamBase(const char* name);
|
2004-11-03 12:23:18 +00:00
|
|
|
|
|
|
|
// The destructor renames the temporary output file to the real name.
|
|
|
|
~cmGeneratedFileStreamBase();
|
|
|
|
|
2005-04-05 12:25:21 +00:00
|
|
|
// Internal methods to handle the temporary file. Open is always
|
|
|
|
// called before the real stream is opened. Close is always called
|
2006-03-15 16:02:08 +00:00
|
|
|
// after the real stream is closed and Okay is set to whether the
|
2005-04-05 12:25:21 +00:00
|
|
|
// real stream was still valid for writing when it was closed.
|
2005-01-26 19:25:16 +00:00
|
|
|
void Open(const char* name);
|
2007-11-16 12:01:58 +00:00
|
|
|
bool Close();
|
2005-01-26 19:25:16 +00:00
|
|
|
|
2004-11-03 12:23:18 +00:00
|
|
|
// Internal file replacement implementation.
|
|
|
|
int RenameFile(const char* oldname, const char* newname);
|
|
|
|
|
2005-01-27 15:14:24 +00:00
|
|
|
// Internal file compression implementation.
|
|
|
|
int CompressFile(const char* oldname, const char* newname);
|
|
|
|
|
2004-11-03 12:23:18 +00:00
|
|
|
// The name of the final destination file for the output.
|
2006-03-15 16:02:08 +00:00
|
|
|
std::string Name;
|
2004-11-03 12:23:18 +00:00
|
|
|
|
|
|
|
// The name of the temporary file.
|
2006-03-15 16:02:08 +00:00
|
|
|
std::string TempName;
|
2004-11-03 12:23:18 +00:00
|
|
|
|
|
|
|
// Whether to do a copy-if-different.
|
2006-03-15 16:02:08 +00:00
|
|
|
bool CopyIfDifferent;
|
2004-11-03 12:23:18 +00:00
|
|
|
|
2005-04-05 12:25:21 +00:00
|
|
|
// Whether the real file stream was valid when it was closed.
|
2006-03-15 16:02:08 +00:00
|
|
|
bool Okay;
|
2005-01-27 15:14:24 +00:00
|
|
|
|
2015-09-11 15:31:01 +00:00
|
|
|
// Whether the destination file is compressed
|
2006-03-15 16:02:08 +00:00
|
|
|
bool Compress;
|
2006-01-02 12:52:54 +00:00
|
|
|
|
2015-09-11 15:31:01 +00:00
|
|
|
// Whether the destination file is compressed
|
2006-03-15 16:02:08 +00:00
|
|
|
bool CompressExtraExtension;
|
2004-11-03 12:23:18 +00:00
|
|
|
};
|
2001-05-16 20:40:45 +00:00
|
|
|
|
|
|
|
/** \class cmGeneratedFileStream
|
2004-11-03 12:23:18 +00:00
|
|
|
* \brief Output stream for generated files.
|
2001-05-16 20:40:45 +00:00
|
|
|
*
|
2004-11-03 12:23:18 +00:00
|
|
|
* File generation should be atomic so that if CMake is killed then a
|
|
|
|
* generated file is either the original version or the complete new
|
|
|
|
* version. This stream is used to make sure file generation is
|
|
|
|
* atomic. Optionally the output file is only replaced if its
|
|
|
|
* contents have changed to prevent the file modification time from
|
|
|
|
* being updated.
|
2001-05-16 20:40:45 +00:00
|
|
|
*/
|
2016-05-16 14:34:04 +00:00
|
|
|
class cmGeneratedFileStream : private cmGeneratedFileStreamBase,
|
|
|
|
public cmsys::ofstream
|
2001-05-16 20:40:45 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-01-04 05:47:13 +00:00
|
|
|
typedef cmsys::ofstream Stream;
|
2016-10-05 13:43:21 +00:00
|
|
|
typedef codecvt::Encoding Encoding;
|
2004-11-03 12:27:44 +00:00
|
|
|
|
2001-05-16 20:40:45 +00:00
|
|
|
/**
|
2005-01-26 19:25:16 +00:00
|
|
|
* This constructor prepares a default stream. The open method must
|
|
|
|
* be used before writing to the stream.
|
|
|
|
*/
|
2016-10-05 13:43:21 +00:00
|
|
|
cmGeneratedFileStream(Encoding encoding = codecvt::None);
|
2005-01-26 19:25:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This constructor takes the name of the file to be generated. It
|
2004-11-03 12:51:51 +00:00
|
|
|
* automatically generates a name for the temporary file. If the
|
|
|
|
* file cannot be opened an error message is produced unless the
|
|
|
|
* second argument is set to true.
|
2001-05-16 20:40:45 +00:00
|
|
|
*/
|
2016-10-05 13:43:21 +00:00
|
|
|
cmGeneratedFileStream(const char* name, bool quiet = false,
|
|
|
|
Encoding encoding = codecvt::None);
|
2001-05-16 20:40:45 +00:00
|
|
|
|
|
|
|
/**
|
2004-11-03 12:23:18 +00:00
|
|
|
* The destructor checks the stream status to be sure the temporary
|
|
|
|
* file was successfully written before allowing the original to be
|
|
|
|
* replaced.
|
2001-05-16 20:40:45 +00:00
|
|
|
*/
|
2017-09-15 13:56:26 +00:00
|
|
|
~cmGeneratedFileStream() override;
|
2004-11-03 12:51:51 +00:00
|
|
|
|
2005-01-26 19:25:16 +00:00
|
|
|
/**
|
|
|
|
* Open an output file by name. This should be used only with a
|
2005-04-05 12:25:21 +00:00
|
|
|
* non-open stream. It automatically generates a name for the
|
|
|
|
* temporary file. If the file cannot be opened an error message is
|
|
|
|
* produced unless the second argument is set to true.
|
2005-01-26 19:25:16 +00:00
|
|
|
*/
|
2016-05-16 14:34:04 +00:00
|
|
|
cmGeneratedFileStream& Open(const char* name, bool quiet = false,
|
|
|
|
bool binaryFlag = false);
|
2005-01-26 19:25:16 +00:00
|
|
|
|
2005-04-05 12:25:21 +00:00
|
|
|
/**
|
|
|
|
* Close the output file. This should be used only with an open
|
|
|
|
* stream. The temporary file is atomically renamed to the
|
|
|
|
* destionation file if the stream is still valid when this method
|
|
|
|
* is called.
|
|
|
|
*/
|
2007-11-16 12:01:58 +00:00
|
|
|
bool Close();
|
2005-04-05 12:25:21 +00:00
|
|
|
|
2004-11-03 12:51:51 +00:00
|
|
|
/**
|
|
|
|
* Set whether copy-if-different is done.
|
|
|
|
*/
|
|
|
|
void SetCopyIfDifferent(bool copy_if_different);
|
2005-01-27 15:14:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether compression is done.
|
|
|
|
*/
|
|
|
|
void SetCompression(bool compression);
|
2005-05-10 15:11:28 +00:00
|
|
|
|
2006-01-02 12:52:54 +00:00
|
|
|
/**
|
|
|
|
* Set whether compression has extra extension
|
|
|
|
*/
|
|
|
|
void SetCompressionExtraExtension(bool ext);
|
|
|
|
|
2005-05-10 15:11:28 +00:00
|
|
|
/**
|
|
|
|
* Set name of the file that will hold the actual output. This method allows
|
|
|
|
* the output file to be changed during the use of cmGeneratedFileStream.
|
|
|
|
*/
|
2014-02-07 20:37:02 +00:00
|
|
|
void SetName(const std::string& fname);
|
2007-08-01 14:53:28 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
cmGeneratedFileStream(cmGeneratedFileStream const&); // not implemented
|
2001-05-16 20:40:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|