2009-10-30 20:10:56 +03:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
|
|
|
|
#include "cmCPackArchiveGenerator.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
|
|
|
#include "cmCPackLog.h"
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <cmsys/SystemTools.hxx>
|
2010-08-24 23:42:21 +04:00
|
|
|
#include <cmsys/Directory.hxx>
|
2010-08-06 01:06:10 +04:00
|
|
|
#include <cm_libarchive.h>
|
2009-10-30 20:10:56 +03:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2010-08-24 23:41:32 +04:00
|
|
|
cmCPackArchiveGenerator::cmCPackArchiveGenerator(cmArchiveWrite::Compress t,
|
|
|
|
cmArchiveWrite::Type at)
|
2009-10-30 20:10:56 +03:00
|
|
|
{
|
|
|
|
this->Compress = t;
|
|
|
|
this->Archive = at;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
cmCPackArchiveGenerator::~cmCPackArchiveGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int cmCPackArchiveGenerator::InitializeInternal()
|
|
|
|
{
|
|
|
|
this->SetOptionIfNotSet("CPACK_INCLUDE_TOPLEVEL_DIRECTORY", "1");
|
|
|
|
return this->Superclass::InitializeInternal();
|
|
|
|
}
|
2010-08-24 23:42:21 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int cmCPackArchiveGenerator::addOneComponentToArchive(cmArchiveWrite& archive,
|
|
|
|
cmCPackComponent* component)
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE, " - packaging component: "
|
|
|
|
<< component->Name
|
|
|
|
<< std::endl);
|
|
|
|
// Add the files of this component to the archive
|
|
|
|
std::string localToplevel(this->GetOption("CPACK_TEMPORARY_DIRECTORY"));
|
|
|
|
localToplevel += "/"+ component->Name;
|
|
|
|
std::string dir = cmSystemTools::GetCurrentWorkingDirectory();
|
|
|
|
// Change to local toplevel
|
|
|
|
cmSystemTools::ChangeDirectory(localToplevel.c_str());
|
2012-01-14 01:01:53 +04:00
|
|
|
std::string filePrefix;
|
2012-02-02 02:32:50 +04:00
|
|
|
if (this->IsOn("CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY"))
|
2012-01-14 01:01:53 +04:00
|
|
|
{
|
|
|
|
filePrefix = this->GetOption("CPACK_PACKAGE_FILE_NAME");
|
|
|
|
filePrefix += "/";
|
|
|
|
}
|
2010-08-24 23:42:21 +04:00
|
|
|
std::vector<std::string>::const_iterator fileIt;
|
2010-09-16 00:41:41 +04:00
|
|
|
for (fileIt = component->Files.begin(); fileIt != component->Files.end();
|
|
|
|
++fileIt )
|
2010-08-24 23:42:21 +04:00
|
|
|
{
|
2012-01-14 01:01:53 +04:00
|
|
|
std::string rp = filePrefix + *fileIt;
|
2010-09-16 00:41:41 +04:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_DEBUG,"Adding file: "
|
2012-01-14 01:01:53 +04:00
|
|
|
<< rp << std::endl);
|
|
|
|
archive.Add(rp);
|
2010-08-24 23:42:21 +04:00
|
|
|
if (!archive)
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "ERROR while packaging files: "
|
|
|
|
<< archive.GetError()
|
|
|
|
<< std::endl);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Go back to previous dir
|
|
|
|
cmSystemTools::ChangeDirectory(dir.c_str());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The macro will open/create a file 'filename'
|
|
|
|
* an declare and open the associated
|
|
|
|
* cmArchiveWrite 'archive' object.
|
|
|
|
*/
|
|
|
|
#define DECLARE_AND_OPEN_ARCHIVE(filename,archive) \
|
|
|
|
cmGeneratedFileStream gf; \
|
|
|
|
gf.Open(filename.c_str(), false, true); \
|
|
|
|
if (!GenerateHeader(&gf)) \
|
|
|
|
{ \
|
2010-09-16 00:41:41 +04:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, \
|
|
|
|
"Problem to generate Header for archive < " \
|
2010-08-24 23:42:21 +04:00
|
|
|
<< filename \
|
|
|
|
<< ">." << std::endl); \
|
|
|
|
return 0; \
|
|
|
|
} \
|
|
|
|
cmArchiveWrite archive(gf,this->Compress, this->Archive); \
|
|
|
|
if (!archive) \
|
|
|
|
{ \
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Problem to create archive < " \
|
|
|
|
<< filename \
|
|
|
|
<< ">. ERROR =" \
|
|
|
|
<< archive.GetError() \
|
|
|
|
<< std::endl); \
|
|
|
|
return 0; \
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2010-11-13 19:56:36 +03:00
|
|
|
int cmCPackArchiveGenerator::PackageComponents(bool ignoreGroup)
|
2010-08-24 23:42:21 +04:00
|
|
|
{
|
|
|
|
packageFileNames.clear();
|
|
|
|
// The default behavior is to have one package by component group
|
|
|
|
// unless CPACK_COMPONENTS_IGNORE_GROUP is specified.
|
2010-11-13 19:56:36 +03:00
|
|
|
if (!ignoreGroup)
|
2010-08-24 23:42:21 +04:00
|
|
|
{
|
|
|
|
std::map<std::string, cmCPackComponentGroup>::iterator compGIt;
|
|
|
|
for (compGIt=this->ComponentGroups.begin();
|
|
|
|
compGIt!=this->ComponentGroups.end(); ++compGIt)
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Packaging component group: "
|
|
|
|
<< compGIt->first
|
|
|
|
<< std::endl);
|
|
|
|
// Begin the archive for this group
|
|
|
|
std::string packageFileName= std::string(toplevel);
|
2011-02-23 01:49:49 +03:00
|
|
|
packageFileName += "/"+
|
|
|
|
GetComponentPackageFileName(this->GetOption("CPACK_PACKAGE_FILE_NAME"),
|
|
|
|
compGIt->first,
|
|
|
|
true)
|
|
|
|
+ this->GetOutputExtension();
|
2010-08-24 23:42:21 +04:00
|
|
|
// open a block in order to automatically close archive
|
|
|
|
// at the end of the block
|
|
|
|
{
|
|
|
|
DECLARE_AND_OPEN_ARCHIVE(packageFileName,archive);
|
|
|
|
// now iterate over the component of this group
|
|
|
|
std::vector<cmCPackComponent*>::iterator compIt;
|
|
|
|
for (compIt=(compGIt->second).Components.begin();
|
|
|
|
compIt!=(compGIt->second).Components.end();
|
|
|
|
++compIt)
|
|
|
|
{
|
|
|
|
// Add the files of this component to the archive
|
|
|
|
addOneComponentToArchive(archive,*compIt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// add the generated package to package file names list
|
|
|
|
packageFileNames.push_back(packageFileName);
|
|
|
|
}
|
2011-03-03 23:19:13 +03:00
|
|
|
// Handle Orphan components (components not belonging to any groups)
|
|
|
|
std::map<std::string, cmCPackComponent>::iterator compIt;
|
|
|
|
for (compIt=this->Components.begin();
|
|
|
|
compIt!=this->Components.end(); ++compIt )
|
|
|
|
{
|
|
|
|
// Does the component belong to a group?
|
|
|
|
if (compIt->second.Group==NULL)
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE,
|
|
|
|
"Component <"
|
|
|
|
<< compIt->second.Name
|
|
|
|
<< "> does not belong to any group, package it separately."
|
|
|
|
<< std::endl);
|
|
|
|
std::string localToplevel(
|
|
|
|
this->GetOption("CPACK_TEMPORARY_DIRECTORY")
|
|
|
|
);
|
|
|
|
std::string packageFileName = std::string(toplevel);
|
|
|
|
|
|
|
|
localToplevel += "/"+ compIt->first;
|
|
|
|
packageFileName += "/"+
|
|
|
|
GetComponentPackageFileName(this->GetOption("CPACK_PACKAGE_FILE_NAME"),
|
|
|
|
compIt->first,
|
|
|
|
false)
|
|
|
|
+ this->GetOutputExtension();
|
|
|
|
{
|
|
|
|
DECLARE_AND_OPEN_ARCHIVE(packageFileName,archive);
|
|
|
|
// Add the files of this component to the archive
|
|
|
|
addOneComponentToArchive(archive,&(compIt->second));
|
|
|
|
}
|
|
|
|
// add the generated package to package file names list
|
|
|
|
packageFileNames.push_back(packageFileName);
|
|
|
|
}
|
|
|
|
}
|
2010-08-24 23:42:21 +04:00
|
|
|
}
|
|
|
|
// CPACK_COMPONENTS_IGNORE_GROUPS is set
|
|
|
|
// We build 1 package per component
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::map<std::string, cmCPackComponent>::iterator compIt;
|
2010-09-16 00:41:41 +04:00
|
|
|
for (compIt=this->Components.begin();
|
|
|
|
compIt!=this->Components.end(); ++compIt )
|
2010-08-24 23:42:21 +04:00
|
|
|
{
|
|
|
|
std::string localToplevel(this->GetOption("CPACK_TEMPORARY_DIRECTORY"));
|
|
|
|
std::string packageFileName = std::string(toplevel);
|
2009-10-30 20:10:56 +03:00
|
|
|
|
2010-08-24 23:42:21 +04:00
|
|
|
localToplevel += "/"+ compIt->first;
|
2011-02-23 01:49:49 +03:00
|
|
|
packageFileName += "/"+
|
|
|
|
GetComponentPackageFileName(this->GetOption("CPACK_PACKAGE_FILE_NAME"),
|
|
|
|
compIt->first,
|
|
|
|
false)
|
|
|
|
+ this->GetOutputExtension();
|
2010-08-24 23:42:21 +04:00
|
|
|
{
|
|
|
|
DECLARE_AND_OPEN_ARCHIVE(packageFileName,archive);
|
|
|
|
// Add the files of this component to the archive
|
|
|
|
addOneComponentToArchive(archive,&(compIt->second));
|
|
|
|
}
|
|
|
|
// add the generated package to package file names list
|
|
|
|
packageFileNames.push_back(packageFileName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2011-03-23 20:28:05 +03:00
|
|
|
int cmCPackArchiveGenerator::PackageComponentsAllInOne()
|
2010-08-24 23:42:21 +04:00
|
|
|
{
|
|
|
|
// reset the package file names
|
|
|
|
packageFileNames.clear();
|
|
|
|
packageFileNames.push_back(std::string(toplevel));
|
2010-09-16 00:41:41 +04:00
|
|
|
packageFileNames[0] += "/"
|
|
|
|
+std::string(this->GetOption("CPACK_PACKAGE_FILE_NAME"))
|
2011-02-23 00:56:26 +03:00
|
|
|
+ this->GetOutputExtension();
|
2010-09-16 00:41:41 +04:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE,
|
|
|
|
"Packaging all groups in one package..."
|
|
|
|
"(CPACK_COMPONENTS_ALL_GROUPS_IN_ONE_PACKAGE is set)"
|
2010-08-24 23:42:21 +04:00
|
|
|
<< std::endl);
|
|
|
|
DECLARE_AND_OPEN_ARCHIVE(packageFileNames[0],archive);
|
|
|
|
|
2011-03-23 20:28:05 +03:00
|
|
|
// The ALL COMPONENTS in ONE package case
|
|
|
|
std::map<std::string, cmCPackComponent>::iterator compIt;
|
|
|
|
for (compIt=this->Components.begin();compIt!=this->Components.end();
|
|
|
|
++compIt )
|
2010-08-24 23:42:21 +04:00
|
|
|
{
|
2011-03-23 20:28:05 +03:00
|
|
|
// Add the files of this component to the archive
|
|
|
|
addOneComponentToArchive(archive,&(compIt->second));
|
2010-08-24 23:42:21 +04:00
|
|
|
}
|
2011-03-23 20:28:05 +03:00
|
|
|
|
2010-08-24 23:42:21 +04:00
|
|
|
// archive goes out of scope so it will finalized and closed.
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2010-08-11 21:48:39 +04:00
|
|
|
int cmCPackArchiveGenerator::PackageFiles()
|
2009-10-30 20:10:56 +03:00
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_DEBUG, "Toplevel: "
|
2010-08-11 21:48:39 +04:00
|
|
|
<< toplevel << std::endl);
|
|
|
|
|
2012-03-18 23:21:35 +04:00
|
|
|
if (WantsComponentInstallation()) {
|
2010-11-29 20:57:24 +03:00
|
|
|
// CASE 1 : COMPONENT ALL-IN-ONE package
|
2011-03-23 20:28:05 +03:00
|
|
|
// If ALL COMPONENTS in ONE package has been requested
|
2010-11-29 20:57:24 +03:00
|
|
|
// then the package file is unique and should be open here.
|
2011-03-25 19:18:59 +03:00
|
|
|
if (componentPackageMethod == ONE_PACKAGE)
|
2010-11-29 20:57:24 +03:00
|
|
|
{
|
2011-03-23 20:28:05 +03:00
|
|
|
return PackageComponentsAllInOne();
|
2010-11-29 20:57:24 +03:00
|
|
|
}
|
|
|
|
// CASE 2 : COMPONENT CLASSICAL package(s) (i.e. not all-in-one)
|
|
|
|
// There will be 1 package for each component group
|
|
|
|
// however one may require to ignore component group and
|
|
|
|
// in this case you'll get 1 package for each component.
|
2011-03-23 20:28:05 +03:00
|
|
|
else
|
2010-11-29 20:57:24 +03:00
|
|
|
{
|
2011-04-01 21:21:51 +04:00
|
|
|
return PackageComponents(componentPackageMethod ==
|
|
|
|
ONE_PACKAGE_PER_COMPONENT);
|
2010-11-29 20:57:24 +03:00
|
|
|
}
|
|
|
|
}
|
2010-08-24 23:42:21 +04:00
|
|
|
|
|
|
|
// CASE 3 : NON COMPONENT package.
|
|
|
|
DECLARE_AND_OPEN_ARCHIVE(packageFileNames[0],archive);
|
2009-10-30 20:10:56 +03:00
|
|
|
std::vector<std::string>::const_iterator fileIt;
|
2009-11-09 17:58:03 +03:00
|
|
|
std::string dir = cmSystemTools::GetCurrentWorkingDirectory();
|
2010-08-11 21:48:39 +04:00
|
|
|
cmSystemTools::ChangeDirectory(toplevel.c_str());
|
2009-10-30 20:10:56 +03:00
|
|
|
for ( fileIt = files.begin(); fileIt != files.end(); ++ fileIt )
|
|
|
|
{
|
|
|
|
// Get the relative path to the file
|
2010-09-16 00:41:41 +04:00
|
|
|
std::string rp = cmSystemTools::RelativePath(toplevel.c_str(),
|
|
|
|
fileIt->c_str());
|
2010-08-24 23:41:32 +04:00
|
|
|
archive.Add(rp);
|
|
|
|
if(!archive)
|
2009-10-30 20:10:56 +03:00
|
|
|
{
|
2010-08-24 23:41:32 +04:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Problem while adding file< "
|
|
|
|
<< *fileIt
|
|
|
|
<< "> to archive <"
|
|
|
|
<< packageFileNames[0] << "> .ERROR ="
|
|
|
|
<< archive.GetError()
|
|
|
|
<< std::endl);
|
|
|
|
return 0;
|
2009-10-30 20:10:56 +03:00
|
|
|
}
|
|
|
|
}
|
2009-11-09 17:58:03 +03:00
|
|
|
cmSystemTools::ChangeDirectory(dir.c_str());
|
2010-08-24 23:41:32 +04:00
|
|
|
// The destructor of cmArchiveWrite will close and finish the write
|
2009-10-30 20:10:56 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int cmCPackArchiveGenerator::GenerateHeader(std::ostream*)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2010-08-24 23:42:21 +04:00
|
|
|
|
|
|
|
bool cmCPackArchiveGenerator::SupportsComponentInstallation() const {
|
2010-11-29 20:57:24 +03:00
|
|
|
// The Component installation support should only
|
|
|
|
// be activated if explicitly requested by the user
|
|
|
|
// (for backward compatibility reason)
|
2010-12-12 14:55:02 +03:00
|
|
|
if (IsOn("CPACK_ARCHIVE_COMPONENT_INSTALL"))
|
2010-11-29 20:57:24 +03:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2010-08-24 23:42:21 +04:00
|
|
|
}
|