Delete verbs no longer used
[apps/agl-service-windowmanager.git] / src / wm_layer.cpp
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 #include <regex>
18 #include <ilm/ilm_control.h>
19 #include <stdlib.h>
20 #include "wm_client.hpp"
21 #include "wm_layer.hpp"
22 #include "json_helper.hpp"
23 #include "util.hpp"
24
25 using std::string;
26
27 namespace wm
28 {
29
30 WMLayer::WMLayer(json_object* j)
31 {
32     this->name = jh::getStringFromJson(j, "name");
33     this->role_list = jh::getStringFromJson(j, "role");
34     this->layer_id = static_cast<unsigned>(jh::getIntFromJson(j, "layer_id"));
35 }
36
37 bool WMLayer::hasRole(const string& role)
38 {
39     auto re = std::regex(this->role_list);
40     if (std::regex_match(role, re))
41     {
42         HMI_DEBUG("role %s matches layer %s", role.c_str(), this->name.c_str());
43         return true;
44     }
45     return false;
46 }
47
48 } // namespace wm