1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/*
*
* Connection Manager
*
* Copyright (C) 2012 Intel Corporation. All rights reserved.
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <getopt.h>
#include <string.h>
#include <errno.h>
#include <readline/readline.h>
#include <glib.h>
#include <dbus/dbus.h>
#include <gdbus.h>
#include "client/data_manager.h"
#include "client/services.h"
#include "client/technology.h"
#include "client/interactive.h"
#include "client/monitor.h"
static GMainLoop *main_loop;
static gboolean timeout_wait(gpointer data)
{
static int i;
i++;
/* Set to whatever number of retries is wanted/needed */
if (i == 1) {
g_main_loop_quit(data);
return FALSE;
}
return TRUE;
}
static void rl_handler(char *input)
{
if (input == NULL)
exit(EXIT_FAILURE);
else
printf("Use ctrl-d to exit\n");
}
static gboolean readmonitor(GIOChannel *channel, GIOCondition condition,
gpointer user_data){
rl_callback_read_char();
return TRUE;
}
int main(int argc, char *argv[])
{
DBusConnection *connection;
DBusError err;
int events, error;
GIOChannel *gchan;
main_loop = g_main_loop_new(NULL, FALSE);
dbus_error_init(&err);
connection = g_dbus_setup_bus(DBUS_BUS_SYSTEM, NULL, &err);
if (dbus_error_is_set(&err)) {
fprintf(stderr, "Connection Error: %s\n", err.message);
dbus_error_free(&err);
}
if (connection == NULL) {
fprintf(stderr, "Could not connect to system bus...exiting\n");
exit(EXIT_FAILURE);
}
if (argc < 2)
show_interactive(connection, main_loop);
error = commands_no_options(connection, argv + 1, argc - 1);
if (error == -1) {
error = commands_options(connection, argv + 1, argc - 1);
if (strcmp(argv[1], "monitor") != 0)
return error;
} else {
return error;
}
if (error == -1) {
fprintf(stderr, "%s is not a valid command, check help.\n",
argv[1]);
return -EINVAL;
}
gchan = g_io_channel_unix_new(fileno(stdin));
events = G_IO_IN | G_IO_ERR | G_IO_HUP | G_IO_NVAL;
g_io_add_watch(gchan, events, readmonitor, NULL);
rl_callback_handler_install("", rl_handler);
if (strcmp(argv[1], "monitor") != 0)
g_timeout_add_full(G_PRIORITY_DEFAULT, 100, timeout_wait,
main_loop, NULL);
g_main_loop_run(main_loop);
rl_callback_handler_remove();
g_io_channel_unref(gchan);
if (main_loop != NULL)
g_main_loop_unref(main_loop);
return 0;
}
|