From d06572e2383db191ea1a920426d06f89edb236f8 Mon Sep 17 00:00:00 2001
From: vl241552 <vincent.lorrain@cea.fr>
Date: Mon, 16 Oct 2023 14:16:23 +0000
Subject: [PATCH] [graphRegex] init

---
 include/aidge/graphRegex/GraphRegex.hpp   | 61 +++++++++++++++++++++++
 unit_tests/graphRegex/Test_GraphRegex.cpp | 15 ++++++
 2 files changed, 76 insertions(+)
 create mode 100644 include/aidge/graphRegex/GraphRegex.hpp
 create mode 100644 unit_tests/graphRegex/Test_GraphRegex.cpp

diff --git a/include/aidge/graphRegex/GraphRegex.hpp b/include/aidge/graphRegex/GraphRegex.hpp
new file mode 100644
index 000000000..a66df9f46
--- /dev/null
+++ b/include/aidge/graphRegex/GraphRegex.hpp
@@ -0,0 +1,61 @@
+#ifndef AIDGE_CORE_GRAPH_REGEX_H_
+#define AIDGE_CORE_GRAPH_PARSER_H_
+
+#include <string>
+
+#include "aidge/graphRegex/matchFsm/MatchResult.hpp"
+#include "aidge/graph/GraphView.hpp"
+#include "aidge/graph/Node.hpp"
+
+namespace Aidge{
+
+/**
+ * @brief class which is the hight level interface for graph matching, used to simplify match definition  
+ * 
+ */
+class GraphParser{
+
+    private:
+
+
+    public:
+    GraphParser();
+    virtual ~GraphParser() = default;
+
+    /**
+     * @brief add a topology query to the match 
+     * @param query the topology query to find 
+    **/
+    void addQuery(const std::string query);
+   
+   /**
+     * @brief get all the types of a graph and set it as type key in the query 
+     * @param Reference graph use to get all the node types 
+    **/
+    void setKeyGraphOp(std::shared_ptr<GraphView> Reference);
+
+   /**
+     * @brief set a node test manually 
+     * @param key the ref of this test used in the query
+     * @param ConditionalExpressions expression to test the node 
+    **/
+    void setQueryKey(const std::string key, const std::string ConditionalExpressions );
+
+    /**
+     * @brief set a specific lambda that can be used in setQueryKey
+     * @param key ref to the lambda to use in the 
+     * @param f expression to test the node ConditionalExpressions
+    **/
+    void setKeyLambda(const std::string key,std::function<bool(Aidge::NodePtr)> f);
+
+    /***
+     *  @brief brief match the querys in the graph 
+     *  @param Reference the graph were the querys in search 
+    */
+    std::shared_ptr<MatchResult> match(std::shared_ptr<GraphView> Reference);
+
+};
+}
+
+
+#endif //AIDGE_CORE_GRAPH_PARSER_H_
\ No newline at end of file
diff --git a/unit_tests/graphRegex/Test_GraphRegex.cpp b/unit_tests/graphRegex/Test_GraphRegex.cpp
new file mode 100644
index 000000000..7a2fdc380
--- /dev/null
+++ b/unit_tests/graphRegex/Test_GraphRegex.cpp
@@ -0,0 +1,15 @@
+
+#include <catch2/catch_test_macros.hpp>
+#include "aidge/graphRegex/GraphRegex.hpp"
+
+
+
+using namespace Aidge;
+
+TEST_CASE("GraphRegex") {
+
+    SECTION("Empty") {
+
+        
+    }
+}
\ No newline at end of file
-- 
GitLab