Forgot to add code of set_role_pid_ver
[apps/agl-service-windowmanager.git] / src / appfw_client.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 <string>
18 #include "appfw_client.hpp"
19 extern "C"
20 {
21 #include <afb/afb-binding.h>
22 #include <systemd/sd-bus.h>
23 }
24
25
26 using std::string;
27 const string default_address = "org.AGL.afm.user";
28
29 namespace wm {
30
31 AppFWClient::AppFWClient()
32 {}
33
34 AppFWClient::~AppFWClient()
35 {
36     sd_bus_unref(this->appfw_dbus);
37 }
38
39 WMError AppFWClient::connect(const string &address)
40 {
41     WMError ret = FAIL;
42     if(address.size() == 0)
43     {
44         return FAIL;
45     }
46
47     this->appfw_dbus = afb_daemon_get_system_bus();
48     int rc = sd_bus_set_address(this->appfw_dbus, address.c_str());
49     if(rc < 0)
50     {
51         ret = FAIL;
52     }
53     else
54     {
55         ret = SUCCESS;
56     }
57     return ret;
58 }
59
60 string AppFWClient::queryAppID(unsigned pid)
61 {
62     string ret = "";
63     if(this->appfw_dbus == nullptr)
64         return ret;
65
66
67     return ret;
68 }
69
70 } // namespace wm