2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
#include "cmCPackSTGZGenerator.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include "cmMakefile.h"
|
2006-01-03 00:14:21 +03:00
|
|
|
#include "cmCPackLog.h"
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2014-01-04 09:47:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2006-04-18 16:25:24 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
cmCPackSTGZGenerator::cmCPackSTGZGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
cmCPackSTGZGenerator::~cmCPackSTGZGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-04-15 21:02:18 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int cmCPackSTGZGenerator::InitializeInternal()
|
|
|
|
{
|
|
|
|
this->SetOptionIfNotSet("CPACK_INCLUDE_TOPLEVEL_DIRECTORY", "0");
|
2006-04-18 16:25:24 +04:00
|
|
|
|
|
|
|
std::string inFile = this->FindTemplate("CPack.STGZ_Header.sh.in");
|
|
|
|
if ( inFile.empty() )
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Cannot find template file: "
|
2014-03-11 16:35:32 +04:00
|
|
|
<< inFile << std::endl);
|
2006-04-18 16:25:24 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
this->SetOptionIfNotSet("CPACK_STGZ_HEADER_FILE", inFile.c_str());
|
2006-05-02 16:49:01 +04:00
|
|
|
this->SetOptionIfNotSet("CPACK_AT_SIGN", "@");
|
2006-04-18 16:25:24 +04:00
|
|
|
|
2006-04-15 21:02:18 +04:00
|
|
|
return this->Superclass::InitializeInternal();
|
|
|
|
}
|
|
|
|
|
2006-04-18 16:25:24 +04:00
|
|
|
//----------------------------------------------------------------------
|
2010-08-11 21:48:39 +04:00
|
|
|
int cmCPackSTGZGenerator::PackageFiles()
|
2006-04-18 16:25:24 +04:00
|
|
|
{
|
2012-03-18 20:52:56 +04:00
|
|
|
bool retval = true;
|
2010-08-11 21:48:39 +04:00
|
|
|
if ( !this->Superclass::PackageFiles() )
|
2006-04-18 16:25:24 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2012-03-18 20:52:56 +04:00
|
|
|
|
|
|
|
/* TGZ generator (our Superclass) may
|
|
|
|
* have generated several packages (component packaging)
|
|
|
|
* so we must iterate over generated packages.
|
|
|
|
*/
|
|
|
|
for (std::vector<std::string>::iterator it=packageFileNames.begin();
|
|
|
|
it != packageFileNames.end(); ++it)
|
|
|
|
{
|
|
|
|
retval &= cmSystemTools::SetPermissions((*it).c_str(),
|
2006-04-18 16:25:24 +04:00
|
|
|
#if defined( _MSC_VER ) || defined( __MINGW32__ )
|
2012-03-18 20:52:56 +04:00
|
|
|
S_IREAD | S_IWRITE | S_IEXEC
|
2006-04-18 16:25:24 +04:00
|
|
|
#else
|
2012-03-18 20:52:56 +04:00
|
|
|
S_IRUSR | S_IWUSR | S_IXUSR |
|
|
|
|
S_IRGRP | S_IWGRP | S_IXGRP |
|
|
|
|
S_IROTH | S_IWOTH | S_IXOTH
|
2006-04-18 16:25:24 +04:00
|
|
|
#endif
|
2012-03-18 20:52:56 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return retval;
|
2006-04-18 16:25:24 +04:00
|
|
|
}
|
|
|
|
|
2006-01-02 07:21:05 +03:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int cmCPackSTGZGenerator::GenerateHeader(std::ostream* os)
|
|
|
|
{
|
2006-01-03 00:14:21 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_DEBUG, "Writing header" << std::endl);
|
2015-08-20 23:02:20 +03:00
|
|
|
std::ostringstream str;
|
2006-04-18 16:25:24 +04:00
|
|
|
int counter = 0;
|
|
|
|
|
2006-05-01 22:23:15 +04:00
|
|
|
std::string inLicFile = this->GetOption("CPACK_RESOURCE_FILE_LICENSE");
|
|
|
|
std::string line;
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream ilfs(inLicFile.c_str());
|
2006-05-01 22:23:15 +04:00
|
|
|
std::string licenseText;
|
|
|
|
while ( cmSystemTools::GetLineFromStream(ilfs, line) )
|
|
|
|
{
|
|
|
|
licenseText += line + "\n";
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
this->SetOptionIfNotSet("CPACK_RESOURCE_FILE_LICENSE_CONTENT",
|
2006-05-12 22:44:24 +04:00
|
|
|
licenseText.c_str());
|
2006-05-01 22:23:15 +04:00
|
|
|
|
2006-04-18 16:25:24 +04:00
|
|
|
const char headerLengthTag[] = "###CPACK_HEADER_LENGTH###";
|
|
|
|
|
|
|
|
// Create the header
|
|
|
|
std::string inFile = this->GetOption("CPACK_STGZ_HEADER_FILE");
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream ifs(inFile.c_str());
|
2006-04-18 16:25:24 +04:00
|
|
|
std::string packageHeaderText;
|
|
|
|
while ( cmSystemTools::GetLineFromStream(ifs, line) )
|
|
|
|
{
|
|
|
|
packageHeaderText += line + "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Configure in the values
|
|
|
|
std::string res;
|
|
|
|
this->ConfigureString(packageHeaderText, res);
|
|
|
|
|
|
|
|
// Count the lines
|
|
|
|
const char* ptr = res.c_str();
|
|
|
|
while ( *ptr )
|
|
|
|
{
|
|
|
|
if ( *ptr == '\n' )
|
|
|
|
{
|
|
|
|
counter ++;
|
|
|
|
}
|
|
|
|
++ptr;
|
|
|
|
}
|
|
|
|
counter ++;
|
2012-08-13 21:42:58 +04:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_DEBUG,
|
2006-05-12 22:44:24 +04:00
|
|
|
"Number of lines: " << counter << std::endl);
|
2006-04-18 16:25:24 +04:00
|
|
|
char buffer[1024];
|
|
|
|
sprintf(buffer, "%d", counter);
|
|
|
|
cmSystemTools::ReplaceString(res, headerLengthTag, buffer);
|
|
|
|
|
|
|
|
// Write in file
|
2014-03-11 16:35:32 +04:00
|
|
|
*os << res;
|
2006-01-04 23:14:09 +03:00
|
|
|
return this->Superclass::GenerateHeader(os);
|
2006-01-02 07:21:05 +03:00
|
|
|
}
|