]> git.sesse.net Git - mlt/blob - src/miracle/miracle.c
2e098307427e70d1334e41ada410c47564c8d254
[mlt] / src / miracle / miracle.c
1 /*
2  * miracle.c -- A DV over IEEE 1394 TCP Server
3  *
4  * Copyright (C) 2002-2003 Ushodaya Enterprises Limited
5  * Authors:
6  *     Dan Dennedy <dan@dennedy.org>
7  *     Charles Yates <charles.yates@pandora.be>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  */
23
24 /* System header files */
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/types.h>
29 #include <unistd.h>
30 #include <time.h>
31
32 #include <framework/mlt.h>
33
34 /* Application header files */
35 #include "miracle_server.h"
36 #include "miracle_log.h"
37
38 /** Our dv server.
39 */
40
41 static miracle_server server = NULL;
42
43 /** atexit shutdown handler for the server.
44 */
45
46 static void main_cleanup( )
47 {
48         miracle_server_shutdown( server );
49 }
50
51 /** Report usage and exit.
52 */
53
54 void usage( char *app )
55 {
56         fprintf( stderr, "Usage: %s [-test] [-port NNNN]\n", app );
57         exit( 0 );
58 }
59
60 /** The main function.
61 */
62
63 int main( int argc, char **argv )
64 {
65         int error = 0;
66         int index = 0;
67         int background = 1;
68         struct timespec tm = { 5, 0 };
69
70         server = miracle_server_init( argv[ 0 ] );
71
72         for ( index = 1; index < argc; index ++ )
73         {
74                 if ( !strcmp( argv[ index ], "-port" ) )
75                         miracle_server_set_port( server, atoi( argv[ ++ index ] ) );
76                 else if ( !strcmp( argv[ index ], "-proxy" ) )
77                         miracle_server_set_proxy( server, argv[ ++ index ] );
78                 else if ( !strcmp( argv[ index ], "-test" ) )
79                         background = 0;
80                 else
81                         usage( argv[ 0 ] );
82         }
83
84         /* Optionally detatch ourselves from the controlling tty */
85
86         if ( background )
87         {
88                 if ( fork() )
89                         return 0;
90                 setsid();
91                 miracle_log_init( log_syslog, LOG_INFO );
92         }
93         else
94         {
95                 miracle_log_init( log_stderr, LOG_DEBUG );
96         }
97
98         atexit( main_cleanup );
99
100         /* Set the config script */
101         miracle_server_set_config( server, "/etc/miracle.conf" );
102
103         /* Execute the server */
104         error = miracle_server_execute( server );
105
106         /* We need to wait until we're exited.. */
107         while ( !server->shutdown )
108                 nanosleep( &tm, NULL );
109
110         return error;
111 }