Merge "Add feature check code to remove the build macro" into tizen
[platform/core/connectivity/net-config.git] / src / wifi-passpoint.c
1 /*
2  * Network Configuration Module
3  *
4  * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include <errno.h>
21
22 #include "log.h"
23 #include "util.h"
24 #include "neterror.h"
25 #include "netdbus.h"
26 #include "netsupplicant.h"
27 #include "wifi-passpoint.h"
28
29 #if defined TIZEN_WLAN_PASSPOINT
30 static gboolean netconfig_wifi_get_passpoint(gint32 *enabled)
31 {
32         GVariant *reply, *var = NULL;
33         gboolean value;
34         gboolean result = FALSE;
35
36         reply = netconfig_supplicant_invoke_dbus_interface_property_get(SUPPLICANT_IFACE_INTERFACE,
37                                 "Passpoint");
38         if (reply == NULL) {
39                 ERR("Error!!! Failed to get passpoint property");
40                 return FALSE;
41         }
42
43         g_variant_get(reply, "(v)", &var);
44
45         if (g_variant_is_of_type(var, G_VARIANT_TYPE_INT32)) {
46                 value = g_variant_get_int32(var);
47                 if (value == TRUE)
48                         *enabled = 1;
49                 else
50                         *enabled = 0;
51
52                 result = TRUE;
53         }
54
55         if (var)
56                 g_variant_unref(var);
57
58         g_variant_unref(reply);
59
60         return result;
61 }
62
63 static gboolean netconfig_wifi_set_passpoint(gint32 enable)
64 {
65         gint32 value = enable ? 1 : 0;
66         gboolean result = FALSE;
67         GVariant *input_args = NULL;
68
69         input_args = g_variant_new_int32(value);
70
71         result = netconfig_supplicant_invoke_dbus_interface_property_set(
72                         SUPPLICANT_IFACE_INTERFACE, "Passpoint", input_args, NULL);
73         if (result == FALSE)
74                 ERR("Fail to set passpoint enable[%d]", enable);
75
76         return result;
77 }
78 #endif
79
80 gboolean handle_get_passpoint(Wifi *wifi, GDBusMethodInvocation *context)
81 {
82         gint32 enable = 0;
83         g_return_val_if_fail(wifi != NULL, FALSE);
84
85 #if defined TIZEN_WLAN_PASSPOINT
86         if (netconfig_wifi_get_passpoint(&enable)) {
87                 wifi_complete_get_passpoint(wifi, context, enable);
88                 return TRUE;
89         }
90         wifi_complete_get_passpoint(wifi, context, enable);
91         return FALSE;
92 #else
93         enable = 0;
94         wifi_complete_get_passpoint(wifi, context, enable);
95         return TRUE;
96 #endif
97 }
98
99 gboolean handle_set_passpoint(Wifi *wifi, GDBusMethodInvocation *context, gint enable)
100 {
101         gboolean result = FALSE;
102         g_return_val_if_fail(wifi != NULL, FALSE);
103
104 #if defined TIZEN_WLAN_PASSPOINT
105         result = netconfig_wifi_set_passpoint(enable);
106         wifi_complete_set_passpoint(wifi, context);
107         return result;
108 #else
109         wifi_complete_set_passpoint(wifi, context);
110         return result;
111 #endif
112 }