2016-04-05 03:53:05 +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 "cmCPackPKGGenerator.h"
|
|
|
|
|
2016-06-07 15:39:45 +03:00
|
|
|
#include "cmCPackComponentGroup.h"
|
|
|
|
#include "cmCPackLog.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
2016-04-05 03:53:05 +03:00
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmMakefile.h"
|
2016-06-07 15:39:45 +03:00
|
|
|
#include "cmSystemTools.h"
|
2016-06-09 00:35:31 +03:00
|
|
|
#include "cmXMLWriter.h"
|
2016-06-07 15:39:45 +03:00
|
|
|
#include "cmake.h"
|
2016-04-05 03:53:05 +03:00
|
|
|
|
|
|
|
#include <cmsys/Glob.hxx>
|
2016-06-07 15:39:45 +03:00
|
|
|
#include <cmsys/SystemTools.hxx>
|
2016-04-05 03:53:05 +03:00
|
|
|
|
|
|
|
cmCPackPKGGenerator::cmCPackPKGGenerator()
|
|
|
|
{
|
|
|
|
this->componentPackageMethod = ONE_PACKAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmCPackPKGGenerator::~cmCPackPKGGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCPackPKGGenerator::SupportsComponentInstallation() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmCPackPKGGenerator::InitializeInternal()
|
|
|
|
{
|
2016-06-07 15:39:45 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_DEBUG, "cmCPackPKGGenerator::Initialize()"
|
|
|
|
<< std::endl);
|
2016-04-05 03:53:05 +03:00
|
|
|
|
|
|
|
return this->Superclass::InitializeInternal();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string cmCPackPKGGenerator::GetPackageName(
|
|
|
|
const cmCPackComponent& component)
|
|
|
|
{
|
|
|
|
if (component.ArchiveFile.empty()) {
|
|
|
|
std::string packagesDir = this->GetOption("CPACK_TEMPORARY_DIRECTORY");
|
|
|
|
packagesDir += ".dummy";
|
|
|
|
std::ostringstream out;
|
2016-06-07 15:39:45 +03:00
|
|
|
out << cmSystemTools::GetFilenameWithoutLastExtension(packagesDir) << "-"
|
|
|
|
<< component.Name << ".pkg";
|
2016-04-05 03:53:05 +03:00
|
|
|
return out.str();
|
|
|
|
} else {
|
|
|
|
return component.ArchiveFile + ".pkg";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 15:39:45 +03:00
|
|
|
void cmCPackPKGGenerator::WriteDistributionFile(const char* metapackageFile)
|
2016-04-05 03:53:05 +03:00
|
|
|
{
|
|
|
|
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.
|
|
|
|
std::ostringstream choiceOut;
|
2016-06-09 00:35:31 +03:00
|
|
|
cmXMLWriter xout(choiceOut, 1);
|
|
|
|
xout.StartElement("choices-outline");
|
2016-04-05 03:53:05 +03:00
|
|
|
|
|
|
|
// Emit the outline for the groups
|
|
|
|
std::map<std::string, cmCPackComponentGroup>::iterator groupIt;
|
|
|
|
for (groupIt = this->ComponentGroups.begin();
|
|
|
|
groupIt != this->ComponentGroups.end(); ++groupIt) {
|
|
|
|
if (groupIt->second.ParentGroup == 0) {
|
2016-06-09 00:35:31 +03:00
|
|
|
CreateChoiceOutline(groupIt->second, xout);
|
2016-04-05 03:53:05 +03: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) {
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.StartElement("line");
|
|
|
|
xout.Attribute("choice", compIt->first + "Choice");
|
|
|
|
xout.Content(""); // Avoid self-closing tag.
|
|
|
|
xout.EndElement();
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!this->PostFlightComponent.Name.empty()) {
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.StartElement("line");
|
|
|
|
xout.Attribute("choice", PostFlightComponent.Name + "Choice");
|
|
|
|
xout.Content(""); // Avoid self-closing tag.
|
|
|
|
xout.EndElement();
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.EndElement(); // choices-outline>
|
2016-04-05 03:53:05 +03:00
|
|
|
|
|
|
|
// Create the actual choices
|
|
|
|
for (groupIt = this->ComponentGroups.begin();
|
|
|
|
groupIt != this->ComponentGroups.end(); ++groupIt) {
|
2016-06-09 00:35:31 +03:00
|
|
|
CreateChoice(groupIt->second, xout);
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
|
|
|
for (compIt = this->Components.begin(); compIt != this->Components.end();
|
|
|
|
++compIt) {
|
2016-06-09 00:35:31 +03:00
|
|
|
CreateChoice(compIt->second, xout);
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!this->PostFlightComponent.Name.empty()) {
|
2016-06-09 00:35:31 +03:00
|
|
|
CreateChoice(PostFlightComponent, xout);
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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 cmCPackPKGGenerator::CreateChoiceOutline(
|
2016-06-09 00:35:31 +03:00
|
|
|
const cmCPackComponentGroup& group, cmXMLWriter& xout)
|
2016-04-05 03:53:05 +03:00
|
|
|
{
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.StartElement("line");
|
|
|
|
xout.Attribute("choice", group.Name + "Choice");
|
2016-04-05 03:53:05 +03:00
|
|
|
std::vector<cmCPackComponentGroup*>::const_iterator groupIt;
|
|
|
|
for (groupIt = group.Subgroups.begin(); groupIt != group.Subgroups.end();
|
|
|
|
++groupIt) {
|
2016-06-09 00:35:31 +03:00
|
|
|
CreateChoiceOutline(**groupIt, xout);
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<cmCPackComponent*>::const_iterator compIt;
|
|
|
|
for (compIt = group.Components.begin(); compIt != group.Components.end();
|
|
|
|
++compIt) {
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.StartElement("line");
|
|
|
|
xout.Attribute("choice", (*compIt)->Name + "Choice");
|
|
|
|
xout.Content(""); // Avoid self-closing tag.
|
|
|
|
xout.EndElement();
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.EndElement();
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
|
|
|
|
2016-06-07 15:39:45 +03:00
|
|
|
void cmCPackPKGGenerator::CreateChoice(const cmCPackComponentGroup& group,
|
2016-06-09 00:35:31 +03:00
|
|
|
cmXMLWriter& xout)
|
2016-04-05 03:53:05 +03:00
|
|
|
{
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.StartElement("choice");
|
|
|
|
xout.Attribute("id", group.Name + "Choice");
|
|
|
|
xout.Attribute("title", group.DisplayName);
|
|
|
|
xout.Attribute("start_selected", "true");
|
|
|
|
xout.Attribute("start_enabled", "true");
|
|
|
|
xout.Attribute("start_visible", "true");
|
2016-04-05 03:53:05 +03:00
|
|
|
if (!group.Description.empty()) {
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.Attribute("description", group.Description);
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.EndElement();
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
|
|
|
|
2016-06-07 15:39:45 +03:00
|
|
|
void cmCPackPKGGenerator::CreateChoice(const cmCPackComponent& component,
|
2016-06-09 00:35:31 +03:00
|
|
|
cmXMLWriter& xout)
|
2016-04-05 03:53:05 +03:00
|
|
|
{
|
|
|
|
std::string packageId = "com.";
|
|
|
|
packageId += this->GetOption("CPACK_PACKAGE_VENDOR");
|
|
|
|
packageId += '.';
|
|
|
|
packageId += this->GetOption("CPACK_PACKAGE_NAME");
|
|
|
|
packageId += '.';
|
|
|
|
packageId += component.Name;
|
|
|
|
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.StartElement("choice");
|
|
|
|
xout.Attribute("id", component.Name + "Choice");
|
|
|
|
xout.Attribute("title", component.DisplayName);
|
|
|
|
xout.Attribute(
|
|
|
|
"start_selected",
|
|
|
|
component.IsDisabledByDefault && !component.IsRequired ? "false" : "true");
|
|
|
|
xout.Attribute("start_enabled", component.IsRequired ? "false" : "true");
|
|
|
|
xout.Attribute("start_visible", component.IsHidden ? "false" : "true");
|
2016-04-05 03:53:05 +03:00
|
|
|
if (!component.Description.empty()) {
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.Attribute("description", component.Description);
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
|
|
|
if (!component.Dependencies.empty() ||
|
|
|
|
!component.ReverseDependencies.empty()) {
|
|
|
|
// 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.
|
2016-06-09 00:35:31 +03:00
|
|
|
std::ostringstream selected("my.choice.selected");
|
2016-04-05 03:53:05 +03:00
|
|
|
std::set<const cmCPackComponent*> visited;
|
2016-06-09 00:35:31 +03:00
|
|
|
AddDependencyAttributes(component, visited, selected);
|
2016-04-05 03:53:05 +03:00
|
|
|
visited.clear();
|
2016-06-09 00:35:31 +03:00
|
|
|
AddReverseDependencyAttributes(component, visited, selected);
|
|
|
|
xout.Attribute("selected", selected.str());
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.StartElement("pkg-ref");
|
|
|
|
xout.Attribute("id", packageId);
|
|
|
|
xout.EndElement(); // pkg-ref
|
|
|
|
xout.EndElement(); // choice
|
2016-04-05 03:53:05 +03:00
|
|
|
|
|
|
|
// Create a description of the package associated with this
|
|
|
|
// component.
|
|
|
|
std::string relativePackageLocation = "Contents/Packages/";
|
|
|
|
relativePackageLocation += this->GetPackageName(component);
|
|
|
|
|
|
|
|
// Determine the installed size of the package.
|
|
|
|
std::string dirName = this->GetOption("CPACK_TEMPORARY_DIRECTORY");
|
|
|
|
dirName += '/';
|
|
|
|
dirName += component.Name;
|
|
|
|
dirName += this->GetOption("CPACK_PACKAGING_INSTALL_PREFIX");
|
2016-09-04 17:55:05 +03:00
|
|
|
unsigned long installedSize = component.GetInstalledSizeInKbytes(dirName);
|
2016-04-05 03:53:05 +03:00
|
|
|
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.StartElement("pkg-ref");
|
|
|
|
xout.Attribute("id", packageId);
|
|
|
|
xout.Attribute("version", this->GetOption("CPACK_PACKAGE_VERSION"));
|
|
|
|
xout.Attribute("installKBytes", installedSize);
|
|
|
|
xout.Attribute("auth", "Admin");
|
|
|
|
xout.Attribute("onConclusion", "None");
|
2016-04-05 03:53:05 +03:00
|
|
|
if (component.IsDownloaded) {
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.Content(this->GetOption("CPACK_DOWNLOAD_SITE"));
|
|
|
|
xout.Content(this->GetPackageName(component));
|
2016-04-05 03:53:05 +03:00
|
|
|
} else {
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.Content("file:./");
|
|
|
|
xout.Content(relativePackageLocation);
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
2016-06-09 00:35:31 +03:00
|
|
|
xout.EndElement(); // pkg-ref
|
2016-04-05 03:53:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCPackPKGGenerator::AddDependencyAttributes(
|
|
|
|
const cmCPackComponent& component,
|
|
|
|
std::set<const cmCPackComponent*>& visited, std::ostringstream& out)
|
|
|
|
{
|
|
|
|
if (visited.find(&component) != visited.end()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
visited.insert(&component);
|
|
|
|
|
|
|
|
std::vector<cmCPackComponent*>::const_iterator dependIt;
|
|
|
|
for (dependIt = component.Dependencies.begin();
|
|
|
|
dependIt != component.Dependencies.end(); ++dependIt) {
|
2016-06-09 00:35:31 +03:00
|
|
|
out << " && choices['" << (*dependIt)->Name << "Choice'].selected";
|
2016-04-05 03:53:05 +03:00
|
|
|
AddDependencyAttributes(**dependIt, visited, out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCPackPKGGenerator::AddReverseDependencyAttributes(
|
|
|
|
const cmCPackComponent& component,
|
|
|
|
std::set<const cmCPackComponent*>& visited, std::ostringstream& out)
|
|
|
|
{
|
|
|
|
if (visited.find(&component) != visited.end()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
visited.insert(&component);
|
|
|
|
|
|
|
|
std::vector<cmCPackComponent*>::const_iterator dependIt;
|
|
|
|
for (dependIt = component.ReverseDependencies.begin();
|
|
|
|
dependIt != component.ReverseDependencies.end(); ++dependIt) {
|
|
|
|
out << " || choices['" << (*dependIt)->Name << "Choice'].selected";
|
|
|
|
AddReverseDependencyAttributes(**dependIt, visited, out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 15:39:45 +03:00
|
|
|
bool cmCPackPKGGenerator::CopyCreateResourceFile(const std::string& name,
|
|
|
|
const std::string& dirName)
|
2016-04-05 03:53:05 +03:00
|
|
|
{
|
|
|
|
std::string uname = cmSystemTools::UpperCase(name);
|
|
|
|
std::string cpackVar = "CPACK_RESOURCE_FILE_" + uname;
|
2016-09-04 17:55:05 +03:00
|
|
|
const char* inFileName = this->GetOption(cpackVar);
|
2016-04-05 03:53:05 +03:00
|
|
|
if (!inFileName) {
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "CPack option: "
|
|
|
|
<< cpackVar.c_str()
|
|
|
|
<< " not specified. It should point to "
|
|
|
|
<< (!name.empty() ? name : "<empty>") << ".rtf, " << name
|
|
|
|
<< ".html, or " << name << ".txt file" << std::endl);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!cmSystemTools::FileExists(inFileName)) {
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR, "Cannot find "
|
|
|
|
<< (!name.empty() ? name : "<empty>")
|
|
|
|
<< " resource file: " << inFileName << std::endl);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::string ext = cmSystemTools::GetFilenameLastExtension(inFileName);
|
|
|
|
if (ext != ".rtfd" && ext != ".rtf" && ext != ".html" && ext != ".txt") {
|
|
|
|
cmCPackLogger(
|
|
|
|
cmCPackLog::LOG_ERROR, "Bad file extension specified: "
|
|
|
|
<< ext
|
|
|
|
<< ". Currently only .rtfd, .rtf, .html, and .txt files allowed."
|
|
|
|
<< std::endl);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string destFileName = dirName;
|
|
|
|
destFileName += '/';
|
|
|
|
destFileName += name + ext;
|
|
|
|
|
|
|
|
// Set this so that distribution.dist gets the right name (without
|
|
|
|
// the path).
|
2016-09-04 17:55:05 +03:00
|
|
|
this->SetOption("CPACK_RESOURCE_FILE_" + uname + "_NOPATH",
|
2016-04-05 03:53:05 +03:00
|
|
|
(name + ext).c_str());
|
|
|
|
|
2016-06-07 00:53:32 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE,
|
|
|
|
"Configure file: " << (inFileName ? inFileName : "(NULL)")
|
|
|
|
<< " to " << destFileName << std::endl);
|
2016-04-05 03:53:05 +03:00
|
|
|
this->ConfigureFile(inFileName, destFileName.c_str());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-07 15:39:45 +03:00
|
|
|
bool cmCPackPKGGenerator::CopyResourcePlistFile(const std::string& name,
|
|
|
|
const char* outName)
|
2016-04-05 03:53:05 +03:00
|
|
|
{
|
|
|
|
if (!outName) {
|
|
|
|
outName = name.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string inFName = "CPack.";
|
|
|
|
inFName += name;
|
|
|
|
inFName += ".in";
|
|
|
|
std::string inFileName = this->FindTemplate(inFName.c_str());
|
|
|
|
if (inFileName.empty()) {
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
|
|
|
"Cannot find input file: " << inFName << std::endl);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string destFileName = this->GetOption("CPACK_TOPLEVEL_DIRECTORY");
|
|
|
|
destFileName += "/";
|
|
|
|
destFileName += outName;
|
|
|
|
|
2016-06-07 00:53:32 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Configure file: "
|
|
|
|
<< inFileName << " to " << destFileName << std::endl);
|
2016-04-05 03:53:05 +03:00
|
|
|
this->ConfigureFile(inFileName.c_str(), destFileName.c_str());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmCPackPKGGenerator::CopyInstallScript(const std::string& resdir,
|
|
|
|
const std::string& script,
|
|
|
|
const std::string& name)
|
|
|
|
{
|
|
|
|
std::string dst = resdir;
|
|
|
|
dst += "/";
|
|
|
|
dst += name;
|
2016-09-04 17:55:05 +03:00
|
|
|
cmSystemTools::CopyFileAlways(script, dst);
|
2016-04-05 03:53:05 +03:00
|
|
|
cmSystemTools::SetPermissions(dst.c_str(), 0777);
|
2016-06-07 00:53:32 +03:00
|
|
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE,
|
|
|
|
"copy script : " << script << "\ninto " << dst << std::endl);
|
2016-04-05 03:53:05 +03:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|