8171179a0a69db96d20f8010bdde3dad9e118a4d
[melted] / src / mvcp-client / remote.c
1 /*
2 * remote.c -- Remote Valerie client demo
3 * Copyright (C) 2002-2003 Ushodaya Enterprises Limited
4 * Author: Charles Yates <charles.yates@pandora.be>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
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 Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 /* System header files */
22 #include <stdio.h>
23 #include <stdint.h>
24
25 #include <valerie/valerie_remote.h>
26
27 /* Application header files */
28 #include "client.h"
29 #include "io.h"
30
31 /** Connect to a remote server.
32 */
33
34 static valerie_parser create_parser( )
35 {
36 char server[ 132 ];
37 int port;
38 valerie_parser parser = NULL;
39
40 printf( "Connecting to a Server\n\n" );
41
42 printf( "Server [localhost]: " );
43
44 if ( io_get_string( server, sizeof( server ), "localhost" ) != NULL )
45 {
46 printf( "Port [5250]: " );
47
48 if ( get_int( &port, 5250 ) != NULL )
49 parser = valerie_parser_init_remote( server, port );
50 }
51
52 printf( "\n" );
53
54 return parser;
55 }
56
57 /** Main function.
58 */
59
60 int main( int argc, char **argv )
61 {
62 valerie_parser parser = create_parser( );
63
64 if ( parser != NULL )
65 {
66 dv_demo demo = dv_demo_init( parser );
67 dv_demo_run( demo );
68 dv_demo_close( demo );
69 valerie_parser_close( parser );
70 }
71
72 return 0;
73 }