5 * Copyright (C) 2007-2012 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
30 #include <gweb/gweb.h>
34 static GMainLoop *main_loop;
36 static void web_debug(const char *str, void *data)
38 g_print("%s: %s\n", (const char *) data, str);
41 static void sig_term(int sig)
43 g_main_loop_quit(main_loop);
46 static bool web_result(GWebResult *result, gpointer user_data)
53 g_web_result_get_chunk(result, &chunk, &length);
56 printf("%s\n", (char *) chunk);
60 status = g_web_result_get_status(result);
62 g_print("status: %03u\n", status);
64 elapsed = g_timer_elapsed(timer, NULL);
66 g_print("elapse: %f seconds\n", elapsed);
68 g_main_loop_quit(main_loop);
73 static bool option_debug = false;
74 static gchar *option_proxy = NULL;
75 static gchar *option_nameserver = NULL;
76 static gchar *option_user_agent = NULL;
77 static gchar *option_http_version = NULL;
79 static GOptionEntry options[] = {
80 { "debug", 'd', 0, G_OPTION_ARG_NONE, &option_debug,
81 "Enable debug output" },
82 { "proxy", 'p', 0, G_OPTION_ARG_STRING, &option_proxy,
83 "Specify proxy", "ADDRESS" },
84 { "nameserver", 'n', 0, G_OPTION_ARG_STRING, &option_nameserver,
85 "Specify nameserver", "ADDRESS" },
86 { "user-agent", 'A', 0, G_OPTION_ARG_STRING, &option_user_agent,
87 "Specific user agent", "STRING" },
88 { "http-version", 'H', 0, G_OPTION_ARG_STRING, &option_http_version,
89 "Specific HTTP version", "STRING" },
93 int main(int argc, char *argv[])
95 GOptionContext *context;
101 context = g_option_context_new(NULL);
102 g_option_context_add_main_entries(context, options, NULL);
104 if (!g_option_context_parse(context, &argc, &argv, &error)) {
106 g_printerr("%s\n", error->message);
109 g_printerr("An unknown error occurred\n");
113 g_option_context_free(context);
116 fprintf(stderr, "Missing argument\n");
120 web = g_web_new(index);
122 fprintf(stderr, "Failed to create web service\n");
127 g_web_set_debug(web, web_debug, "WEB");
129 main_loop = g_main_loop_new(NULL, FALSE);
132 g_web_set_proxy(web, option_proxy);
133 g_free(option_proxy);
136 if (option_nameserver) {
137 g_web_add_nameserver(web, option_nameserver);
138 g_free(option_nameserver);
141 if (option_user_agent) {
142 g_web_set_user_agent(web, "%s", option_user_agent);
143 g_free(option_user_agent);
146 if (option_http_version) {
147 g_web_set_http_version(web, option_http_version);
148 g_free(option_http_version);
151 timer = g_timer_new();
153 if (g_web_request_get(web, argv[1], web_result, NULL, NULL) == 0) {
154 fprintf(stderr, "Failed to start request\n");
158 memset(&sa, 0, sizeof(sa));
159 sa.sa_handler = sig_term;
160 sigaction(SIGINT, &sa, NULL);
161 sigaction(SIGTERM, &sa, NULL);
163 g_main_loop_run(main_loop);
165 g_timer_destroy(timer);
169 g_main_loop_unref(main_loop);