Fix to compositing/watermark; miracle/mlt shutdown cleanup
[melted] / 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_close( 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 mlt_factory_init( NULL );
71
72 server = miracle_server_init( argv[ 0 ] );
73
74 for ( index = 1; index < argc; index ++ )
75 {
76 if ( !strcmp( argv[ index ], "-port" ) )
77 miracle_server_set_port( server, atoi( argv[ ++ index ] ) );
78 else if ( !strcmp( argv[ index ], "-proxy" ) )
79 miracle_server_set_proxy( server, argv[ ++ index ] );
80 else if ( !strcmp( argv[ index ], "-test" ) )
81 background = 0;
82 else
83 usage( argv[ 0 ] );
84 }
85
86 /* Optionally detatch ourselves from the controlling tty */
87
88 if ( background )
89 {
90 if ( fork() )
91 return 0;
92 setsid();
93 miracle_log_init( log_syslog, LOG_INFO );
94 }
95 else
96 {
97 miracle_log_init( log_stderr, LOG_DEBUG );
98 }
99
100 atexit( main_cleanup );
101
102 /* Set the config script */
103 miracle_server_set_config( server, "/etc/miracle.conf" );
104
105 /* Execute the server */
106 error = miracle_server_execute( server );
107
108 /* We need to wait until we're exited.. */
109 while ( !server->shutdown )
110 nanosleep( &tm, NULL );
111
112 return error;
113 }