layers: fix layers parsing, do not sort by prio
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>
Tue, 12 Sep 2017 09:29:26 +0000 (11:29 +0200)
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>
Tue, 12 Sep 2017 09:29:26 +0000 (11:29 +0200)
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
src/layers.cpp
src/layers.hpp

index b931870..d0a769a 100644 (file)
@@ -45,25 +45,24 @@ layer::layer(nlohmann::json const &j) {
    auto split_layouts = j.find("split_layouts");
    if (split_layouts != j.end()) {
       auto &sls = j["split_layouts"];
-      this->layouts.reserve(sls.size());
+      // this->layouts.reserve(sls.size());
       std::transform(std::cbegin(sls), std::cend(sls),
-                     std::back_inserter(this->layouts), [](json const &sl) {
-                        struct split_layout l {};
-                        l.name = sl["name"];
-                        l.main_match = sl["main_match"];
-                        l.sub_match = sl["sub_match"];
-                        l.prio = sl.value<int>("priority", 0);
+                     std::back_inserter(this->layouts), [this](json const &sl) {
+                        struct split_layout l {
+                           sl["name"], sl["main_match"], sl["sub_match"],
+                              sl.value<int>("priority", 0)
+                        };
                         logdebug(
-                           "Added split_layout \"%s\" (main: \"%s\") (sub: "
-                           "\"%s\") (prio: %d)",
+                           "layer %d add split_layout \"%s\" (main: \"%s\") (sub: "
+                           "\"%s\") (prio: %d)", this->layer_id,
                            l.name.c_str(), l.main_match.c_str(),
                            l.sub_match.c_str(), l.prio);
                         return l;
                      });
-      std::sort(std::begin(this->layouts), std::end(this->layouts),
-                [](struct split_layout const &a, struct split_layout const &b) {
-                   return a.prio < b.prio;
-                });
+      //std::sort(std::begin(this->layouts), std::end(this->layouts),
+      //          [](struct split_layout const &a, struct split_layout const &b) {
+      //             return a.prio < b.prio;
+      //          });
    }
 }
 
index 924457f..0601614 100644 (file)
@@ -18,6 +18,8 @@
 #define TMCAGLWM_LAYERS_H
 
 #include <json.hpp>
+
+#include <regex>
 #include <set>
 #include <string>
 
@@ -30,7 +32,7 @@ struct split_layout {
    std::string name;
    std::string main_match;
    std::string sub_match;
-   int prio;
+   int prio;  // no entirely sure we will use this
 };
 
 struct layer {