NEMoSys  0.63.0
A modular, extensible resource with robust automated mesh generation, mesh quality analysis, adaptive mesh refinement, and data transfer between arbitrary meshes.
NemDriver.H
Go to the documentation of this file.
1 /*******************************************************************************
2 * Promesh *
3 * Copyright (C) 2022, IllinoisRocstar LLC. All rights reserved. *
4 * *
5 * Promesh is the property of IllinoisRocstar LLC. *
6 * *
7 * IllinoisRocstar LLC *
8 * Champaign, IL *
9 * www.illinoisrocstar.com *
10 * promesh@illinoisrocstar.com *
11 *******************************************************************************/
12 /*******************************************************************************
13 * This file is part of Promesh *
14 * *
15 * This version of Promesh is free software: you can redistribute it and/or *
16 * modify it under the terms of the GNU Lesser General Public License as *
17 * published by the Free Software Foundation, either version 3 of the License, *
18 * or (at your option) any later version. *
19 * *
20 * Promesh is distributed in the hope that it will be useful, but WITHOUT ANY *
21 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS *
22 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more *
23 * details. *
24 * *
25 * You should have received a copy of the GNU Lesser General Public License *
26 * along with this program. If not, see <https://www.gnu.org/licenses/>. *
27 * *
28 *******************************************************************************/
29 #ifndef NEMOSYS_NEMDRIVER_H_
30 #define NEMOSYS_NEMDRIVER_H_
31 
32 #include "nemosys_export.h"
33 
34 #include <jsoncons/json.hpp>
35 #include <memory>
36 #include <string>
37 
38 namespace NEM {
39 namespace DRV {
40 
41 // TODO: need to harden json input checks etc.
42 /**
43  * @class NemDriver
44  * @brief base class for drivers
45  */
46 class NEMOSYS_EXPORT NemDriver {
47  public:
48  virtual ~NemDriver() = default;
49 
50  /**
51  * Factory method for all drivers.
52  * @param inputjson json input with "Program Type" key
53  * @return pointer to base NemDriver class
54  */
55  static std::unique_ptr<NemDriver> readJSON(const jsoncons::json &inputjson);
56  /**
57  * @brief Run the workflow represented by the driver.
58  */
59  virtual void execute() const = 0;
60 
61  JSONCONS_TYPE_TRAITS_FRIEND
62 
63  protected:
64  NemDriver() = default;
65  NemDriver(const NemDriver&) = default;
66  NemDriver(NemDriver &&) = default;
67  NemDriver &operator=(const NemDriver &) = default;
68  NemDriver &operator=(NemDriver &&) = default;
69 
70  private:
71  virtual jsoncons::string_view getProgramType() const = 0;
72 };
73 
74 struct NEMOSYS_EXPORT DriverOutFile {
75  public:
76  explicit DriverOutFile(std::string output);
77 
78  std::string outputFile{};
79 
80  JSONCONS_TYPE_TRAITS_FRIEND
81 
82  private:
83  DriverOutFile() = default;
84 };
85 
86 struct NEMOSYS_EXPORT DriverInOutFiles {
87  public:
88  DriverInOutFiles(std::string input, std::string output);
89 
90  std::string inputMeshFile{};
91  std::string outputMeshFile{};
92 
93  JSONCONS_TYPE_TRAITS_FRIEND
94 
95  private:
96  DriverInOutFiles() = default;
97 };
98 
99 } // namespace DRV
100 } // namespace NEM
101 
102 #endif // NEMOSYS_NEMDRIVER_H_
base class for drivers
Definition: NemDriver.H:46