5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
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.
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.
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
31 #include <gweb/gweb.h>
35 static GMainLoop *main_loop;
37 static void web_debug(const char *str, void *data)
39 g_print("%s: %s\n", (const char *) data, str);
42 static void sig_term(int sig)
44 g_main_loop_quit(main_loop);
47 static void web_result(uint16_t status, gpointer user_data)
51 elapsed = g_timer_elapsed(timer, NULL);
53 g_print("elapse: %f seconds\n", elapsed);
55 g_print("status: %03u\n", status);
57 g_main_loop_quit(main_loop);
60 static gboolean option_debug = FALSE;
61 static gchar *option_nameserver = NULL;
63 static GOptionEntry options[] = {
64 { "debug", 'd', 0, G_OPTION_ARG_NONE, &option_debug,
65 "Enable debug output" },
66 { "nameserver", 'n', 0, G_OPTION_ARG_STRING, &option_nameserver,
67 "Specify nameserver", "ADDRESS" },
71 int main(int argc, char *argv[])
73 GOptionContext *context;
79 context = g_option_context_new(NULL);
80 g_option_context_add_main_entries(context, options, NULL);
82 if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
84 g_printerr("%s\n", error->message);
87 g_printerr("An unknown error occurred\n");
91 g_option_context_free(context);
94 printf("missing argument\n");
98 web = g_web_new(index);
100 printf("failed to web service\n");
104 if (option_debug == TRUE)
105 g_web_set_debug(web, web_debug, "WEB");
107 main_loop = g_main_loop_new(NULL, FALSE);
109 if (option_nameserver != NULL) {
110 g_web_add_nameserver(web, option_nameserver);
111 g_free(option_nameserver);
113 g_web_add_nameserver(web, "127.0.0.1");
115 timer = g_timer_new();
117 if (g_web_request(web, G_WEB_METHOD_GET, argv[1],
118 web_result, NULL) == 0) {
119 printf("failed to start request\n");
123 memset(&sa, 0, sizeof(sa));
124 sa.sa_handler = sig_term;
125 sigaction(SIGINT, &sa, NULL);
126 sigaction(SIGTERM, &sa, NULL);
128 g_main_loop_run(main_loop);
130 g_timer_destroy(timer);
134 g_main_loop_unref(main_loop);