POI: AGL LifeCycle Management
[apps/agl-service-windowmanager.git] / src / wm_layer.hpp
1 /*
2  * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef WM_LAYER_HPP
18 #define WM_LAYER_HPP
19
20 #include <string>
21 #include <vector>
22 #include <unordered_map>
23 #include <memory>
24 #include "wm_error.hpp"
25
26 struct json_object;
27
28 namespace wm
29 {
30
31 class WMClient;
32 class LayerState
33 {
34   public:
35     LayerState();
36     ~LayerState() = default;
37     const std::vector<unsigned> getIviIdList();
38     void addLayer(unsigned layer);
39     void removeLayer(unsigned layer);
40     void attachAppToArea(const std::string& app, const std::string& area);
41
42     // Debug
43     void dump();
44
45   private:
46     std::vector<unsigned> render_order;
47     std::unordered_map<std::string, std::string> area2appid;
48 };
49
50 class WMLayer
51 {
52   public:
53     explicit WMLayer(json_object* j, unsigned wm_layer_id);
54     ~WMLayer() = default;
55
56     // Status & Setting API
57     unsigned getNewLayerID(const std::string& role);
58     unsigned idBegin() { return this->id_begin; }
59     unsigned idEnd()   { return this->id_end; }
60     unsigned getWMLayerID() { return this->wm_layer_id; }
61     const std::string& layerName();
62     void appendArea(const std::string& area);
63     LayerState& getLayerState() { return tmp_state; }
64     WMError setLayerState(const LayerState& l);
65     bool hasLayerID(unsigned id);
66     bool hasRole(const std::string& role);
67
68     // Manipulation
69     void addLayerToState(unsigned layer);
70     void removeLayerFromState(unsigned layer);
71     void attachAppToArea(const std::string& app, const std::string& area);
72     void update();
73     void undo();
74
75     // Event
76     void appTerminated(unsigned layer);
77
78     // Debug
79     void dump();
80
81   private:
82     LayerState tmp_state;
83     LayerState state;
84     unsigned wm_layer_id;
85     std::string name = ""; // Layer name
86     std::string role_list;
87     std::vector<std::string> area_list;
88     std::vector<unsigned>    id_list;
89     unsigned id_begin;
90     unsigned id_end;
91 };
92
93 } // namespace wm
94
95 #endif // WM_LAYER_HPP