Base Code merged to SPIN 2.4
[platform/upstream/connman.git] / client / input.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2012-2014  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  *
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <errno.h>
30 #include <glib.h>
31 #include <readline/readline.h>
32 #include <readline/history.h>
33
34 #include <gdbus.h>
35 #include "input.h"
36 #include "commands.h"
37
38 static DBusConnection *connection;
39 static GMainLoop *main_loop;
40 static bool interactive = false;
41
42 static bool save_input;
43 static char *saved_line;
44 static int saved_point;
45
46 void __connmanctl_quit(void)
47 {
48         if (main_loop)
49                 g_main_loop_quit(main_loop);
50 }
51
52 bool __connmanctl_is_interactive(void)
53 {
54         return interactive;
55 }
56
57 void __connmanctl_save_rl(void)
58 {
59         save_input = !RL_ISSTATE(RL_STATE_DONE);
60
61         if (save_input) {
62                 saved_point = rl_point;
63                 saved_line = rl_copy_text(0, rl_end);
64                 rl_save_prompt();
65                 rl_replace_line("", 0);
66                 rl_redisplay();
67         }
68 }
69
70 void __connmanctl_redraw_rl(void)
71 {
72         if (save_input) {
73                 rl_restore_prompt();
74                 rl_replace_line(saved_line, 0);
75                 rl_point = saved_point;
76                 rl_redisplay();
77                 free(saved_line);
78         }
79
80         save_input = 0;
81 }
82
83 static void rl_handler(char *input)
84 {
85         char **args, **trim_args;
86         int num, len, err, i;
87
88         if (!input) {
89                 rl_newline(1, '\n');
90                 g_main_loop_quit(main_loop);
91                 return;
92         }
93
94         args = g_strsplit(input, " ", 0);
95         num = g_strv_length(args);
96
97         trim_args = g_new0(char *, num + 1);
98         for (i = 0, len = 0; i < num; i++) {
99                 if (*args[i] != '\0') {
100                         trim_args[len] = args[i];
101                         len++;
102                 }
103         }
104
105         if (len > 0) {
106
107                 add_history(input);
108
109                 err = __connmanctl_commands(connection, trim_args, len);
110
111                 if (err > 0)
112                         g_main_loop_quit(main_loop);
113         }
114
115         g_strfreev(args);
116         g_free(trim_args);
117 }
118
119 static gboolean input_handler(GIOChannel *channel, GIOCondition condition,
120                 gpointer user_data)
121 {
122         if (condition & (G_IO_HUP | G_IO_ERR | G_IO_NVAL)) {
123                 g_main_loop_quit(main_loop);
124                 return FALSE;
125         }
126
127         rl_callback_read_char();
128         return TRUE;
129 }
130
131 static char **complete_agent(const char *text, int start, int end)
132 {
133         rl_attempted_completion_over = 1;
134
135         return NULL;
136 }
137
138 /* Return how many parameters we have typed */
139 int __connmanctl_input_calc_level(void)
140 {
141         int count = 0;
142         char *ptr;
143
144         ptr = rl_line_buffer;
145
146         while (*ptr) {
147                 if (*ptr == ' ') {
148                         if (*(ptr + 1) == ' ') {
149                                 ptr++;
150                                 continue;
151                         } else
152                                 count++;
153                 }
154                 ptr++;
155         }
156
157         return count;
158 }
159
160 void __connmanctl_input_lookup_end(void)
161 {
162         rl_attempted_completion_over = 1;
163 }
164
165 static char **complete_command(const char *text, int start, int end)
166 {
167         if (start == 0) {
168                 return rl_completion_matches(text,
169                                 __connmanctl_lookup_command);
170
171         } else {
172                 __connmanctl_lookup_cb cb;
173                 char **str = NULL;
174
175                 cb = __connmanctl_get_lookup_func(rl_line_buffer);
176                 if (cb)
177                         str = rl_completion_matches(text, cb);
178                 else
179                         rl_attempted_completion_over = 1;
180
181                 return str;
182         }
183 }
184
185 static struct {
186         connmanctl_input_func_t cb;
187         void *user_data;
188 } agent_handler;
189
190 static void rl_agent_handler(char *input)
191 {
192         agent_handler.cb(input, agent_handler.user_data);
193 }
194
195 void __connmanctl_agent_mode(const char *prompt,
196                 connmanctl_input_func_t input_handler, void *user_data)
197 {
198         agent_handler.cb = input_handler;
199         agent_handler.user_data = user_data;
200
201         if (input_handler)
202                 rl_callback_handler_install(prompt, rl_agent_handler);
203         else {
204                 rl_set_prompt(prompt);
205                 rl_callback_handler_remove();
206                 rl_redisplay();
207         }
208         rl_attempted_completion_function = complete_agent;
209 }
210
211 void __connmanctl_command_mode(void)
212 {
213         rl_callback_handler_install("connmanctl> ", rl_handler);
214         rl_attempted_completion_function = complete_command;
215 }
216
217 int __connmanctl_input_init(int argc, char *argv[])
218 {
219         char *help[] = {
220                 "help",
221                 NULL
222         };
223         guint source = 0;
224         int err;
225         DBusError dbus_err;
226         GIOChannel *channel;
227
228         dbus_error_init(&dbus_err);
229         connection = g_dbus_setup_bus(DBUS_BUS_SYSTEM, NULL, &dbus_err);
230
231         if (dbus_error_is_set(&dbus_err)) {
232                 fprintf(stderr, "Error: %s\n", dbus_err.message);
233                 dbus_error_free(&dbus_err);
234                 return 1;
235         }
236
237         if (argc < 2) {
238                 interactive = true;
239
240                 channel = g_io_channel_unix_new(fileno(stdin));
241                 source = g_io_add_watch(channel,
242                                 G_IO_IN|G_IO_ERR|G_IO_HUP|G_IO_NVAL,
243                                 input_handler, NULL);
244                 g_io_channel_unref(channel);
245
246                 __connmanctl_monitor_completions(connection);
247
248                 __connmanctl_command_mode();
249
250                 err = -EINPROGRESS;
251         } else {
252                 interactive = false;
253
254                 if (strcmp(argv[1], "--help") == 0 ||
255                                 strcmp(argv[1], "-h") == 0)
256                         err = __connmanctl_commands(connection, help, 1);
257                 else
258                         err = __connmanctl_commands(connection, argv + 1,
259                                         argc - 1);
260         }
261
262         if (err == -EINPROGRESS) {
263                 main_loop = g_main_loop_new(NULL, FALSE);
264                 g_main_loop_run(main_loop);
265
266                 err = 0;
267         }
268
269         if (interactive) {
270                 g_source_remove(source);
271                 __connmanctl_monitor_completions(NULL);
272
273                 rl_callback_handler_remove();
274 #if !defined TIZEN_EXT
275                 rl_message("");
276 #endif
277         }
278
279         dbus_connection_unref(connection);
280         if (main_loop)
281                 g_main_loop_unref(main_loop);
282
283         if (err < 0)
284                 err = -err;
285         else
286                 err = 0;
287
288         return err;
289 }