PegasusWorkflowParser.h
1 
10 #ifndef WRENCH_PEGASUSWORKFLOWPARSER_H
11 #define WRENCH_PEGASUSWORKFLOWPARSER_H
12 
13 #include <string>
14 
15 namespace wrench {
16 
17  class Workflow;
18 
24 
25  public:
26 
49  static Workflow *createWorkflowFromDAX(const std::string &filename, const std::string &reference_flop_rate, bool redundant_dependencies = false);
50 
73  static Workflow *createWorkflowFromJSON(const std::string &filename, const std::string &reference_flop_rate, bool redundant_dependencies = false);
74 
95  static Workflow *createExecutableWorkflowFromJSON(const std::string &filename, const std::string &reference_flop_rate, bool redundant_dependencies = false);
96 
97  };
98 
99 };
100 
101 
102 #endif //WRENCH_PEGASUSWORKFLOWPARSER_H
static Workflow * createExecutableWorkflowFromJSON(const std::string &filename, const std::string &reference_flop_rate, bool redundant_dependencies=false)
Create an NON-abstract workflow based on a JSON file.
Definition: Alarm.cpp:20
A workflow (to be executed by a WMS)
Definition: Workflow.h:34
A class that implement methods to read workflow files provided by the Pegasus project.
Definition: PegasusWorkflowParser.h:23
static Workflow * createWorkflowFromDAX(const std::string &filename, const std::string &reference_flop_rate, bool redundant_dependencies=false)
Create an abstract workflow based on a DAX file.
static Workflow * createWorkflowFromJSON(const std::string &filename, const std::string &reference_flop_rate, bool redundant_dependencies=false)
Create an abstract workflow based on a JSON file.