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
23 //#include <experimental/optional>
24 #include "windowmanager-client.hpp"
25 #include "request.hpp"
29 /* using std::experimental::nullopt;
30 using std::experimental::optional; */
36 AppList(const AppList &obj) = delete;
38 // Client Database Interface
39 void addClient(const std::string &appid, const std::string &role);
40 void removeClient(const std::string &appid);
41 bool contains(const std::string &appid);
43 std::shared_ptr<WMClient> lookUpClient(const std::string &appid);
46 unsigned currentSequenceNumber();
47 unsigned getSequenceNumber(const std::string &appid);
48 unsigned addAllocateRequest(WMRequest req);
49 /* TODO: consider, which is better WMClient or std::string appid?
50 if appid is key to manage resources, it is better to select std::string
51 otherwise WMClient is better, IMO */
52 bool requestFinished();
53 bool setAction(unsigned request_seq, const std::string &appid, const std::string &role, const std::string &area);
54 bool setEndDrawFinished(unsigned request_seq, const std::string &appid, const std::string &role);
55 bool endDrawFullfilled(unsigned request_seq);
56 void removeRequest(unsigned request_seq);
60 struct WMTrigger getRequest(unsigned request_seq);
61 const std::vector<struct WMAction>& getActions(unsigned request_seq);
67 std::vector<WMRequest> req_list;
68 std::unordered_map<std::string, std::shared_ptr<WMClient>> client_list;
73 #endif // ALLOCATE_LIST_HPP