cmCPackIFWCommon.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 cmCPackIFWCommon_h
  4. #define cmCPackIFWCommon_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <map>
  7. #include <string>
  8. class cmCPackIFWGenerator;
  9. class cmXMLWriter;
  10. /** \class cmCPackIFWCommon
  11. * \brief A base class for CPack IFW generator implementation subclasses
  12. */
  13. class cmCPackIFWCommon
  14. {
  15. public:
  16. // Constructor
  17. /**
  18. * Construct Part
  19. */
  20. cmCPackIFWCommon();
  21. public:
  22. // Internal implementation
  23. const char* GetOption(const std::string& op) const;
  24. bool IsOn(const std::string& op) const;
  25. bool IsSetToOff(const std::string& op) const;
  26. bool IsSetToEmpty(const std::string& op) const;
  27. /**
  28. * Compare \a version with QtIFW framework version
  29. */
  30. bool IsVersionLess(const char* version);
  31. /**
  32. * Compare \a version with QtIFW framework version
  33. */
  34. bool IsVersionGreater(const char* version);
  35. /**
  36. * Compare \a version with QtIFW framework version
  37. */
  38. bool IsVersionEqual(const char* version);
  39. /** Expand the list argument containing the map of the key-value pairs.
  40. * If the number of elements is odd, then the first value is used as the
  41. * default value with an empty key.
  42. * Any values with the same keys will be permanently overwritten.
  43. */
  44. static void ExpandListArgument(const std::string& arg,
  45. std::map<std::string, std::string>& argsOut);
  46. /** Expand the list argument containing the multimap of the key-value pairs.
  47. * If the number of elements is odd, then the first value is used as the
  48. * default value with an empty key.
  49. */
  50. static void ExpandListArgument(
  51. const std::string& arg, std::multimap<std::string, std::string>& argsOut);
  52. cmCPackIFWGenerator* Generator;
  53. protected:
  54. void WriteGeneratedByToStrim(cmXMLWriter& xout);
  55. };
  56. #define cmCPackIFWLogger(logType, msg) \
  57. do { \
  58. std::ostringstream cmCPackLog_msg; \
  59. cmCPackLog_msg << msg; \
  60. if (Generator) { \
  61. Generator->Logger->Log(cmCPackLog::LOG_##logType, __FILE__, __LINE__, \
  62. cmCPackLog_msg.str().c_str()); \
  63. } \
  64. } while (false)
  65. #endif // cmCPackIFWCommon_h