Fix area and role
[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::unordered_map<std::string, std::string> getCurrentState();
38     const std::vector<unsigned> getIviIdList();
39     void addLayer(unsigned layer);
40     void removeLayer(unsigned layer);
41     bool hasLayer(unsigned layer);
42     void attachAppToArea(const std::string& app, const std::string& area);
43
44     // Debug
45     void dump();
46
47   private:
48     std::vector<unsigned> render_order;
49     std::unordered_map<std::string, std::string> area2appid;
50 };
51
52 class WMLayer
53 {
54   public:
55     explicit WMLayer(json_object* j, unsigned wm_layer_id);
56     ~WMLayer() = default;
57
58     // Status & Setting API
59     unsigned getNewLayerID(const std::string& role);
60     unsigned idBegin() { return this->id_begin; }
61     unsigned idEnd()   { return this->id_end; }
62     unsigned getWMLayerID() { return this->wm_layer_id; }
63     unsigned getScreenID() { return this->screen; }
64     const std::string& layerName();
65     void appendArea(const std::string& area);
66     LayerState& getLayerState() { return tmp_state; }
67     WMError setLayerState(const LayerState& l);
68     bool hasLayerID(unsigned id);
69     bool hasRole(const std::string& role);
70
71     // Manipulation
72     void addLayerToState(unsigned layer);
73     void removeLayerFromState(unsigned layer);
74     bool hasLayerFromState(unsigned layer);
75     void attachAppToArea(const std::string& app, const std::string& area);
76     std::string attachedApp(const std::string& area);
77     void update();
78     void undo();
79
80     // Event
81     void appTerminated(unsigned layer);
82
83     // Debug
84     void dump();
85
86   private:
87     LayerState tmp_state;
88     LayerState state;
89     unsigned wm_layer_id;
90     std::string name = ""; // Layer name
91     std::string role_list;
92     std::vector<std::string> area_list;
93     std::vector<unsigned>    id_list;
94     unsigned screen;
95     unsigned id_begin;
96     unsigned id_end;
97 };
98
99 } // namespace wm
100
101 #endif // WM_LAYER_HPP