summaryrefslogtreecommitdiffhomepage
path: root/tools/steps.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/steps.cc')
-rw-r--r--tools/steps.cc36
1 files changed, 36 insertions, 0 deletions
diff --git a/tools/steps.cc b/tools/steps.cc
new file mode 100644
index 0000000..ccad634
--- /dev/null
+++ b/tools/steps.cc
@@ -0,0 +1,36 @@
+/* ===========================================================
+
+ Copyright (C) 2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license
+
+=========================================================== */
+
+#include <io/print.hpp>
+#include <steps/steps.hpp>
+
+/// =========================================================== ///
+/// Use operators from steps namespace to compare steps records.
+/// =========================================================== ///
+using namespace ocl::steps::operators;
+
+const auto kStepsFileRoot = "/system/install.stp";
+
+/// =========================================================== ///
+/// @brief Main function for running steps on NeKernel.
+/// =========================================================== ///
+int main(void) {
+ ocl::io::print("steps: running steps for program...\n");
+
+ std::ifstream file(kStepsFileRoot);
+ ocl::steps::record steps;
+
+ file >> steps;
+
+ if (!ocl::steps::is_valid(steps))
+ return EXIT_FAILURE;
+
+ /// AMLALE: Read steps from file and process them.
+
+ ocl::io::print("steps: done.\n");
+
+ return EXIT_SUCCESS;
+} \ No newline at end of file