cmCPackIFWPackage.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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 cmCPackIFWPackage_h
  4. #define cmCPackIFWPackage_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include "cmCPackIFWCommon.h"
  7. #include <map>
  8. #include <set>
  9. #include <string>
  10. #include <vector>
  11. class cmCPackComponent;
  12. class cmCPackComponentGroup;
  13. class cmCPackIFWInstaller;
  14. /** \class cmCPackIFWPackage
  15. * \brief A single component to be installed by CPack IFW generator
  16. */
  17. class cmCPackIFWPackage : public cmCPackIFWCommon
  18. {
  19. public:
  20. // Types
  21. enum CompareTypes
  22. {
  23. CompareNone = 0x0,
  24. CompareEqual = 0x1,
  25. CompareLess = 0x2,
  26. CompareLessOrEqual = 0x3,
  27. CompareGreater = 0x4,
  28. CompareGreaterOrEqual = 0x5
  29. };
  30. struct CompareStruct
  31. {
  32. CompareStruct();
  33. unsigned int Type;
  34. std::string Value;
  35. };
  36. struct DependenceStruct
  37. {
  38. DependenceStruct();
  39. DependenceStruct(const std::string& dependence);
  40. std::string Name;
  41. CompareStruct Compare;
  42. std::string NameWithCompare() const;
  43. bool operator<(const DependenceStruct& other) const
  44. {
  45. return Name < other.Name;
  46. }
  47. };
  48. public:
  49. // [Con|De]structor
  50. /**
  51. * Construct package
  52. */
  53. cmCPackIFWPackage();
  54. public:
  55. // Configuration
  56. /// Human-readable name of the component
  57. std::map<std::string, std::string> DisplayName;
  58. /// Human-readable description of the component
  59. std::map<std::string, std::string> Description;
  60. /// Version number of the component
  61. std::string Version;
  62. /// Date when this component version was released
  63. std::string ReleaseDate;
  64. /// Domain-like identification for this component
  65. std::string Name;
  66. /// File name of a script being loaded
  67. std::string Script;
  68. /// List of license agreements to be accepted by the installing user
  69. std::vector<std::string> Licenses;
  70. /// List of pages to load
  71. std::vector<std::string> UserInterfaces;
  72. /// List of translation files to load
  73. std::vector<std::string> Translations;
  74. /// Priority of the component in the tree
  75. std::string SortingPriority;
  76. /// Description added to the component description
  77. std::string UpdateText;
  78. /// Set to true to preselect the component in the installer
  79. std::string Default;
  80. /// Marks the package as essential to force a restart of the MaintenanceTool
  81. std::string Essential;
  82. /// Set to true to hide the component from the installer
  83. std::string Virtual;
  84. /// Determines that the package must always be installed
  85. std::string ForcedInstallation;
  86. /// List of components to replace
  87. std::vector<std::string> Replaces;
  88. /// Package needs to be installed with elevated permissions
  89. std::string RequiresAdminRights;
  90. /// Set to false if you want to hide the checkbox for an item
  91. std::string Checkable;
  92. public:
  93. // Internal implementation
  94. std::string GetComponentName(cmCPackComponent* component);
  95. void DefaultConfiguration();
  96. int ConfigureFromOptions();
  97. int ConfigureFromComponent(cmCPackComponent* component);
  98. int ConfigureFromGroup(cmCPackComponentGroup* group);
  99. int ConfigureFromGroup(const std::string& groupName);
  100. int ConfigureFromPrefix(const std::string& prefix);
  101. void GeneratePackageFile();
  102. // Pointer to installer
  103. cmCPackIFWInstaller* Installer;
  104. // Collection of dependencies
  105. std::set<cmCPackIFWPackage*> Dependencies;
  106. // Collection of unresolved dependencies
  107. std::set<DependenceStruct*> AlienDependencies;
  108. // Collection of unresolved automatic dependency on
  109. std::set<DependenceStruct*> AlienAutoDependOn;
  110. // Patch to package directory
  111. std::string Directory;
  112. };
  113. #endif // cmCPackIFWPackage_h