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 #include <json-c/json.h>
18 #include "wm_client.hpp"
19 #include "hmi-debug.h"
21 #define INVALID_SURFACE_ID 0
29 const vector<string> kWMEvents = {
30 // Private event for applications
31 "syncDraw", "flushDraw", "visible", "invisible", "active", "inactive", "error"};
32 const vector<string> kErrorDescription = {
35 static const char kKeyDrawingName[] = "drawing_name";
36 static const char kKeyrole[] = "role";
37 static const char kKeyError[] = "error";
38 static const char kKeyErrorDesc[] = "kErrorDescription";
40 WMClient::WMClient(const string &appid, unsigned layer, unsigned surface, const string &role)
41 : id(appid), layer(layer),
44 role2surface[role] = surface;
45 for (auto x : kWMEvents)
50 afb_event ev = afb_daemon_make_event(x.c_str());
56 WMClient::WMClient(const string &appid, const string &role)
62 role2surface[role] = INVALID_SURFACE_ID;
63 for (auto x : kWMEvents)
68 afb_event ev = afb_daemon_make_event(x.c_str());
78 string WMClient::appID() const
83 unsigned WMClient::surfaceID(const string &role) const
85 if (0 == this->role2surface.count(role))
87 HMI_NOTICE("wm", "invalid role %s : appID : %s", role.c_str(), this->id.c_str());
88 return INVALID_SURFACE_ID;
90 return this->role2surface.at(role);
93 std::string WMClient::role(unsigned surface) const
95 for(const auto& [key, value] : this->role2surface)
101 return std::string("");
104 unsigned WMClient::layerID() const
109 void WMClient::registerLayer(unsigned layer)
114 bool WMClient::addSurface(const string &role, unsigned surface)
116 HMI_DEBUG("wm", "Add role %s with surface %d", role.c_str(), surface);
117 if (0 != this->role2surface.count(role))
119 HMI_NOTICE("wm", "override surfaceID %d with %d", this->role2surface[role], surface);
121 this->role2surface[role] = surface;
125 bool WMClient::removeSurfaceIfExist(unsigned surface)
128 for (auto &x : this->role2surface)
130 if (surface == x.second)
132 HMI_INFO("wm", "Remove surface from client %s: role %s, surface: %d",
133 this->id.c_str(), x.first.c_str(), x.second);
134 this->role2surface.erase(x.first);
142 bool WMClient::removeRole(const string &role)
145 if (this->role2surface.count(role) != 0)
147 this->role2surface.erase(role);
153 bool WMClient::subscribe(afb_req req, const string &evname)
155 if(evname != kKeyError){
156 HMI_DEBUG("wm", "error is only enabeled for now");
159 int ret = afb_req_subscribe(req, this->event2list[evname]);
162 HMI_DEBUG("wm", "Failed to subscribe %s", evname.c_str());
168 void WMClient::emitError(WM_CLIENT_ERROR_EVENT ev)
170 if (!afb_event_is_valid(this->event2list[kKeyError])){
171 HMI_ERROR("wm", "event err is not valid");
174 json_object *j = json_object_new_object();
175 json_object_object_add(j, kKeyError, json_object_new_int(ev));
176 json_object_object_add(j, kKeyErrorDesc, json_object_new_string(kErrorDescription[ev].c_str()));
177 HMI_DEBUG("wm", "error: %d, description:%s", ev, kErrorDescription[ev].c_str());
179 int ret = afb_event_push(this->event2list[kKeyError], j);
182 HMI_DEBUG("wm", "afb_event_push failed: %m");
186 void WMClient::dumpInfo()
188 DUMP("APPID : %s", id.c_str());
189 DUMP(" LAYER : %d", layer);
190 for (const auto &x : this->role2surface)
192 DUMP(" ROLE : %s , SURFACE : %d", x.first.c_str(), x.second);