Update WISPr command line client to use GWeb
[framework/connectivity/connman.git] / tools / web-test.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  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 version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <string.h>
28 #include <signal.h>
29
30 #include <gweb/gweb.h>
31
32 static GTimer *timer;
33
34 static GMainLoop *main_loop;
35
36 static void web_debug(const char *str, void *data)
37 {
38         g_print("%s: %s\n", (const char *) data, str);
39 }
40
41 static void sig_term(int sig)
42 {
43         g_main_loop_quit(main_loop);
44 }
45
46 static void web_result(guint16 status, GWebResult *result, gpointer user_data)
47 {
48         gdouble elapsed;
49
50         elapsed = g_timer_elapsed(timer, NULL);
51
52         g_print("elapse: %f seconds\n", elapsed);
53
54         g_print("status: %03u\n", status);
55
56         g_main_loop_quit(main_loop);
57 }
58
59 static gboolean option_debug = FALSE;
60 static gchar *option_nameserver = NULL;
61
62 static GOptionEntry options[] = {
63         { "debug", 'd', 0, G_OPTION_ARG_NONE, &option_debug,
64                                         "Enable debug output" },
65         { "nameserver", 'n', 0, G_OPTION_ARG_STRING, &option_nameserver,
66                                         "Specify nameserver", "ADDRESS" },
67         { NULL },
68 };
69
70 int main(int argc, char *argv[])
71 {
72         GOptionContext *context;
73         GError *error = NULL;
74         struct sigaction sa;
75         GWeb *web;
76         int index = 0;
77
78         context = g_option_context_new(NULL);
79         g_option_context_add_main_entries(context, options, NULL);
80
81         if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
82                 if (error != NULL) {
83                         g_printerr("%s\n", error->message);
84                         g_error_free(error);
85                 } else
86                         g_printerr("An unknown error occurred\n");
87                 return 1;
88         }
89
90         g_option_context_free(context);
91
92         if (argc < 2) {
93                 fprintf(stderr, "Missing argument\n");
94                 return 1;
95         }
96
97         web = g_web_new(index);
98         if (web == NULL) {
99                 fprintf(stderr, "Failed to create web service\n");
100                 return 1;
101         }
102
103         if (option_debug == TRUE)
104                 g_web_set_debug(web, web_debug, "WEB");
105
106         main_loop = g_main_loop_new(NULL, FALSE);
107
108         if (option_nameserver != NULL) {
109                 g_web_add_nameserver(web, option_nameserver);
110                 g_free(option_nameserver);
111         }
112
113         g_web_set_user_agent(web, "ConnMan/%s", VERSION);
114
115         timer = g_timer_new();
116
117         if (g_web_request(web, G_WEB_METHOD_GET, argv[1],
118                                         web_result, NULL) == 0) {
119                 fprintf(stderr, "Failed to start request\n");
120                 return 1;
121         }
122
123         memset(&sa, 0, sizeof(sa));
124         sa.sa_handler = sig_term;
125         sigaction(SIGINT, &sa, NULL);
126         sigaction(SIGTERM, &sa, NULL);
127
128         g_main_loop_run(main_loop);
129
130         g_timer_destroy(timer);
131
132         g_web_unref(web);
133
134         g_main_loop_unref(main_loop);
135
136         return 0;
137 }