dbus-policy : Simplified complex dbus config. rules.
[platform/core/connectivity/wifi-mesh-manager.git] / haltest / manager.cpp
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
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 <stdio.h>
18 #include <stdlib.h>
19 #include <iostream>
20 #include <gmock/gmock.h>
21 #include <gtest/gtest.h>
22
23 #include "manager.h"
24
25 Manager::Manager()
26 {
27         Create();
28 }
29
30 Manager::~Manager()
31 {
32         Destroy();
33 }
34
35 error_e Manager::EnableManager(void)
36 {
37         GVariant *message = NULL;
38         error_e error = ERROR_NONE;
39         int result = 0;
40
41         if (!CheckFeature())
42                 return ERROR_NONE;
43
44         message = InvokeMethod(WIFI_MESH_MGR_SERVICE".manager",
45                 WIFI_MESH_MGR_MANAGER_PATH,
46                 WIFI_MESH_MGR_MANAGER_INTERFACE,
47                 WIFI_MESH_MGR_METHOD_MANAGER_START,
48                 NULL,
49                 &error);
50
51         if (message == NULL) {
52                 GLOGD("Failed to invoke dbus method");
53                 return error;
54         }
55
56         g_variant_get(message, "(i)", &result);
57         GLOGD("Successfully stop manager [%d]", result);
58         g_variant_unref(message);
59
60         return ERROR_NONE;
61 }
62
63 error_e Manager::DisableManager(void)
64 {
65         GVariant *message = NULL;
66         error_e error = ERROR_NONE;
67         int result = 0;
68
69         if (!CheckFeature())
70                 return ERROR_NONE;
71
72         message = InvokeMethod(WIFI_MESH_MGR_SERVICE,
73                 WIFI_MESH_MGR_MANAGER_PATH,
74                 WIFI_MESH_MGR_MANAGER_INTERFACE,
75                 WIFI_MESH_MGR_METHOD_MANAGER_STOP,
76                 NULL,
77                 &error);
78
79         if (message == NULL) {
80                 GLOGD("Failed to invoke dbus method");
81                 return error;
82         }
83
84         g_variant_get(message, "(i)", &result);
85         GLOGD("Successfully stop manager [%d]", result);
86         g_variant_unref(message);
87
88         return ERROR_NONE;
89 }