generic_task.hpp 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. #ifndef __GENERIC_TASK_HPP__
  2. #define __GENERIC_TASK_HPP__
  3. #include <include/task/task.hpp>
  4. #include <type_traits>
  5. namespace Scheduler {
  6. namespace GenericArgs {
  7. const QString HEADER_TYPE = "header";
  8. const QString FILE_TYPE = "files";
  9. const QString DESCRIPTION_TYPE = "description";
  10. } // namespace Args
  11. namespace TaskCode {
  12. static constexpr int GENTASKBYTE = 0xFC;
  13. }
  14. } // namespace Scheduler
  15. /**
  16. * @brief The GenericTask class
  17. *
  18. * Class to organize and transport data necessary to perform generic tasks.
  19. */
  20. class GenericTask : public Scheduler::Task {
  21. public:
  22. /**
  23. * @constructor
  24. */
  25. GenericTask();
  26. /**
  27. * Overrides @abstract Task::defineTaskArguments
  28. *
  29. * Useful for avoiding repetitive input of data.
  30. */
  31. virtual void defineTaskArguments() override;
  32. /**
  33. * Overrides @abstract Task::getTaskArguments
  34. *
  35. * Use this method to take over ownership of the task's arguments.
  36. */
  37. virtual const Scheduler::TaskArguments&& getTaskArguments() override;
  38. /**
  39. * Overrides @abstract Task::getTaskArgument
  40. *
  41. * Easy access to an argument.
  42. */
  43. virtual Scheduler::TaskArgument&& getTaskArgument(QString name) override;
  44. /**
  45. * Overrides @abstract Task::getTaskArgumentValue
  46. *
  47. * Easy access to an argument's value.
  48. */
  49. virtual const Scheduler::TypeVariant getTaskArgumentValue(QString name) override;
  50. /**
  51. * Overrides @abstract Task::getArgumentValues
  52. *
  53. * Easy access to all of the arguments that can be represented as a string.
  54. */
  55. virtual Scheduler::ArgumentValues getArgumentValues() override;
  56. /**
  57. * Overrides @abstract Task::getArgumentNames
  58. *
  59. * Provides the names of the arguments.
  60. */
  61. virtual QVector<QString> getArgumentNames() override;
  62. /**
  63. * Overrides @abstract Task::getFiles
  64. *
  65. * Easy access to the task's files.
  66. */
  67. virtual const QVector<Scheduler::KFileData> getFiles() override;
  68. /**
  69. * Overrides @abstract Task::getType
  70. *
  71. * Informs the caller of the task's type.
  72. */
  73. virtual Scheduler::TaskType getType() override;
  74. /**
  75. * Overrides @abstract Task::getTaskCode
  76. *
  77. * Returns the task's byte code.
  78. */
  79. virtual int getTaskCode() override;
  80. /**
  81. * Overrides @abstract Task::setArgument
  82. *
  83. * Set the value of an existing argument.
  84. */
  85. virtual void setArgument(QString name, Scheduler::TypeVariant arg) override;
  86. /**
  87. * Overrides @abstract Task::addArgument
  88. *
  89. * Add an additional value to a file container argument.
  90. */
  91. virtual void addArgument(QString name, Scheduler::KFileData file) override;
  92. /**
  93. * Overrides @abstract Task::addArgument
  94. *
  95. * Add an additional value to a string container argument.
  96. */
  97. virtual void addArgument(QString name, QString string) override;
  98. /**
  99. * Overrides @abstract Task::removeArgument
  100. *
  101. * Remove a value from a container argument.
  102. */
  103. virtual void removeArgument(QString name, Scheduler::TypeVariant arg) override;
  104. /**
  105. * Overrides @abstract Task::hasFiles
  106. *
  107. * Tells the caller if the task has files.
  108. */
  109. virtual bool hasFiles() override;
  110. /**
  111. * Overrides @abstract Task::isReady
  112. *
  113. * Informs the caller if the prerequisite arguments have values.
  114. */
  115. virtual bool isReady() override;
  116. /**
  117. * Overrides @abstract Task::clear
  118. *
  119. * Clears the values of all arguments, without removing the arguments.
  120. */
  121. virtual void clear() override;
  122. /**
  123. * Overrides @abstract Task::setDefaultValues
  124. *
  125. * Set default values for the arguments.
  126. */
  127. virtual void setDefaultValues() override;
  128. /**
  129. * Overrides @abstract Task::~Task
  130. * @destructor
  131. */
  132. virtual ~GenericTask() override;
  133. private:
  134. /**
  135. * @brief m_arguments
  136. *
  137. * A container storing the task's arguments
  138. */
  139. Scheduler::TaskArguments m_arguments;
  140. };
  141. #endif // __GENERIC_TASK_HPP