2014-08-06 19:23:00 +04: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.
|
|
|
|
============================================================================*/
|
|
|
|
|
|
|
|
#ifndef cmCPackIFWPackage_h
|
|
|
|
#define cmCPackIFWPackage_h
|
|
|
|
|
2014-08-12 22:44:02 +04:00
|
|
|
#include <cmStandardIncludes.h>
|
2014-08-06 19:23:00 +04:00
|
|
|
|
|
|
|
class cmCPackComponent;
|
|
|
|
class cmCPackComponentGroup;
|
|
|
|
class cmCPackIFWInstaller;
|
|
|
|
class cmCPackIFWGenerator;
|
2015-07-16 22:53:57 +03:00
|
|
|
class cmXMLWriter;
|
2014-08-06 19:23:00 +04:00
|
|
|
|
|
|
|
/** \class cmCPackIFWPackage
|
|
|
|
* \brief A single component to be installed by CPack IFW generator
|
|
|
|
*/
|
|
|
|
class cmCPackIFWPackage
|
|
|
|
{
|
2016-05-06 21:49:44 +03:00
|
|
|
public:
|
|
|
|
// Types
|
|
|
|
|
2014-08-06 19:23:00 +04:00
|
|
|
enum CompareTypes
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
CompareNone = 0x0,
|
|
|
|
CompareEqual = 0x1,
|
|
|
|
CompareLess = 0x2,
|
|
|
|
CompareLessOrEqual = 0x3,
|
|
|
|
CompareGreater = 0x4,
|
2014-08-06 19:23:00 +04:00
|
|
|
CompareGreaterOrEqual = 0x5
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CompareStruct
|
|
|
|
{
|
|
|
|
CompareStruct();
|
|
|
|
|
|
|
|
unsigned int Type;
|
|
|
|
std::string Value;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DependenceStruct
|
|
|
|
{
|
|
|
|
DependenceStruct();
|
2016-05-16 17:34:04 +03:00
|
|
|
DependenceStruct(const std::string& dependence);
|
2014-08-06 19:23:00 +04:00
|
|
|
|
|
|
|
std::string Name;
|
|
|
|
CompareStruct Compare;
|
|
|
|
|
|
|
|
std::string NameWithCompare() const;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool operator<(const DependenceStruct& other) const
|
|
|
|
{
|
2014-08-06 19:23:00 +04:00
|
|
|
return Name < other.Name;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-08-06 19:23:00 +04:00
|
|
|
};
|
|
|
|
|
2016-05-06 21:49:44 +03:00
|
|
|
public:
|
|
|
|
// [Con|De]structor
|
2014-08-06 19:23:00 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct package
|
|
|
|
*/
|
|
|
|
cmCPackIFWPackage();
|
|
|
|
|
2016-05-06 21:49:44 +03:00
|
|
|
public:
|
|
|
|
// Configuration
|
2014-08-06 19:23:00 +04:00
|
|
|
|
|
|
|
/// Human-readable name of the component
|
|
|
|
std::string DisplayName;
|
|
|
|
|
|
|
|
/// Human-readable description of the component
|
|
|
|
std::string Description;
|
|
|
|
|
|
|
|
/// Version number of the component
|
|
|
|
std::string Version;
|
|
|
|
|
|
|
|
/// Date when this component version was released
|
|
|
|
std::string ReleaseDate;
|
|
|
|
|
|
|
|
/// Domain-like identification for this component
|
|
|
|
std::string Name;
|
|
|
|
|
|
|
|
/// File name of a script being loaded
|
|
|
|
std::string Script;
|
|
|
|
|
|
|
|
/// List of license agreements to be accepted by the installing user
|
|
|
|
std::vector<std::string> Licenses;
|
|
|
|
|
|
|
|
/// Priority of the component in the tree
|
|
|
|
std::string SortingPriority;
|
|
|
|
|
|
|
|
/// Set to true to preselect the component in the installer
|
|
|
|
std::string Default;
|
|
|
|
|
2016-05-23 15:32:22 +03:00
|
|
|
/// Marks the package as essential to force a restart of the MaintenanceTool
|
|
|
|
std::string Essential;
|
|
|
|
|
2014-08-06 19:23:00 +04:00
|
|
|
/// Set to true to hide the component from the installer
|
|
|
|
std::string Virtual;
|
|
|
|
|
|
|
|
/// Determines that the package must always be installed
|
|
|
|
std::string ForcedInstallation;
|
|
|
|
|
2016-05-06 21:49:44 +03:00
|
|
|
public:
|
|
|
|
// Internal implementation
|
2014-08-06 19:23:00 +04:00
|
|
|
|
|
|
|
const char* GetOption(const std::string& op) const;
|
2014-08-12 22:44:02 +04:00
|
|
|
bool IsOn(const std::string& op) const;
|
2014-08-06 19:23:00 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool IsVersionLess(const char* version);
|
|
|
|
bool IsVersionGreater(const char* version);
|
|
|
|
bool IsVersionEqual(const char* version);
|
2015-04-27 17:02:49 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string GetComponentName(cmCPackComponent* component);
|
2014-08-06 19:23:00 +04:00
|
|
|
|
|
|
|
void DefaultConfiguration();
|
|
|
|
|
|
|
|
int ConfigureFromOptions();
|
2016-05-16 17:34:04 +03:00
|
|
|
int ConfigureFromComponent(cmCPackComponent* component);
|
|
|
|
int ConfigureFromGroup(cmCPackComponentGroup* group);
|
|
|
|
int ConfigureFromGroup(const std::string& groupName);
|
2014-08-06 19:23:00 +04:00
|
|
|
|
|
|
|
void GeneratePackageFile();
|
|
|
|
|
|
|
|
// Pointer to generator
|
|
|
|
cmCPackIFWGenerator* Generator;
|
|
|
|
// Pointer to installer
|
|
|
|
cmCPackIFWInstaller* Installer;
|
|
|
|
// Collection of dependencies
|
|
|
|
std::set<cmCPackIFWPackage*> Dependencies;
|
|
|
|
// Collection of unresolved dependencies
|
|
|
|
std::set<DependenceStruct*> AlienDependencies;
|
|
|
|
// Patch to package directory
|
|
|
|
std::string Directory;
|
2015-04-27 17:02:49 +03:00
|
|
|
|
|
|
|
protected:
|
2015-07-16 22:53:57 +03:00
|
|
|
void WriteGeneratedByToStrim(cmXMLWriter& xout);
|
2014-08-06 19:23:00 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // cmCPackIFWPackage_h
|