HTGS  v2.0
The Hybrid Task Graph Scheduler
ExecutionPipelineBroadcastRule.hpp
Go to the documentation of this file.
1 // NIST-developed software is provided by NIST as a public service. You may use, copy and distribute copies of the software in any medium, provided that you keep intact this entire notice. You may improve, modify and create derivative works of the software or any portion of the software, and you may copy and distribute such modifications or works. Modified works should carry a notice stating that you changed the software and should note the date and nature of any such change. Please explicitly acknowledge the National Institute of Standards and Technology as the source of the software.
2 // NIST-developed software is expressly provided "AS IS." NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED, IN FACT OR ARISING BY OPERATION OF LAW, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT AND DATA ACCURACY. NIST NEITHER REPRESENTS NOR WARRANTS THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT ANY DEFECTS WILL BE CORRECTED. NIST DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OF THE SOFTWARE OR THE RESULTS THEREOF, INCLUDING BUT NOT LIMITED TO THE CORRECTNESS, ACCURACY, RELIABILITY, OR USEFULNESS OF THE SOFTWARE.
3 // You are solely responsible for determining the appropriateness of using and distributing the software and you assume all risks associated with its use, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and the unavailability or interruption of operation. This software is not intended to be used in any situation where a failure could cause risk of injury or damage to property. The software developed by NIST employees is not subject to copyright protection within the United States.
10 #ifndef HTGS_EXECUTIONPIPELINEBROADCASTRULE_HPP
11 #define HTGS_EXECUTIONPIPELINEBROADCASTRULE_HPP
12 #include <htgs/api/IRule.hpp>
13 namespace htgs {
14 
24 template<class T>
25 class ExecutionPipelineBroadcastRule : public IRule<T, T> {
26  public:
27  ~ExecutionPipelineBroadcastRule() override {}
28  bool canTerminateRule(size_t pipelineId) override { return false; }
29  void shutdownRule(size_t pipelineId) override {}
30  std::string getName() override {
31  return "DefaultBroadcastRule";
32  }
33  void applyRule(std::shared_ptr<T> data, size_t pipelineId) override {
34  this->addResult(data);
35  }
36 };
37 
38 }
39 #endif //HTGS_EXECUTIONPIPELINEBROADCASTRULE_HPP
bool canTerminateRule(size_t pipelineId) override
Virtual function to determine if a rule is ready to be terminated.
Definition: ExecutionPipelineBroadcastRule.hpp:28
std::string getName() override
Virtual function to get the name of the IRule.
Definition: ExecutionPipelineBroadcastRule.hpp:30
void shutdownRule(size_t pipelineId) override
Virtual function that handles when a rule is being shutdown for a particular pipelineId.
Definition: ExecutionPipelineBroadcastRule.hpp:29
Provides an interface to send data along RuleManager edges for processing state and dependencies...
Definition: ExecutionPipeline.hpp:34
Provides an interface to send data along RuleManager edges for processing state and dependencies...
void addResult(std::shared_ptr< T > result)
Adds a result value to the output.
Definition: IRule.hpp:188
void applyRule(std::shared_ptr< T > data, size_t pipelineId) override
Pure virtual function to process input data.
Definition: ExecutionPipelineBroadcastRule.hpp:33
the default execution pipeline rule that is used if no other rule is specified for an execution pipel...
Definition: ExecutionPipelineBroadcastRule.hpp:25
Definition: Bookkeeper.hpp:23