2 * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #ifndef ALLOCATE_LIST_HPP
18 #define ALLOCATE_LIST_HPP
24 #include "wm_client.hpp"
25 #include "request.hpp"
26 #include "wm_error.hpp"
31 /* using std::experimental::nullopt;
32 using std::experimental::optional; */
34 struct FloatingSurface
46 AppList(const AppList &obj) = delete;
48 // Client Database Interface
49 /* TODO: consider, which is better WMClient as parameter or not
50 If the WMClient should be more flexible, I think this param should be WMClient class
52 void addClient(const std::string &appid, unsigned layer,
53 unsigned surface,const std::string &role);
54 void removeClient(const std::string &appid);
55 bool contains(const std::string &appid) const;
56 int countClient() const;
57 std::shared_ptr<WMClient> lookUpClient(const std::string &appid);
58 void removeSurface(unsigned surface);
59 std::string getAppID(unsigned surface, const std::string &role, bool *found) const;
60 WMError appendRole(const std::string &appid, const std::string &role, unsigned surface);
63 void addFloatingClient(const std::string &appid, unsigned layer, const std::string &role);
64 void addFloatingSurface(const std::string &appid, unsigned surface, unsigned pid);
65 WMError popFloatingSurface(unsigned pid, unsigned *surface);
66 WMError popFloatingSurface(const std::string &appid, unsigned *surface);
67 void removeFloatingSurface(unsigned surface);
70 unsigned currentRequestNumber() const;
71 unsigned getRequestNumber(const std::string &appid) const;
72 unsigned addRequest(WMRequest req);
73 WMError setAction(unsigned req_num, const struct WMAction &action);
74 WMError setAction(unsigned req_num, const std::string &appid,
75 const std::string &role, const std::string &area, TaskVisible visible);
76 bool setEndDrawFinished(unsigned req_num, const std::string &appid, const std::string &role);
77 bool endDrawFullfilled(unsigned req_num);
78 void removeRequest(unsigned req_num);
80 bool haveRequest() const;
82 struct WMTrigger getRequest(unsigned req_num, bool* found);
83 const std::vector<struct WMAction> &getActions(unsigned req_num, bool* found);
87 void dumpFloatingSurfaces();
90 std::vector<WMRequest> req_list;
91 std::unordered_map<std::string, std::shared_ptr<WMClient>> app2client;
94 std::vector<struct FloatingSurface> floating_surfaces;
98 #endif // ALLOCATE_LIST_HPP