cmCPackGenerator.h 12 KB

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