cmCPackGenerator.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #pragma once
  4. #include "cmConfigure.h" // IWYU pragma: keep
  5. #include <map>
  6. #include <sstream>
  7. #include <string>
  8. #include <vector>
  9. #include "cm_sys_stat.h"
  10. #include "cmCPackComponentGroup.h"
  11. #include "cmSystemTools.h"
  12. class cmCPackLog;
  13. class cmGlobalGenerator;
  14. class cmInstalledFile;
  15. class cmMakefile;
  16. /** \class cmCPackGenerator
  17. * \brief A superclass of all CPack Generators
  18. *
  19. */
  20. class cmCPackGenerator
  21. {
  22. public:
  23. virtual const char* GetNameOfClass() = 0;
  24. /**
  25. * If verbose then more information is printed out
  26. */
  27. void SetVerbose(bool val)
  28. {
  29. this->GeneratorVerbose =
  30. val ? cmSystemTools::OUTPUT_MERGE : cmSystemTools::OUTPUT_NONE;
  31. }
  32. /**
  33. * Put underlying cmake scripts in trace mode.
  34. */
  35. void SetTrace(bool val) { this->Trace = val; }
  36. /**
  37. * Put underlying cmake scripts in expanded trace mode.
  38. */
  39. void SetTraceExpand(bool val) { this->TraceExpand = val; }
  40. /**
  41. * Returns true if the generator may work on this system.
  42. * Rational:
  43. * Some CPack generator may run on some host and may not on others
  44. * (with the same system) because some tools are missing. If the tool
  45. * is missing then CPack won't activate (in the CPackGeneratorFactory)
  46. * this particular generator.
  47. */
  48. static bool CanGenerate() { return true; }
  49. /**
  50. * Do the actual whole package processing.
  51. * Subclass may redefine it but its usually enough
  52. * to redefine @ref PackageFiles, because in fact
  53. * this method do call:
  54. * - PrepareName
  55. * - clean-up temp dirs
  56. * - InstallProject (with the appropriate method)
  57. * - prepare list of files and/or components to be package
  58. * - PackageFiles
  59. * - Copy produced packages at the expected place
  60. * @return 0 if error.
  61. */
  62. virtual int DoPackage();
  63. /**
  64. * Initialize generator
  65. */
  66. int Initialize(const std::string& name, cmMakefile* mf);
  67. /**
  68. * Construct generator
  69. */
  70. cmCPackGenerator();
  71. virtual ~cmCPackGenerator();
  72. //! Set and get the options
  73. void SetOption(const std::string& op, const char* value);
  74. void SetOptionIfNotSet(const std::string& op, const char* value);
  75. const char* GetOption(const std::string& op) const;
  76. std::vector<std::string> GetOptions() const;
  77. bool IsSet(const std::string& name) const;
  78. bool IsOn(const std::string& name) const;
  79. bool IsSetToOff(const std::string& op) const;
  80. bool IsSetToEmpty(const std::string& op) const;
  81. //! Set the logger
  82. void SetLogger(cmCPackLog* log) { this->Logger = log; }
  83. //! Display verbose information via logger
  84. void DisplayVerboseOutput(const std::string& msg, float progress);
  85. bool ReadListFile(const char* moduleName);
  86. protected:
  87. /**
  88. * Prepare common used names by inspecting
  89. * several CPACK_xxx var values.
  90. */
  91. int PrepareNames();
  92. /**
  93. * Install the project using appropriate method.
  94. */
  95. int InstallProject();
  96. int CleanTemporaryDirectory();
  97. cmInstalledFile const* GetInstalledFile(std::string const& name) const;
  98. virtual const char* GetOutputExtension() { return ".cpack"; }
  99. virtual const char* GetOutputPostfix() { return nullptr; }
  100. /**
  101. * Prepare requested grouping kind from CPACK_xxx vars
  102. * CPACK_COMPONENTS_ALL_IN_ONE_PACKAGE
  103. * CPACK_COMPONENTS_IGNORE_GROUPS
  104. * or
  105. * CPACK_COMPONENTS_ONE_PACKAGE_PER_GROUP
  106. * @return 1 on success 0 on failure.
  107. */
  108. virtual int PrepareGroupingKind();
  109. /**
  110. * Some CPack generators may prefer to have
  111. * CPack install all components belonging to the same
  112. * [component] group to be install in the same directory.
  113. * The default behavior is to install each component in
  114. * a separate directory.
  115. * @param[in] componentName the name of the component to be installed
  116. * @return the name suffix the generator wants for the specified component
  117. * default is "componentName"
  118. */
  119. virtual std::string GetComponentInstallDirNameSuffix(
  120. const std::string& componentName);
  121. /**
  122. * CPack specific generator may mangle CPACK_PACKAGE_FILE_NAME
  123. * with CPACK_COMPONENT_xxxx_<NAME>_DISPLAY_NAME if
  124. * CPACK_<GEN>_USE_DISPLAY_NAME_IN_FILENAME is ON.
  125. * @param[in] initialPackageFileName the initial package name to be mangled
  126. * @param[in] groupOrComponentName the name of the group/component
  127. * @param[in] isGroupName true if previous name refers to a group,
  128. * false otherwise
  129. */
  130. virtual std::string GetComponentPackageFileName(
  131. const std::string& initialPackageFileName,
  132. const std::string& groupOrComponentName, bool isGroupName);
  133. /**
  134. * Package the list of files and/or components which
  135. * has been prepared by the beginning of DoPackage.
  136. * @pre the @ref toplevel has been filled-in
  137. * @pre the list of file @ref files has been populated
  138. * @pre packageFileNames contains at least 1 entry
  139. * @post packageFileNames may have been updated and contains
  140. * the list of packages generated by the specific generator.
  141. */
  142. virtual int PackageFiles();
  143. virtual const char* GetInstallPath();
  144. virtual const char* GetPackagingInstallPrefix();
  145. virtual std::string FindTemplate(const char* name);
  146. virtual bool ConfigureFile(const std::string& inName,
  147. const std::string& outName,
  148. bool copyOnly = false);
  149. virtual bool ConfigureString(const std::string& input, std::string& output);
  150. virtual int InitializeInternal();
  151. //! Run install commands if specified
  152. virtual int InstallProjectViaInstallCommands(
  153. bool setDestDir, const std::string& tempInstallDirectory);
  154. virtual int InstallProjectViaInstallScript(
  155. bool setDestDir, const std::string& tempInstallDirectory);
  156. virtual int InstallProjectViaInstalledDirectories(
  157. bool setDestDir, const std::string& tempInstallDirectory,
  158. const mode_t* default_dir_mode);
  159. virtual int InstallProjectViaInstallCMakeProjects(
  160. bool setDestDir, const std::string& tempInstallDirectory,
  161. const mode_t* default_dir_mode);
  162. virtual int RunPreinstallTarget(const std::string& installProjectName,
  163. const std::string& installDirectory,
  164. cmGlobalGenerator* globalGenerator,
  165. const std::string& buildConfig);
  166. virtual int InstallCMakeProject(
  167. bool setDestDir, const std::string& installDirectory,
  168. const std::string& baseTempInstallDirectory,
  169. const mode_t* default_dir_mode, const std::string& component,
  170. bool componentInstall, const std::string& installSubDirectory,
  171. const std::string& buildConfig, std::string& absoluteDestFiles);
  172. /**
  173. * The various level of support of
  174. * CPACK_SET_DESTDIR used by the generator.
  175. */
  176. enum CPackSetDestdirSupport
  177. {
  178. /* the generator works with or without it */
  179. SETDESTDIR_SUPPORTED,
  180. /* the generator works best if automatically handled */
  181. SETDESTDIR_INTERNALLY_SUPPORTED,
  182. /* no official support, use at your own risk */
  183. SETDESTDIR_SHOULD_NOT_BE_USED,
  184. /* officially NOT supported */
  185. SETDESTDIR_UNSUPPORTED
  186. };
  187. /**
  188. * Does the CPack generator support CPACK_SET_DESTDIR?
  189. * The default legacy value is 'SETDESTDIR_SUPPORTED' generator
  190. * have to override it in order change this.
  191. * @return CPackSetDestdirSupport
  192. */
  193. virtual enum CPackSetDestdirSupport SupportsSetDestdir() const;
  194. /**
  195. * Does the CPack generator support absolute path
  196. * in INSTALL DESTINATION?
  197. * The default legacy value is 'true' generator
  198. * have to override it in order change this.
  199. * @return true if supported false otherwise
  200. */
  201. virtual bool SupportsAbsoluteDestination() const;
  202. /**
  203. * Does the CPack generator support component installation?.
  204. * Some Generators requires the user to set
  205. * CPACK_<GENNAME>_COMPONENT_INSTALL in order to make this
  206. * method return true.
  207. * @return true if supported, false otherwise
  208. */
  209. virtual bool SupportsComponentInstallation() const;
  210. /**
  211. * Does the currently running generator want a component installation.
  212. * The generator may support component installation but he may
  213. * be requiring monolithic install using CPACK_MONOLITHIC_INSTALL.
  214. * @return true if component installation is supported and wanted.
  215. */
  216. virtual bool WantsComponentInstallation() const;
  217. virtual cmCPackInstallationType* GetInstallationType(
  218. const std::string& projectName, const std::string& name);
  219. virtual cmCPackComponent* GetComponent(const std::string& projectName,
  220. const std::string& name);
  221. virtual cmCPackComponentGroup* GetComponentGroup(
  222. const std::string& projectName, const std::string& name);
  223. cmSystemTools::OutputOption GeneratorVerbose;
  224. std::string Name;
  225. std::string InstallPath;
  226. /**
  227. * The list of package file names.
  228. * At beginning of DoPackage the (generic) generator will populate
  229. * the list of desired package file names then it will
  230. * call the redefined method PackageFiles which is may
  231. * either use this set of names (usually on entry there should be
  232. * only a single name) or update the vector with the list
  233. * of created package file names.
  234. */
  235. std::vector<std::string> packageFileNames;
  236. /**
  237. * The directory where all the files to be packaged reside.
  238. * If the installer support components there will be one
  239. * sub-directory for each component. In those directories
  240. * one will find the file belonging to the specified component.
  241. */
  242. std::string toplevel;
  243. /**
  244. * The complete list of files to be packaged.
  245. * This list will be populated by DoPackage before
  246. * PackageFiles is called.
  247. */
  248. std::vector<std::string> files;
  249. std::vector<cmCPackInstallCMakeProject> CMakeProjects;
  250. std::map<std::string, cmCPackInstallationType> InstallationTypes;
  251. /**
  252. * The set of components.
  253. * If component installation is supported then this map
  254. * contains the component specified in CPACK_COMPONENTS_ALL
  255. */
  256. std::map<std::string, cmCPackComponent> Components;
  257. std::map<std::string, cmCPackComponentGroup> ComponentGroups;
  258. /**
  259. * If components are enabled, this enum represents the different
  260. * ways of mapping components to package files.
  261. */
  262. enum ComponentPackageMethod
  263. {
  264. /* one package for all components */
  265. ONE_PACKAGE,
  266. /* one package for each component */
  267. ONE_PACKAGE_PER_COMPONENT,
  268. /* one package for each group,
  269. * with left over components in their own package */
  270. ONE_PACKAGE_PER_GROUP,
  271. UNKNOWN_COMPONENT_PACKAGE_METHOD
  272. };
  273. /**
  274. * The component package method
  275. * The default is ONE_PACKAGE_PER_GROUP,
  276. * and generators may override the default
  277. * before PrepareGroupingKind() is called.
  278. */
  279. ComponentPackageMethod componentPackageMethod;
  280. cmCPackLog* Logger;
  281. bool Trace;
  282. bool TraceExpand;
  283. cmMakefile* MakefileMap;
  284. };
  285. #define cmCPackTypeMacro(klass, superclass) \
  286. using Superclass = superclass; \
  287. const char* GetNameOfClass() override { return #klass; } \
  288. static cmCPackGenerator* CreateGenerator() { return new klass; } \
  289. class cmCPackTypeMacro_UseTrailingSemicolon
  290. #define cmCPackLogger(logType, msg) \
  291. do { \
  292. std::ostringstream cmCPackLog_msg; \
  293. cmCPackLog_msg << msg; \
  294. this->Logger->Log(logType, __FILE__, __LINE__, \
  295. cmCPackLog_msg.str().c_str()); \
  296. } while (false)