2006-05-03 01:07:16 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
|
|
|
|
#ifndef cmCPackTarCompressGenerator_h
|
|
|
|
#define cmCPackTarCompressGenerator_h
|
|
|
|
|
2006-05-03 01:34:27 +04:00
|
|
|
#include "cmCPackTGZGenerator.h"
|
2006-05-03 01:07:16 +04:00
|
|
|
|
|
|
|
/** \class cmCPackTarCompressGenerator
|
|
|
|
* \brief A generator for TarCompress files
|
|
|
|
*/
|
2006-05-03 01:34:27 +04:00
|
|
|
class cmCPackTarCompressGenerator : public cmCPackTGZGenerator
|
2006-05-03 01:07:16 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
friend class cmCPackTarCompressGeneratorForward;
|
2006-05-03 01:34:27 +04:00
|
|
|
cmCPackTypeMacro(cmCPackTarCompressGenerator, cmCPackTGZGenerator);
|
2006-05-03 01:07:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct generator
|
|
|
|
*/
|
|
|
|
cmCPackTarCompressGenerator();
|
|
|
|
virtual ~cmCPackTarCompressGenerator();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual int InitializeInternal();
|
|
|
|
int CompressFiles(const char* outFileName, const char* toplevel,
|
|
|
|
const std::vector<std::string>& files);
|
2007-02-02 22:40:26 +03:00
|
|
|
virtual const char* GetOutputExtension() { return ".tar.Z"; }
|
2006-05-03 01:07:16 +04:00
|
|
|
|
|
|
|
int RenameFile(const char* oldname, const char* newname);
|
2006-08-21 20:37:40 +04:00
|
|
|
int GenerateHeader(std::ostream* os);
|
2006-05-03 01:07:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|