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 "cmCPackPackageMakerGenerator.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
2008-06-17 19:39:26 +04:00
|
|
|
#include "cmCPackComponentGroup.h"
|
2006-01-03 00:14:21 +03:00
|
|
|
#include "cmCPackLog.h"
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
#include <cmsys/SystemTools.hxx>
|
|
|
|
#include <cmsys/Glob.hxx>
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
cmCPackPackageMakerGenerator::cmCPackPackageMakerGenerator()
|
|
|
|
{
|
2007-11-05 22:34:36 +03:00
|
|
|
this->PackageMakerVersion = 0.0;
|
2008-07-09 21:38:56 +04:00
|
|
|
this->PackageCompatibilityVersion = 10.4;
|
2006-01-02 07:21:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
cmCPackPackageMakerGenerator::~cmCPackPackageMakerGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool cmCPackPackageMakerGenerator::SupportsComponentInstallation() const
|
|
|
|
{
|
2008-07-09 21:38:56 +04:00
|
|
|
return this->PackageCompatibilityVersion >= 10.4;
|
2008-06-17 19:39:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2008-02-19 22:26:20 +03:00
|
|
|
int cmCPackPackageMakerGenerator::CopyInstallScript(const char* resdir,
|
|
|
|
const char* script,
|
|
|
|
const char* name)
|
|
|
|
{
|
|
|
|
std::string dst = resdir;
|
|
|
|
dst += "/";
|
|
|
|
dst += name;
|
|
|
|
cmSystemTools::CopyFileAlways(script, dst.c_str());
|
|
|
|
cmSystemTools::SetPermissions(dst.c_str(),0777);
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE,
|
|
|
|
"copy script : " << script << "\ninto " << dst.c_str() <<
|
|
|
|
std::endl);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-01-02 07:21:05 +03:00
|
|
|
//----------------------------------------------------------------------
|
2010-08-11 21:48:39 +04:00
|
|
|
int cmCPackPackageMakerGenerator::PackageFiles()
|
2006-01-02 07:21:05 +03:00
|
|
|
{
|
2010-08-11 21:48:39 +04:00
|
|
|
// TODO: Use toplevel
|
|
|
|
// It is used! Is this an obsolete comment?
|
2008-06-18 15:08:33 +04:00
|
|
|
|
|
|
|
std::string resDir; // Where this package's resources will go.
|
|
|
|
std::string packageDirFileName
|
|
|
|
= this->GetOption("CPACK_TEMPORARY_DIRECTORY");
|
|
|
|
if (this->Components.empty())
|
|
|
|
{
|
|
|
|
packageDirFileName += ".pkg";
|
|
|
|
resDir = this->GetOption("CPACK_TOPLEVEL_DIRECTORY");
|
|
|
|
resDir += "/Resources";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
packageDirFileName += ".mpkg";
|
|
|
|
if ( !cmsys::SystemTools::MakeDirectory(packageDirFileName.c_str()))
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"unable to create package directory "
|
|
|
|
<< packageDirFileName << std::endl);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
resDir = packageDirFileName;
|
|
|
|
resDir += "/Contents";
|
|
|
|
if ( !cmsys::SystemTools::MakeDirectory(resDir.c_str()))
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"unable to create package subdirectory " << resDir
|
|
|
|
<< std::endl);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
resDir += "/Resources";
|
|
|
|
if ( !cmsys::SystemTools::MakeDirectory(resDir.c_str()))
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"unable to create package subdirectory " << resDir
|
|
|
|
<< std::endl);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
resDir += "/en.lproj";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-01-02 07:21:05 +03:00
|
|
|
// Create directory structure
|
|
|
|
std::string preflightDirName = resDir + "/PreFlight";
|
|
|
|
std::string postflightDirName = resDir + "/PostFlight";
|
2008-02-19 22:26:20 +03:00
|
|
|
const char* preflight = this->GetOption("CPACK_PREFLIGHT_SCRIPT");
|
|
|
|
const char* postflight = this->GetOption("CPACK_POSTFLIGHT_SCRIPT");
|
|
|
|
const char* postupgrade = this->GetOption("CPACK_POSTUPGRADE_SCRIPT");
|
|
|
|
// if preflight or postflight scripts not there create directories
|
|
|
|
// of the same name, I think this makes it work
|
|
|
|
if(!preflight)
|
2006-01-02 07:21:05 +03:00
|
|
|
{
|
2008-02-19 22:26:20 +03:00
|
|
|
if ( !cmsys::SystemTools::MakeDirectory(preflightDirName.c_str()))
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Problem creating installer directory: "
|
|
|
|
<< preflightDirName.c_str() << std::endl);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!postflight)
|
|
|
|
{
|
|
|
|
if ( !cmsys::SystemTools::MakeDirectory(postflightDirName.c_str()))
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Problem creating installer directory: "
|
|
|
|
<< postflightDirName.c_str() << std::endl);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if preflight, postflight, or postupgrade are set
|
|
|
|
// then copy them into the resource directory and make
|
|
|
|
// them executable
|
|
|
|
if(preflight)
|
|
|
|
{
|
2008-06-17 19:39:26 +04:00
|
|
|
this->CopyInstallScript(resDir.c_str(),
|
|
|
|
preflight,
|
|
|
|
"preflight");
|
2008-02-19 22:26:20 +03:00
|
|
|
}
|
|
|
|
if(postflight)
|
|
|
|
{
|
2008-06-17 19:39:26 +04:00
|
|
|
this->CopyInstallScript(resDir.c_str(),
|
|
|
|
postflight,
|
|
|
|
"postflight");
|
2008-02-19 22:26:20 +03:00
|
|
|
}
|
|
|
|
if(postupgrade)
|
|
|
|
{
|
2008-06-17 19:39:26 +04:00
|
|
|
this->CopyInstallScript(resDir.c_str(),
|
|
|
|
postupgrade,
|
|
|
|
"postupgrade");
|
2006-01-02 07:21:05 +03:00
|
|
|
}
|
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
if (!this->Components.empty())
|
|
|
|
{
|
2008-07-09 21:38:56 +04:00
|
|
|
// Create the directory where component packages will be built.
|
2008-06-18 15:08:33 +04:00
|
|
|
std::string basePackageDir = packageDirFileName;
|
|
|
|
basePackageDir += "/Contents/Packages";
|
2008-06-17 19:39:26 +04:00
|
|
|
if (!cmsys::SystemTools::MakeDirectory(basePackageDir.c_str()))
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Problem creating component packages directory: "
|
|
|
|
<< basePackageDir.c_str() << std::endl);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-09 21:38:56 +04:00
|
|
|
// Create the directory where downloaded component packages will
|
|
|
|
// be placed.
|
2008-10-01 17:04:27 +04:00
|
|
|
const char* userUploadDirectory =
|
|
|
|
this->GetOption("CPACK_UPLOAD_DIRECTORY");
|
2008-07-09 21:38:56 +04:00
|
|
|
std::string uploadDirectory;
|
|
|
|
if (userUploadDirectory && *userUploadDirectory)
|
|
|
|
{
|
|
|
|
uploadDirectory = userUploadDirectory;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uploadDirectory= this->GetOption("CPACK_PACKAGE_DIRECTORY");
|
|
|
|
uploadDirectory += "/CPackUploads";
|
|
|
|
}
|
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
// Create packages for each component
|
2008-07-09 21:38:56 +04:00
|
|
|
bool warnedAboutDownloadCompatibility = false;
|
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
std::map<std::string, cmCPackComponent>::iterator compIt;
|
|
|
|
for (compIt = this->Components.begin(); compIt != this->Components.end();
|
|
|
|
++compIt)
|
|
|
|
{
|
2008-07-09 21:38:56 +04:00
|
|
|
std::string packageFile;
|
|
|
|
if (compIt->second.IsDownloaded)
|
|
|
|
{
|
|
|
|
if (this->PackageCompatibilityVersion >= 10.5 &&
|
|
|
|
this->PackageMakerVersion >= 3.0)
|
|
|
|
{
|
|
|
|
// Build this package within the upload directory.
|
|
|
|
packageFile = uploadDirectory;
|
|
|
|
|
|
|
|
if(!cmSystemTools::FileExists(uploadDirectory.c_str()))
|
|
|
|
{
|
|
|
|
if (!cmSystemTools::MakeDirectory(uploadDirectory.c_str()))
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Unable to create package upload directory "
|
|
|
|
<< uploadDirectory << std::endl);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!warnedAboutDownloadCompatibility)
|
|
|
|
{
|
|
|
|
if (this->PackageCompatibilityVersion < 10.5)
|
|
|
|
{
|
2008-10-01 17:04:27 +04:00
|
|
|
cmCPackLogger(
|
|
|
|
cmCPackLog::LOG_WARNING,
|
|
|
|
"CPack warning: please set CPACK_OSX_PACKAGE_VERSION to 10.5 "
|
|
|
|
"or greater enable downloaded packages. CPack will build a "
|
|
|
|
"non-downloaded package."
|
|
|
|
<< std::endl);
|
2008-07-09 21:38:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this->PackageMakerVersion < 3)
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_WARNING,
|
2008-10-01 17:04:27 +04:00
|
|
|
"CPack warning: unable to build downloaded "
|
|
|
|
"packages with PackageMaker versions prior "
|
|
|
|
"to 3.0. CPack will build a non-downloaded package."
|
2008-07-09 21:38:56 +04:00
|
|
|
<< std::endl);
|
|
|
|
}
|
|
|
|
|
|
|
|
warnedAboutDownloadCompatibility = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (packageFile.empty())
|
|
|
|
{
|
|
|
|
// Build this package within the overall distribution
|
|
|
|
// metapackage.
|
|
|
|
packageFile = basePackageDir;
|
|
|
|
|
|
|
|
// We're not downloading this component, even if the user
|
|
|
|
// requested it.
|
|
|
|
compIt->second.IsDownloaded = false;
|
|
|
|
}
|
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
packageFile += '/';
|
|
|
|
packageFile += GetPackageName(compIt->second);
|
|
|
|
|
|
|
|
std::string packageDir = toplevel;
|
|
|
|
packageDir += '/';
|
|
|
|
packageDir += compIt->first;
|
|
|
|
if (!this->GenerateComponentPackage(packageFile.c_str(),
|
|
|
|
packageDir.c_str(),
|
|
|
|
compIt->second))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this->SetOption("CPACK_MODULE_VERSION_SUFFIX", "");
|
|
|
|
|
|
|
|
// Copy or create all of the resource files we need.
|
2008-06-18 15:08:33 +04:00
|
|
|
if ( !this->CopyCreateResourceFile("License", resDir.c_str())
|
|
|
|
|| !this->CopyCreateResourceFile("ReadMe", resDir.c_str())
|
|
|
|
|| !this->CopyCreateResourceFile("Welcome", resDir.c_str())
|
|
|
|
|| !this->CopyResourcePlistFile("Info.plist")
|
|
|
|
|| !this->CopyResourcePlistFile("Description.plist") )
|
2006-01-02 07:21:05 +03:00
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Problem copying the resource files"
|
|
|
|
<< std::endl);
|
2006-01-02 07:21:05 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
if (this->Components.empty())
|
|
|
|
{
|
2008-06-18 15:08:33 +04:00
|
|
|
// Use PackageMaker to build the package.
|
|
|
|
cmOStringStream pkgCmd;
|
|
|
|
pkgCmd << "\"" << this->GetOption("CPACK_INSTALLER_PROGRAM")
|
|
|
|
<< "\" -build -p \"" << packageDirFileName << "\"";
|
|
|
|
if (this->Components.empty())
|
2008-06-17 19:39:26 +04:00
|
|
|
{
|
2008-06-18 15:08:33 +04:00
|
|
|
pkgCmd << " -f \"" << this->GetOption("CPACK_TEMPORARY_DIRECTORY");
|
2008-06-17 19:39:26 +04:00
|
|
|
}
|
2008-06-18 15:08:33 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
pkgCmd << " -mi \"" << this->GetOption("CPACK_TEMPORARY_DIRECTORY")
|
|
|
|
<< "/packages/";
|
|
|
|
}
|
|
|
|
pkgCmd << "\" -r \"" << this->GetOption("CPACK_TOPLEVEL_DIRECTORY")
|
|
|
|
<< "/Resources\" -i \""
|
|
|
|
<< this->GetOption("CPACK_TOPLEVEL_DIRECTORY")
|
|
|
|
<< "/Info.plist\" -d \""
|
2008-07-09 21:38:56 +04:00
|
|
|
<< this->GetOption("CPACK_TOPLEVEL_DIRECTORY")
|
2008-06-18 15:08:33 +04:00
|
|
|
<< "/Description.plist\"";
|
|
|
|
if ( this->PackageMakerVersion > 2.0 )
|
|
|
|
{
|
|
|
|
pkgCmd << " -v";
|
|
|
|
}
|
|
|
|
if (!RunPackageMaker(pkgCmd.str().c_str(), packageDirFileName.c_str()))
|
|
|
|
return 0;
|
2006-03-03 23:04:28 +03:00
|
|
|
}
|
2008-06-17 19:39:26 +04:00
|
|
|
else
|
2006-01-02 07:21:05 +03:00
|
|
|
{
|
2008-06-18 15:08:33 +04:00
|
|
|
// We have built the package in place. Generate the
|
|
|
|
// distribution.dist file to describe it for the installer.
|
2008-06-17 19:39:26 +04:00
|
|
|
WriteDistributionFile(packageDirFileName.c_str());
|
2007-12-17 23:27:30 +03:00
|
|
|
}
|
2008-06-17 19:39:26 +04:00
|
|
|
|
|
|
|
std::string tmpFile = this->GetOption("CPACK_TOPLEVEL_DIRECTORY");
|
2006-01-02 07:21:05 +03:00
|
|
|
tmpFile += "/hdiutilOutput.log";
|
|
|
|
cmOStringStream dmgCmd;
|
2006-03-09 00:33:39 +03:00
|
|
|
dmgCmd << "\"" << this->GetOption("CPACK_INSTALLER_PROGRAM_DISK_IMAGE")
|
|
|
|
<< "\" create -ov -format UDZO -srcfolder \"" << packageDirFileName
|
2010-08-11 21:48:39 +04:00
|
|
|
<< "\" \"" << packageFileNames[0] << "\"";
|
2008-06-17 19:39:26 +04:00
|
|
|
std::string output;
|
|
|
|
int retVal = 1;
|
2009-10-04 17:54:55 +04:00
|
|
|
int numTries = 4;
|
2011-02-03 18:21:32 +03:00
|
|
|
bool res = false;
|
2009-10-04 17:54:55 +04:00
|
|
|
while(numTries > 0)
|
|
|
|
{
|
|
|
|
res = cmSystemTools::RunSingleCommand(dmgCmd.str().c_str(), &output,
|
|
|
|
&retVal, 0, this->GeneratorVerbose,
|
|
|
|
0);
|
|
|
|
if(res && retVal)
|
|
|
|
{
|
|
|
|
numTries = -1;
|
|
|
|
}
|
|
|
|
numTries--;
|
|
|
|
}
|
2006-01-02 07:21:05 +03:00
|
|
|
if ( !res || retVal )
|
|
|
|
{
|
|
|
|
cmGeneratedFileStream ofs(tmpFile.c_str());
|
|
|
|
ofs << "# Run command: " << dmgCmd.str().c_str() << std::endl
|
|
|
|
<< "# Output:" << std::endl
|
|
|
|
<< output.c_str() << std::endl;
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Problem running hdiutil command: "
|
|
|
|
<< dmgCmd.str().c_str() << std::endl
|
2006-01-03 00:14:21 +03:00
|
|
|
<< "Please check " << tmpFile.c_str() << " for errors" << std::endl);
|
2006-01-02 07:21:05 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2006-04-15 21:02:18 +04:00
|
|
|
int cmCPackPackageMakerGenerator::InitializeInternal()
|
2006-01-02 07:21:05 +03:00
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_DEBUG,
|
|
|
|
"cmCPackPackageMakerGenerator::Initialize()" << std::endl);
|
2007-10-31 15:50:17 +03:00
|
|
|
this->SetOptionIfNotSet("CPACK_PACKAGING_INSTALL_PREFIX", "/usr");
|
2006-01-02 07:21:05 +03:00
|
|
|
std::vector<std::string> path;
|
2006-03-09 00:33:39 +03:00
|
|
|
std::string pkgPath
|
|
|
|
= "/Developer/Applications/Utilities/PackageMaker.app/Contents";
|
2006-03-03 23:04:28 +03:00
|
|
|
std::string versionFile = pkgPath + "/version.plist";
|
|
|
|
if ( !cmSystemTools::FileExists(versionFile.c_str()) )
|
|
|
|
{
|
2006-03-21 00:24:43 +03:00
|
|
|
pkgPath = "/Developer/Applications/PackageMaker.app/Contents";
|
|
|
|
std::string newVersionFile = pkgPath + "/version.plist";
|
|
|
|
if ( !cmSystemTools::FileExists(newVersionFile.c_str()) )
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Cannot find PackageMaker compiler version file: "
|
|
|
|
<< versionFile.c_str() << " or " << newVersionFile.c_str()
|
|
|
|
<< std::endl);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
versionFile = newVersionFile;
|
2006-03-03 23:04:28 +03:00
|
|
|
}
|
|
|
|
std::ifstream ifs(versionFile.c_str());
|
|
|
|
if ( !ifs )
|
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Cannot open PackageMaker compiler version file" << std::endl);
|
2006-03-03 23:04:28 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// Check the PackageMaker version
|
|
|
|
cmsys::RegularExpression rexKey("<key>CFBundleShortVersionString</key>");
|
2006-03-08 21:59:33 +03:00
|
|
|
cmsys::RegularExpression rexVersion("<string>([0-9]+.[0-9.]+)</string>");
|
2006-03-03 23:04:28 +03:00
|
|
|
std::string line;
|
|
|
|
bool foundKey = false;
|
|
|
|
while ( cmSystemTools::GetLineFromStream(ifs, line) )
|
|
|
|
{
|
|
|
|
if ( rexKey.find(line) )
|
|
|
|
{
|
|
|
|
foundKey = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( !foundKey )
|
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Cannot find CFBundleShortVersionString in the PackageMaker compiler "
|
|
|
|
"version file" << std::endl);
|
2006-03-03 23:04:28 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2006-03-09 16:32:08 +03:00
|
|
|
if ( !cmSystemTools::GetLineFromStream(ifs, line) ||
|
|
|
|
!rexVersion.find(line) )
|
2006-03-03 23:04:28 +03:00
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Problem reading the PackageMaker compiler version file: "
|
|
|
|
<< versionFile.c_str() << std::endl);
|
2006-03-03 23:04:28 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
this->PackageMakerVersion = atof(rexVersion.match(1).c_str());
|
2007-11-05 22:34:36 +03:00
|
|
|
if ( this->PackageMakerVersion < 1.0 )
|
2006-03-03 23:04:28 +03:00
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Require PackageMaker 1.0 or higher"
|
|
|
|
<< std::endl);
|
2006-03-03 23:04:28 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_DEBUG, "PackageMaker version is: "
|
|
|
|
<< this->PackageMakerVersion << std::endl);
|
2006-03-03 23:04:28 +03:00
|
|
|
|
2008-07-09 21:38:56 +04:00
|
|
|
// Determine the package compatibility version. If it wasn't
|
|
|
|
// specified by the user, we define it based on which features the
|
|
|
|
// user requested.
|
|
|
|
const char *packageCompat = this->GetOption("CPACK_OSX_PACKAGE_VERSION");
|
|
|
|
if (packageCompat && *packageCompat)
|
|
|
|
{
|
|
|
|
this->PackageCompatibilityVersion = atof(packageCompat);
|
|
|
|
}
|
|
|
|
else if (this->GetOption("CPACK_DOWNLOAD_SITE"))
|
|
|
|
{
|
|
|
|
this->SetOption("CPACK_OSX_PACKAGE_VERSION", "10.5");
|
|
|
|
this->PackageCompatibilityVersion = 10.5;
|
|
|
|
}
|
|
|
|
else if (this->GetOption("CPACK_COMPONENTS_ALL"))
|
|
|
|
{
|
|
|
|
this->SetOption("CPACK_OSX_PACKAGE_VERSION", "10.4");
|
|
|
|
this->PackageCompatibilityVersion = 10.4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetOption("CPACK_OSX_PACKAGE_VERSION", "10.3");
|
|
|
|
this->PackageCompatibilityVersion = 10.3;
|
|
|
|
}
|
|
|
|
|
2006-03-21 00:24:43 +03:00
|
|
|
pkgPath += "/MacOS";
|
2006-01-02 07:21:05 +03:00
|
|
|
path.push_back(pkgPath);
|
|
|
|
pkgPath = cmSystemTools::FindProgram("PackageMaker", path, false);
|
|
|
|
if ( pkgPath.empty() )
|
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Cannot find PackageMaker compiler"
|
|
|
|
<< std::endl);
|
2006-01-02 07:21:05 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2006-05-02 16:49:01 +04:00
|
|
|
this->SetOptionIfNotSet("CPACK_INSTALLER_PROGRAM", pkgPath.c_str());
|
2006-01-02 07:21:05 +03:00
|
|
|
pkgPath = cmSystemTools::FindProgram("hdiutil", path, false);
|
|
|
|
if ( pkgPath.empty() )
|
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Cannot find hdiutil compiler"
|
|
|
|
<< std::endl);
|
2006-01-02 07:21:05 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2006-05-12 22:44:24 +04:00
|
|
|
this->SetOptionIfNotSet("CPACK_INSTALLER_PROGRAM_DISK_IMAGE",
|
|
|
|
pkgPath.c_str());
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2006-04-15 21:02:18 +04:00
|
|
|
return this->Superclass::InitializeInternal();
|
2006-01-02 07:21:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2008-06-18 15:08:33 +04:00
|
|
|
bool cmCPackPackageMakerGenerator::CopyCreateResourceFile(const char* name,
|
|
|
|
const char* dirName)
|
2006-01-02 07:21:05 +03:00
|
|
|
{
|
|
|
|
std::string uname = cmSystemTools::UpperCase(name);
|
|
|
|
std::string cpackVar = "CPACK_RESOURCE_FILE_" + uname;
|
|
|
|
const char* inFileName = this->GetOption(cpackVar.c_str());
|
|
|
|
if ( !inFileName )
|
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "CPack option: " << cpackVar.c_str()
|
2006-10-30 19:22:48 +03:00
|
|
|
<< " not specified. It should point to "
|
|
|
|
<< (name ? name : "(NULL)")
|
|
|
|
<< ".rtf, " << name
|
|
|
|
<< ".html, or " << name << ".txt file" << std::endl);
|
2006-01-02 07:21:05 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ( !cmSystemTools::FileExists(inFileName) )
|
|
|
|
{
|
2006-10-30 19:22:48 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Cannot find "
|
|
|
|
<< (name ? name : "(NULL)")
|
|
|
|
<< " resource file: " << inFileName << std::endl);
|
2006-01-02 07:21:05 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::string ext = cmSystemTools::GetFilenameLastExtension(inFileName);
|
|
|
|
if ( ext != ".rtfd" && ext != ".rtf" && ext != ".html" && ext != ".txt" )
|
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Bad file extension specified: "
|
|
|
|
<< ext << ". Currently only .rtfd, .rtf, .html, and .txt files allowed."
|
|
|
|
<< std::endl);
|
2006-01-02 07:21:05 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-06-18 15:08:33 +04:00
|
|
|
std::string destFileName = dirName;
|
|
|
|
destFileName += '/';
|
2006-01-02 07:21:05 +03:00
|
|
|
destFileName += name + ext;
|
|
|
|
|
2008-06-18 15:08:33 +04:00
|
|
|
// Set this so that distribution.dist gets the right name (without
|
|
|
|
// the path).
|
|
|
|
this->SetOption(("CPACK_RESOURCE_FILE_" + uname + "_NOPATH").c_str(),
|
|
|
|
(name + ext).c_str());
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2006-10-30 19:22:48 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Configure file: "
|
|
|
|
<< (inFileName ? inFileName : "(NULL)")
|
|
|
|
<< " to " << destFileName.c_str() << std::endl);
|
2006-01-02 07:21:05 +03:00
|
|
|
this->ConfigureFile(inFileName, destFileName.c_str());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
bool cmCPackPackageMakerGenerator::CopyResourcePlistFile(const char* name,
|
|
|
|
const char* outName)
|
2006-01-02 07:21:05 +03:00
|
|
|
{
|
2008-06-17 19:39:26 +04:00
|
|
|
if (!outName)
|
|
|
|
{
|
|
|
|
outName = name;
|
|
|
|
}
|
|
|
|
|
2006-01-02 07:21:05 +03:00
|
|
|
std::string inFName = "CPack.";
|
|
|
|
inFName += name;
|
|
|
|
inFName += ".in";
|
|
|
|
std::string inFileName = this->FindTemplate(inFName.c_str());
|
|
|
|
if ( inFileName.empty() )
|
|
|
|
{
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Cannot find input file: "
|
|
|
|
<< inFName << std::endl);
|
2006-01-02 07:21:05 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string destFileName = this->GetOption("CPACK_TOPLEVEL_DIRECTORY");
|
|
|
|
destFileName += "/";
|
2008-06-17 19:39:26 +04:00
|
|
|
destFileName += outName;
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2006-03-09 00:33:39 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Configure file: "
|
|
|
|
<< inFileName.c_str() << " to " << destFileName.c_str() << std::endl);
|
2006-01-02 07:21:05 +03:00
|
|
|
this->ConfigureFile(inFileName.c_str(), destFileName.c_str());
|
|
|
|
return true;
|
|
|
|
}
|
2008-06-17 19:39:26 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool cmCPackPackageMakerGenerator::RunPackageMaker(const char *command,
|
|
|
|
const char *packageFile)
|
|
|
|
{
|
|
|
|
std::string tmpFile = this->GetOption("CPACK_TOPLEVEL_DIRECTORY");
|
|
|
|
tmpFile += "/PackageMakerOutput.log";
|
|
|
|
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Execute: " << command << std::endl);
|
|
|
|
std::string output;
|
|
|
|
int retVal = 1;
|
|
|
|
bool res = cmSystemTools::RunSingleCommand(command, &output, &retVal, 0,
|
|
|
|
this->GeneratorVerbose, 0);
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Done running package maker"
|
|
|
|
<< std::endl);
|
|
|
|
if ( !res || retVal )
|
|
|
|
{
|
|
|
|
cmGeneratedFileStream ofs(tmpFile.c_str());
|
|
|
|
ofs << "# Run command: " << command << std::endl
|
|
|
|
<< "# Output:" << std::endl
|
|
|
|
<< output.c_str() << std::endl;
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Problem running PackageMaker command: " << command
|
|
|
|
<< std::endl << "Please check " << tmpFile.c_str() << " for errors"
|
|
|
|
<< std::endl);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// sometimes the command finishes but the directory is not yet
|
|
|
|
// created, so try 10 times to see if it shows up
|
|
|
|
int tries = 10;
|
|
|
|
while(tries > 0 &&
|
|
|
|
!cmSystemTools::FileExists(packageFile))
|
|
|
|
{
|
|
|
|
cmSystemTools::Delay(500);
|
|
|
|
tries--;
|
|
|
|
}
|
|
|
|
if(!cmSystemTools::FileExists(packageFile))
|
|
|
|
{
|
|
|
|
cmCPackLogger(
|
|
|
|
cmCPackLog::LOG_ERROR,
|
|
|
|
"Problem running PackageMaker command: " << command
|
|
|
|
<< std::endl << "Package not created: " << packageFile
|
|
|
|
<< std::endl);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
cmCPackPackageMakerGenerator::GetPackageName(const cmCPackComponent& component)
|
|
|
|
{
|
2008-07-09 21:38:56 +04:00
|
|
|
if (component.ArchiveFile.empty())
|
|
|
|
{
|
|
|
|
std::string packagesDir = this->GetOption("CPACK_TEMPORARY_DIRECTORY");
|
|
|
|
packagesDir += ".dummy";
|
|
|
|
cmOStringStream out;
|
|
|
|
out << cmSystemTools::GetFilenameWithoutLastExtension(packagesDir)
|
|
|
|
<< "-" << component.Name << ".pkg";
|
|
|
|
return out.str();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return component.ArchiveFile + ".pkg";
|
|
|
|
}
|
2008-06-17 19:39:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool
|
|
|
|
cmCPackPackageMakerGenerator::
|
|
|
|
GenerateComponentPackage(const char *packageFile,
|
|
|
|
const char *packageDir,
|
|
|
|
const cmCPackComponent& component)
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_OUTPUT,
|
2008-10-01 17:04:27 +04:00
|
|
|
"- Building component package: " <<
|
|
|
|
packageFile << std::endl);
|
2008-06-17 19:39:26 +04:00
|
|
|
|
2008-07-09 21:38:56 +04:00
|
|
|
// The command that will be used to run PackageMaker
|
|
|
|
cmOStringStream pkgCmd;
|
|
|
|
|
|
|
|
if (this->PackageCompatibilityVersion < 10.5 ||
|
|
|
|
this->PackageMakerVersion < 3.0)
|
|
|
|
{
|
|
|
|
// Create Description.plist and Info.plist files for normal Mac OS
|
|
|
|
// X packages, which work on Mac OS X 10.3 and newer.
|
|
|
|
std::string descriptionFile = this->GetOption("CPACK_TOPLEVEL_DIRECTORY");
|
|
|
|
descriptionFile += '/' + component.Name + "-Description.plist";
|
|
|
|
std::ofstream out(descriptionFile.c_str());
|
|
|
|
out << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" << std::endl
|
|
|
|
<< "<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\""
|
|
|
|
<< "\"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">" << std::endl
|
|
|
|
<< "<plist version=\"1.4\">" << std::endl
|
|
|
|
<< "<dict>" << std::endl
|
|
|
|
<< " <key>IFPkgDescriptionTitle</key>" << std::endl
|
|
|
|
<< " <string>" << component.DisplayName << "</string>" << std::endl
|
|
|
|
<< " <key>IFPkgDescriptionVersion</key>" << std::endl
|
|
|
|
<< " <string>" << this->GetOption("CPACK_PACKAGE_VERSION")
|
|
|
|
<< "</string>" << std::endl
|
|
|
|
<< " <key>IFPkgDescriptionDescription</key>" << std::endl
|
|
|
|
<< " <string>" + this->EscapeForXML(component.Description)
|
|
|
|
<< "</string>" << std::endl
|
|
|
|
<< "</dict>" << std::endl
|
|
|
|
<< "</plist>" << std::endl;
|
|
|
|
out.close();
|
|
|
|
|
|
|
|
// Create the Info.plist file for this component
|
|
|
|
std::string moduleVersionSuffix = ".";
|
|
|
|
moduleVersionSuffix += component.Name;
|
2008-10-01 17:04:27 +04:00
|
|
|
this->SetOption("CPACK_MODULE_VERSION_SUFFIX",
|
|
|
|
moduleVersionSuffix.c_str());
|
2008-07-09 21:38:56 +04:00
|
|
|
std::string infoFileName = component.Name;
|
|
|
|
infoFileName += "-Info.plist";
|
|
|
|
if (!this->CopyResourcePlistFile("Info.plist", infoFileName.c_str()))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
pkgCmd << "\"" << this->GetOption("CPACK_INSTALLER_PROGRAM")
|
|
|
|
<< "\" -build -p \"" << packageFile << "\""
|
|
|
|
<< " -f \"" << packageDir << "\""
|
|
|
|
<< " -i \"" << this->GetOption("CPACK_TOPLEVEL_DIRECTORY")
|
|
|
|
<< "/" << infoFileName << "\""
|
|
|
|
<< " -d \"" << descriptionFile << "\"";
|
|
|
|
}
|
|
|
|
else
|
2008-06-17 19:39:26 +04:00
|
|
|
{
|
2008-07-09 21:38:56 +04:00
|
|
|
// Create a "flat" package on Mac OS X 10.5 and newer. Flat
|
|
|
|
// packages are stored in a single file, rather than a directory
|
|
|
|
// like normal packages, and can be downloaded by the installer
|
|
|
|
// on-the-fly in Mac OS X 10.5 or newer. Thus, we need to create
|
|
|
|
// flat packages when the packages will be downloaded on the fly.
|
|
|
|
std::string pkgId = "com.";
|
|
|
|
pkgId += this->GetOption("CPACK_PACKAGE_VENDOR");
|
|
|
|
pkgId += '.';
|
|
|
|
pkgId += this->GetOption("CPACK_PACKAGE_NAME");
|
|
|
|
pkgId += '.';
|
|
|
|
pkgId += component.Name;
|
|
|
|
|
|
|
|
pkgCmd << "\"" << this->GetOption("CPACK_INSTALLER_PROGRAM")
|
|
|
|
<< "\" --root \"" << packageDir << "\""
|
|
|
|
<< " --id " << pkgId
|
|
|
|
<< " --target " << this->GetOption("CPACK_OSX_PACKAGE_VERSION")
|
|
|
|
<< " --out \"" << packageFile << "\"";
|
2008-06-17 19:39:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run PackageMaker
|
|
|
|
return RunPackageMaker(pkgCmd.str().c_str(), packageFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmCPackPackageMakerGenerator::
|
|
|
|
WriteDistributionFile(const char* metapackageFile)
|
|
|
|
{
|
|
|
|
std::string distributionTemplate
|
|
|
|
= this->FindTemplate("CPack.distribution.dist.in");
|
|
|
|
if ( distributionTemplate.empty() )
|
|
|
|
{
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Cannot find input file: "
|
|
|
|
<< distributionTemplate << std::endl);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string distributionFile = metapackageFile;
|
|
|
|
distributionFile += "/Contents/distribution.dist";
|
|
|
|
|
|
|
|
// Create the choice outline, which provides a tree-based view of
|
|
|
|
// the components in their groups.
|
|
|
|
cmOStringStream choiceOut;
|
|
|
|
choiceOut << "<choices-outline>" << std::endl;
|
|
|
|
|
|
|
|
// Emit the outline for the groups
|
|
|
|
std::map<std::string, cmCPackComponentGroup>::iterator groupIt;
|
|
|
|
for (groupIt = this->ComponentGroups.begin();
|
|
|
|
groupIt != this->ComponentGroups.end();
|
|
|
|
++groupIt)
|
|
|
|
{
|
2008-07-08 19:52:25 +04:00
|
|
|
if (groupIt->second.ParentGroup == 0)
|
|
|
|
{
|
|
|
|
CreateChoiceOutline(groupIt->second, choiceOut);
|
|
|
|
}
|
2008-06-17 19:39:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Emit the outline for the non-grouped components
|
|
|
|
std::map<std::string, cmCPackComponent>::iterator compIt;
|
|
|
|
for (compIt = this->Components.begin(); compIt != this->Components.end();
|
|
|
|
++compIt)
|
|
|
|
{
|
|
|
|
if (!compIt->second.Group)
|
|
|
|
{
|
|
|
|
choiceOut << "<line choice=\"" << compIt->first << "Choice\"></line>"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
choiceOut << "</choices-outline>" << std::endl;
|
|
|
|
|
|
|
|
// Create the actual choices
|
|
|
|
for (groupIt = this->ComponentGroups.begin();
|
|
|
|
groupIt != this->ComponentGroups.end();
|
|
|
|
++groupIt)
|
|
|
|
{
|
|
|
|
CreateChoice(groupIt->second, choiceOut);
|
|
|
|
}
|
|
|
|
for (compIt = this->Components.begin(); compIt != this->Components.end();
|
|
|
|
++compIt)
|
|
|
|
{
|
|
|
|
CreateChoice(compIt->second, choiceOut);
|
|
|
|
}
|
|
|
|
this->SetOption("CPACK_PACKAGEMAKER_CHOICES", choiceOut.str().c_str());
|
|
|
|
|
|
|
|
// Create the distribution.dist file in the metapackage to turn it
|
|
|
|
// into a distribution package.
|
|
|
|
this->ConfigureFile(distributionTemplate.c_str(),
|
|
|
|
distributionFile.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmCPackPackageMakerGenerator::
|
|
|
|
CreateChoiceOutline(const cmCPackComponentGroup& group, cmOStringStream& out)
|
|
|
|
{
|
|
|
|
out << "<line choice=\"" << group.Name << "Choice\">" << std::endl;
|
2008-07-08 19:52:25 +04:00
|
|
|
std::vector<cmCPackComponentGroup*>::const_iterator groupIt;
|
|
|
|
for (groupIt = group.Subgroups.begin(); groupIt != group.Subgroups.end();
|
|
|
|
++groupIt)
|
|
|
|
{
|
|
|
|
CreateChoiceOutline(**groupIt, out);
|
|
|
|
}
|
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
std::vector<cmCPackComponent*>::const_iterator compIt;
|
|
|
|
for (compIt = group.Components.begin(); compIt != group.Components.end();
|
|
|
|
++compIt)
|
|
|
|
{
|
|
|
|
out << " <line choice=\"" << (*compIt)->Name << "Choice\"></line>"
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
out << "</line>" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmCPackPackageMakerGenerator::CreateChoice(const cmCPackComponentGroup& group,
|
|
|
|
cmOStringStream& out)
|
|
|
|
{
|
|
|
|
out << "<choice id=\"" << group.Name << "Choice\" "
|
|
|
|
<< "title=\"" << group.DisplayName << "\" "
|
|
|
|
<< "start_selected=\"true\" "
|
|
|
|
<< "start_enabled=\"true\" "
|
|
|
|
<< "start_visible=\"true\" ";
|
|
|
|
if (!group.Description.empty())
|
|
|
|
{
|
|
|
|
out << "description=\"" << EscapeForXML(group.Description)
|
|
|
|
<< "\"";
|
|
|
|
}
|
|
|
|
out << "></choice>" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmCPackPackageMakerGenerator::CreateChoice(const cmCPackComponent& component,
|
|
|
|
cmOStringStream& out)
|
|
|
|
{
|
|
|
|
std::string packageId = "com.";
|
|
|
|
packageId += this->GetOption("CPACK_PACKAGE_VENDOR");
|
|
|
|
packageId += '.';
|
|
|
|
packageId += this->GetOption("CPACK_PACKAGE_NAME");
|
|
|
|
packageId += '.';
|
|
|
|
packageId += component.Name;
|
|
|
|
|
|
|
|
out << "<choice id=\"" << component.Name << "Choice\" "
|
|
|
|
<< "title=\"" << component.DisplayName << "\" "
|
|
|
|
<< "start_selected=\""
|
2008-10-01 17:04:27 +04:00
|
|
|
<< (component.IsDisabledByDefault &&
|
|
|
|
!component.IsRequired? "false" : "true")
|
2008-06-17 19:39:26 +04:00
|
|
|
<< "\" "
|
|
|
|
<< "start_enabled=\""
|
|
|
|
<< (component.IsRequired? "false" : "true")
|
|
|
|
<< "\" "
|
|
|
|
<< "start_visible=\"" << (component.IsHidden? "false" : "true") << "\" ";
|
|
|
|
if (!component.Description.empty())
|
|
|
|
{
|
|
|
|
out << "description=\"" << EscapeForXML(component.Description)
|
|
|
|
<< "\" ";
|
|
|
|
}
|
2008-10-01 17:04:27 +04:00
|
|
|
if (!component.Dependencies.empty() ||
|
|
|
|
!component.ReverseDependencies.empty())
|
2008-06-17 19:39:26 +04:00
|
|
|
{
|
|
|
|
// The "selected" expression is evaluated each time any choice is
|
|
|
|
// selected, for all choices *except* the one that the user
|
|
|
|
// selected. A component is marked selected if it has been
|
|
|
|
// selected (my.choice.selected in Javascript) and all of the
|
|
|
|
// components it depends on have been selected (transitively) or
|
|
|
|
// if any of the components that depend on it have been selected
|
|
|
|
// (transitively). Assume that we have components A, B, C, D, and
|
|
|
|
// E, where each component depends on the previous component (B
|
|
|
|
// depends on A, C depends on B, D depends on C, and E depends on
|
|
|
|
// D). The expression we build for the component C will be
|
|
|
|
// my.choice.selected && B && A || D || E
|
|
|
|
// This way, selecting C will automatically select everything it depends
|
|
|
|
// on (B and A), while selecting something that depends on C--either D
|
|
|
|
// or E--will automatically cause C to get selected.
|
|
|
|
out << "selected=\"my.choice.selected";
|
2008-07-30 21:28:17 +04:00
|
|
|
std::set<const cmCPackComponent *> visited;
|
|
|
|
AddDependencyAttributes(component, visited, out);
|
|
|
|
visited.clear();
|
|
|
|
AddReverseDependencyAttributes(component, visited, out);
|
2008-06-17 19:39:26 +04:00
|
|
|
out << "\"";
|
|
|
|
}
|
|
|
|
out << ">" << std::endl;
|
|
|
|
out << " <pkg-ref id=\"" << packageId << "\"></pkg-ref>" << std::endl;
|
|
|
|
out << "</choice>" << std::endl;
|
|
|
|
|
|
|
|
// Create a description of the package associated with this
|
|
|
|
// component.
|
|
|
|
std::string relativePackageLocation = "Contents/Packages/";
|
2008-07-09 21:38:56 +04:00
|
|
|
relativePackageLocation += this->GetPackageName(component);
|
|
|
|
|
|
|
|
// Determine the installed size of the package.
|
|
|
|
std::string dirName = this->GetOption("CPACK_TEMPORARY_DIRECTORY");
|
|
|
|
dirName += '/';
|
|
|
|
dirName += component.Name;
|
|
|
|
unsigned long installedSize
|
|
|
|
= component.GetInstalledSizeInKbytes(dirName.c_str());
|
2008-06-17 19:39:26 +04:00
|
|
|
|
|
|
|
out << "<pkg-ref id=\"" << packageId << "\" "
|
|
|
|
<< "version=\"" << this->GetOption("CPACK_PACKAGE_VERSION") << "\" "
|
|
|
|
<< "installKBytes=\"" << installedSize << "\" "
|
2008-07-09 21:38:56 +04:00
|
|
|
<< "auth=\"Admin\" onConclusion=\"None\">";
|
|
|
|
if (component.IsDownloaded)
|
|
|
|
{
|
|
|
|
out << this->GetOption("CPACK_DOWNLOAD_SITE")
|
|
|
|
<< this->GetPackageName(component);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out << "file:./" << relativePackageLocation;
|
|
|
|
}
|
|
|
|
out << "</pkg-ref>" << std::endl;
|
2008-06-17 19:39:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmCPackPackageMakerGenerator::
|
2008-07-30 21:28:17 +04:00
|
|
|
AddDependencyAttributes(const cmCPackComponent& component,
|
|
|
|
std::set<const cmCPackComponent *>& visited,
|
|
|
|
cmOStringStream& out)
|
2008-06-17 19:39:26 +04:00
|
|
|
{
|
2008-07-30 21:28:17 +04:00
|
|
|
if (visited.find(&component) != visited.end())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
visited.insert(&component);
|
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
std::vector<cmCPackComponent *>::const_iterator dependIt;
|
|
|
|
for (dependIt = component.Dependencies.begin();
|
|
|
|
dependIt != component.Dependencies.end();
|
|
|
|
++dependIt)
|
|
|
|
{
|
2008-10-01 17:04:27 +04:00
|
|
|
out << " && choices['" <<
|
|
|
|
(*dependIt)->Name << "Choice'].selected";
|
2008-07-30 21:28:17 +04:00
|
|
|
AddDependencyAttributes(**dependIt, visited, out);
|
2008-06-17 19:39:26 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmCPackPackageMakerGenerator::
|
|
|
|
AddReverseDependencyAttributes(const cmCPackComponent& component,
|
2008-07-30 21:28:17 +04:00
|
|
|
std::set<const cmCPackComponent *>& visited,
|
2008-06-17 19:39:26 +04:00
|
|
|
cmOStringStream& out)
|
|
|
|
{
|
2008-07-30 21:28:17 +04:00
|
|
|
if (visited.find(&component) != visited.end())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
visited.insert(&component);
|
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
std::vector<cmCPackComponent *>::const_iterator dependIt;
|
|
|
|
for (dependIt = component.ReverseDependencies.begin();
|
|
|
|
dependIt != component.ReverseDependencies.end();
|
|
|
|
++dependIt)
|
|
|
|
{
|
|
|
|
out << " || choices['" << (*dependIt)->Name << "Choice'].selected";
|
2008-07-30 21:28:17 +04:00
|
|
|
AddReverseDependencyAttributes(**dependIt, visited, out);
|
2008-06-17 19:39:26 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
std::string cmCPackPackageMakerGenerator::EscapeForXML(std::string str)
|
|
|
|
{
|
|
|
|
cmSystemTools::ReplaceString(str, "&", "&");
|
|
|
|
cmSystemTools::ReplaceString(str, "<", "<");
|
|
|
|
cmSystemTools::ReplaceString(str, ">", ">");
|
|
|
|
cmSystemTools::ReplaceString(str, "\"", """);
|
|
|
|
return str;
|
|
|
|
}
|