Added GLib loop main program
[cascardo/chat.git] / ui.c
1 /*
2  *  Copyright (C) 2008  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19
20 #include <stdio.h>
21 #include <glib.h>
22 #include <udns.h>
23 #include "tcp_connect.h"
24 #include "xmpp.h"
25
26 static gboolean
27 rploop (GIOChannel *src, GIOCondition cond, gpointer xmpp)
28 {
29   hc_xmpp_read_and_parse (xmpp);
30   return TRUE;
31 }
32
33 int
34 main (int argc, char **argv)
35 {
36   GMainLoop *loop;
37   GIOChannel *channel;
38   char *server;
39   char *user;
40   char *password;
41   hc_xmpp_t *xmpp;
42   if (argc < 4)
43     {
44       printf ("tictactoe server user password\n");
45       return 1;
46     }
47   server = argv[1];
48   user = argv[2];
49   password = argv[3];
50   dns_init (NULL, 1);
51   xmpp = hc_xmpp_new (hc_xmpp_hook, server, user, password);
52   hc_xmpp_send_stream (xmpp);
53   channel = g_io_channel_unix_new (hc_xmpp_fd (xmpp));
54   loop = g_main_loop_new (g_main_context_default (), TRUE);
55   g_io_add_watch (channel, G_IO_IN, rploop, xmpp);
56   g_main_loop_run (loop);
57   return 0;
58 }