clang formatting
[staging/windowmanager.git] / src / layers.cpp
index 1e44a1b..3205323 100644 (file)
@@ -1,6 +1,18 @@
-//
-// Created by m on 7/27/17.
-//
+/*
+ * Copyright (C) 2017 Mentor Graphics Development (Deutschland) GmbH
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 
 #include <algorithm>
 
@@ -22,7 +34,7 @@ layer::layer(nlohmann::json const &j) {
    }
    this->name = j["name"].get<std::string>();
    this->layer_id = get<int>(j["layer_id"]);
-   this->rect = genivi::rect{-1, -1, 0, 0};
+   this->rect = genivi::full_rect;
    if (j["area"]["type"] == "rect") {
       auto jr = j["area"]["rect"];
       this->rect = genivi::rect{
@@ -55,6 +67,11 @@ struct result<struct layer_map> to_layer_map(nlohmann::json const &j) {
          }
       }
 
+      auto msi = j.find("main_surface");
+      if (msi != j.end()) {
+         stl.main_surface = get<int>((*msi)["surface_id"]);
+      }
+
       // Check lookup
       auto jtests = j.value("tests", json());
 
@@ -119,4 +136,36 @@ optional<genivi::rect> layer_map::get_layer_rect(int surface_id) {
    return e ? optional<genivi::rect>(e->rect) : nullopt;
 }
 
+json layer::to_json() const {
+   auto is_full = this->rect == genivi::full_rect;
+
+   json r{};
+   if (is_full) {
+      r = {{"type", "full"}};
+   } else {
+      r = {{"type", "rect"},
+           {"rect",
+            {{"x", this->rect.x},
+             {"y", this->rect.y},
+             {"width", this->rect.w},
+             {"height", this->rect.h}}}};
+   }
+
+   return {
+      {"id_min", this->id_min},
+      {"id_max", this->id_max},
+      {"name", this->name},
+      {"layer_id", this->layer_id},
+      {"area", r},
+   };
+}
+
+json layer_map::to_json() const {
+   json j{};
+   for (auto const &i : this->mapping) {
+      j.push_back(i.to_json());
+   }
+   return j;
+}
+
 }  // namespace wm