2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc.
|
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
|
|
|
|
2007-11-06 00:55:45 +03:00
|
|
|
#ifndef cmCPackGenerator_h
|
|
|
|
#define cmCPackGenerator_h
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
#include "cmObject.h"
|
2008-06-17 19:39:26 +04:00
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2008-06-17 20:09:42 +04:00
|
|
|
#include "cmCPackComponentGroup.h" // cmCPackComponent and friends
|
|
|
|
// Forward declarations are insufficient since we use them in
|
|
|
|
// std::map data members below...
|
|
|
|
|
2006-01-02 07:21:05 +03:00
|
|
|
#define cmCPackTypeMacro(class, superclass) \
|
|
|
|
cmTypeMacro(class, superclass); \
|
2007-11-06 00:55:45 +03:00
|
|
|
static cmCPackGenerator* CreateGenerator() { return new class; }
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2006-01-03 00:14:21 +03:00
|
|
|
#define cmCPackLogger(logType, msg) \
|
|
|
|
do { \
|
2006-03-14 00:45:21 +03:00
|
|
|
cmOStringStream cmCPackLog_msg; \
|
|
|
|
cmCPackLog_msg << msg; \
|
|
|
|
this->Logger->Log(logType, __FILE__, __LINE__,\
|
|
|
|
cmCPackLog_msg.str().c_str());\
|
2006-01-03 00:14:21 +03:00
|
|
|
} while ( 0 )
|
|
|
|
|
|
|
|
#ifdef cerr
|
|
|
|
# undef cerr
|
|
|
|
#endif
|
|
|
|
#define cerr no_cerr_use_cmCPack_Log
|
|
|
|
|
|
|
|
#ifdef cout
|
|
|
|
# undef cout
|
|
|
|
#endif
|
|
|
|
#define cout no_cout_use_cmCPack_Log
|
|
|
|
|
2006-01-02 07:21:05 +03:00
|
|
|
class cmMakefile;
|
2006-01-03 00:14:21 +03:00
|
|
|
class cmCPackLog;
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2007-11-06 00:55:45 +03:00
|
|
|
/** \class cmCPackGenerator
|
2006-01-02 07:21:05 +03:00
|
|
|
* \brief A superclass of all CPack Generators
|
|
|
|
*
|
|
|
|
*/
|
2007-11-06 00:55:45 +03:00
|
|
|
class cmCPackGenerator : public cmObject
|
2006-01-02 07:21:05 +03:00
|
|
|
{
|
|
|
|
public:
|
2007-11-06 00:55:45 +03:00
|
|
|
cmTypeMacro(cmCPackGenerator, cmObject);
|
2006-01-02 07:21:05 +03:00
|
|
|
/**
|
2010-08-11 21:48:39 +04:00
|
|
|
* If verbose then more information is printed out
|
2006-01-02 07:21:05 +03:00
|
|
|
*/
|
2006-03-10 21:06:26 +03:00
|
|
|
void SetVerbose(bool val) { this->GeneratorVerbose = val; }
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
/**
|
2010-08-11 21:48:39 +04:00
|
|
|
* Do the actual whole package processing.
|
|
|
|
* Subclass may redefine it but its usually enough
|
|
|
|
* to redefine @ref PackageFiles, because in fact
|
|
|
|
* this method do call:
|
|
|
|
* - PrepareName
|
|
|
|
* - clean-up temp dirs
|
|
|
|
* - InstallProject (with the appropriate method)
|
|
|
|
* - prepare list of files and/or components to be package
|
|
|
|
* - PackageFiles
|
|
|
|
* - Copy produced packages at the expected place
|
|
|
|
* @return 0 if error.
|
2006-01-02 07:21:05 +03:00
|
|
|
*/
|
2007-11-06 16:28:26 +03:00
|
|
|
virtual int DoPackage();
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize generator
|
|
|
|
*/
|
2008-09-24 17:57:52 +04:00
|
|
|
int Initialize(const char* name, cmMakefile* mf);
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct generator
|
|
|
|
*/
|
2007-11-06 00:55:45 +03:00
|
|
|
cmCPackGenerator();
|
|
|
|
virtual ~cmCPackGenerator();
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
//! Set and get the options
|
|
|
|
void SetOption(const char* op, const char* value);
|
2006-04-15 21:02:18 +04:00
|
|
|
void SetOptionIfNotSet(const char* op, const char* value);
|
2010-12-12 14:55:02 +03:00
|
|
|
const char* GetOption(const char* op) const;
|
2007-07-24 20:52:39 +04:00
|
|
|
bool IsSet(const char* name) const;
|
2010-12-12 14:55:02 +03:00
|
|
|
bool IsOn(const char* name) const;
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
//! Set all the variables
|
2008-09-23 18:15:13 +04:00
|
|
|
int SetCMakeRoot();
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2006-01-03 00:14:21 +03:00
|
|
|
//! Set the logger
|
2006-03-10 21:06:26 +03:00
|
|
|
void SetLogger(cmCPackLog* log) { this->Logger = log; }
|
2006-01-03 00:14:21 +03:00
|
|
|
|
2006-06-02 19:26:10 +04:00
|
|
|
//! Display verbose information via logger
|
|
|
|
void DisplayVerboseOutput(const char* msg, float progress);
|
2007-07-24 20:52:39 +04:00
|
|
|
|
|
|
|
bool ReadListFile(const char* moduleName);
|
2006-06-02 19:26:10 +04:00
|
|
|
|
2006-01-02 07:21:05 +03:00
|
|
|
protected:
|
2010-08-11 21:48:39 +04:00
|
|
|
/**
|
|
|
|
* Prepare common used names by inspecting
|
|
|
|
* several CPACK_xxx var values.
|
|
|
|
*/
|
2006-01-02 07:21:05 +03:00
|
|
|
int PrepareNames();
|
2010-08-11 21:48:39 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Install the project using appropriate method.
|
|
|
|
*/
|
2006-01-02 07:21:05 +03:00
|
|
|
int InstallProject();
|
2010-08-11 21:48:39 +04:00
|
|
|
|
2006-06-09 21:45:09 +04:00
|
|
|
int CleanTemporaryDirectory();
|
2010-08-11 21:48:39 +04:00
|
|
|
|
2007-02-02 22:40:26 +03:00
|
|
|
virtual const char* GetOutputExtension() { return ".cpack"; }
|
2006-01-02 07:21:05 +03:00
|
|
|
virtual const char* GetOutputPostfix() { return 0; }
|
2010-08-11 21:48:39 +04:00
|
|
|
|
2010-11-13 19:56:36 +03:00
|
|
|
/**
|
|
|
|
* Prepare requested grouping kind from CPACK_xxx vars
|
|
|
|
* CPACK_COMPONENTS_ALL_IN_ONE_PACKAGE
|
|
|
|
* CPACK_COMPONENTS_IGNORE_GROUPS
|
|
|
|
* or
|
2011-03-25 19:18:59 +03:00
|
|
|
* CPACK_COMPONENTS_ONE_PACKAGE_PER_GROUP
|
2010-11-13 19:56:36 +03:00
|
|
|
* @return 1 on success 0 on failure.
|
|
|
|
*/
|
|
|
|
virtual int PrepareGroupingKind();
|
|
|
|
|
2011-02-06 23:23:10 +03:00
|
|
|
/**
|
|
|
|
* Some CPack generators may prefer to have
|
|
|
|
* CPack install all components belonging to the same
|
|
|
|
* [component] group to be install in the same directory.
|
|
|
|
* The default behavior is to install each component in
|
|
|
|
* a separate directory.
|
|
|
|
* @param[in] componentName the name of the component to be installed
|
|
|
|
* @return the name suffix the generator wants for the specified component
|
|
|
|
* default is "componentName"
|
|
|
|
*/
|
|
|
|
virtual std::string GetComponentInstallDirNameSuffix(
|
|
|
|
const std::string& componentName);
|
|
|
|
|
2011-02-23 01:49:49 +03:00
|
|
|
/**
|
|
|
|
* CPack specific generator may mangle CPACK_PACKAGE_FILE_NAME
|
|
|
|
* with CPACK_COMPONENT_xxxx_<NAME>_DISPLAY_NAME if
|
|
|
|
* CPACK_<GEN>_USE_DISPLAY_NAME_IN_FILENAME is ON.
|
|
|
|
* @param[in] initialPackageFileName
|
|
|
|
* @param[in] groupOrComponentName
|
|
|
|
* @param[in] isGroupName
|
|
|
|
*/
|
|
|
|
virtual std::string GetComponentPackageFileName(
|
|
|
|
const std::string& initialPackageFileName,
|
|
|
|
const std::string& groupOrComponentName,
|
|
|
|
bool isGroupName);
|
|
|
|
|
2010-08-11 21:48:39 +04:00
|
|
|
/**
|
|
|
|
* Package the list of files and/or components which
|
|
|
|
* has been prepared by the beginning of DoPackage.
|
|
|
|
* @pre @ref toplevel has been filled-in
|
|
|
|
* @pre the list of file @ref files has been populated
|
|
|
|
* @pre packageFileNames contains at least 1 entry
|
|
|
|
* @post packageFileNames may have been updated and contains
|
|
|
|
* the list of packages generated by the specific generator.
|
|
|
|
*/
|
|
|
|
virtual int PackageFiles();
|
2006-01-02 07:21:05 +03:00
|
|
|
virtual const char* GetInstallPath();
|
2007-10-31 15:50:17 +03:00
|
|
|
virtual const char* GetPackagingInstallPrefix();
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
virtual std::string FindTemplate(const char* name);
|
2007-01-11 18:49:18 +03:00
|
|
|
virtual bool ConfigureFile(const char* inName, const char* outName,
|
|
|
|
bool copyOnly = false);
|
2006-04-18 16:25:24 +04:00
|
|
|
virtual bool ConfigureString(const std::string& input, std::string& output);
|
2006-04-15 21:02:18 +04:00
|
|
|
virtual int InitializeInternal();
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2006-07-09 21:20:07 +04:00
|
|
|
|
|
|
|
//! Run install commands if specified
|
|
|
|
virtual int InstallProjectViaInstallCommands(
|
2007-10-31 15:50:17 +03:00
|
|
|
bool setDestDir, const char* tempInstallDirectory);
|
2006-10-12 21:05:50 +04:00
|
|
|
virtual int InstallProjectViaInstallScript(
|
2007-10-31 15:50:17 +03:00
|
|
|
bool setDestDir, const char* tempInstallDirectory);
|
2006-07-09 21:20:07 +04:00
|
|
|
virtual int InstallProjectViaInstalledDirectories(
|
2007-10-31 15:50:17 +03:00
|
|
|
bool setDestDir, const char* tempInstallDirectory);
|
2006-07-09 21:20:07 +04:00
|
|
|
virtual int InstallProjectViaInstallCMakeProjects(
|
2007-10-31 15:50:17 +03:00
|
|
|
bool setDestDir, const char* tempInstallDirectory);
|
2006-07-09 21:20:07 +04:00
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
virtual bool SupportsComponentInstallation() const;
|
2008-10-01 17:04:27 +04:00
|
|
|
virtual cmCPackInstallationType* GetInstallationType(const char *projectName,
|
|
|
|
const char* name);
|
|
|
|
virtual cmCPackComponent* GetComponent(const char *projectName,
|
|
|
|
const char* name);
|
|
|
|
virtual cmCPackComponentGroup* GetComponentGroup(const char *projectName,
|
|
|
|
const char* name);
|
2008-06-17 19:39:26 +04:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
bool GeneratorVerbose;
|
|
|
|
std::string Name;
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
std::string InstallPath;
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2010-08-11 21:48:39 +04:00
|
|
|
/**
|
|
|
|
* The list of package file names.
|
|
|
|
* At beginning of DoPackage the (generic) generator will populate
|
|
|
|
* the list of desired package file names then it will
|
|
|
|
* call the redefined method PackageFiles which is may
|
|
|
|
* either use this set of names (usually on entry there should be
|
|
|
|
* only a single name) or update the vector with the list
|
|
|
|
* of created package file names.
|
|
|
|
*/
|
|
|
|
std::vector<std::string> packageFileNames;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The directory where all the files to be packaged reside.
|
|
|
|
* If the installer support components there will be one
|
|
|
|
* sub-directory for each component. In those directories
|
|
|
|
* one will find the file belonging to the specified component.
|
|
|
|
*/
|
|
|
|
std::string toplevel;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The complete list of files to be packaged.
|
|
|
|
* This list will be populated by DoPackage before
|
|
|
|
* PackageFiles is called.
|
|
|
|
*/
|
|
|
|
std::vector<std::string> files;
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
std::string CPackSelf;
|
|
|
|
std::string CMakeSelf;
|
|
|
|
std::string CMakeRoot;
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2008-06-17 19:39:26 +04:00
|
|
|
std::map<std::string, cmCPackInstallationType> InstallationTypes;
|
2010-08-11 21:48:39 +04:00
|
|
|
/**
|
|
|
|
* The set of components.
|
|
|
|
* If component installation is supported then this map
|
|
|
|
* contains the component specified in CPACK_COMPONENTS_ALL
|
|
|
|
*/
|
2008-06-17 19:39:26 +04:00
|
|
|
std::map<std::string, cmCPackComponent> Components;
|
|
|
|
std::map<std::string, cmCPackComponentGroup> ComponentGroups;
|
2011-03-25 19:18:59 +03:00
|
|
|
|
2010-11-13 19:56:36 +03:00
|
|
|
/**
|
2011-03-25 19:18:59 +03:00
|
|
|
* If components are enabled, this enum represents the different
|
|
|
|
* ways of mapping components to package files.
|
2010-11-13 19:56:36 +03:00
|
|
|
*/
|
2011-03-25 19:18:59 +03:00
|
|
|
enum ComponentPackageMethod
|
|
|
|
{
|
|
|
|
/* one package for all components */
|
|
|
|
ONE_PACKAGE,
|
|
|
|
/* one package for each component */
|
|
|
|
ONE_PACKAGE_PER_COMPONENT,
|
2011-04-01 21:21:51 +04:00
|
|
|
/* one package for each group,
|
|
|
|
* with left over components in their own package */
|
2011-03-25 19:18:59 +03:00
|
|
|
ONE_PACKAGE_PER_GROUP,
|
|
|
|
UNKNOWN_COMPONENT_PACKAGE_METHOD
|
|
|
|
};
|
|
|
|
|
2010-11-13 19:56:36 +03:00
|
|
|
/**
|
2011-03-25 19:18:59 +03:00
|
|
|
* The component package method
|
2011-04-01 21:21:51 +04:00
|
|
|
* The default is ONE_PACKAGE_PER_GROUP,
|
|
|
|
* and generators may override the default
|
2011-03-25 19:18:59 +03:00
|
|
|
* before PrepareGroupingKind() is called.
|
2010-11-13 19:56:36 +03:00
|
|
|
*/
|
2011-03-25 19:18:59 +03:00
|
|
|
ComponentPackageMethod componentPackageMethod;
|
2008-06-17 19:39:26 +04:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
cmCPackLog* Logger;
|
2007-07-24 20:52:39 +04:00
|
|
|
private:
|
|
|
|
cmMakefile* MakefileMap;
|
2006-01-02 07:21:05 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|