Add simple test tool for web service library
[platform/upstream/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 <stdlib.h>
28 #include <string.h>
29 #include <signal.h>
30
31 #include <gweb/gweb.h>
32
33 static GTimer *timer;
34
35 static GMainLoop *main_loop;
36
37 static void web_debug(const char *str, void *data)
38 {
39         g_print("%s: %s\n", (const char *) data, str);
40 }
41
42 static void sig_term(int sig)
43 {
44         g_main_loop_quit(main_loop);
45 }
46
47 static gboolean option_debug = FALSE;
48
49 static GOptionEntry options[] = {
50         { "debug", 'd', 0, G_OPTION_ARG_NONE, &option_debug,
51                                         "Enable debug output" },
52         { NULL },
53 };
54
55 int main(int argc, char *argv[])
56 {
57         GOptionContext *context;
58         GError *error = NULL;
59         struct sigaction sa;
60         GWeb *web;
61
62         context = g_option_context_new(NULL);
63         g_option_context_add_main_entries(context, options, NULL);
64
65         if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
66                 if (error != NULL) {
67                         g_printerr("%s\n", error->message);
68                         g_error_free(error);
69                 } else
70                         g_printerr("An unknown error occurred\n");
71                 exit(1);
72         }
73
74         g_option_context_free(context);
75
76         if (argc < 2) {
77                 printf("missing argument\n");
78                 return 1;
79         }
80
81         web = g_web_new();
82         if (web == NULL) {
83                 printf("failed to web service\n");
84                 return 1;
85         }
86
87         if (option_debug == TRUE)
88                 g_web_set_debug(web, web_debug, "WEB");
89
90         main_loop = g_main_loop_new(NULL, FALSE);
91
92         timer = g_timer_new();
93
94         memset(&sa, 0, sizeof(sa));
95         sa.sa_handler = sig_term;
96         sigaction(SIGINT, &sa, NULL);
97         sigaction(SIGTERM, &sa, NULL);
98
99         g_main_loop_run(main_loop);
100
101         g_timer_destroy(timer);
102
103         g_web_unref(web);
104
105         g_main_loop_unref(main_loop);
106
107         return 0;
108 }