]> git.sesse.net Git - mlt/blob - src/miracle/miracle_connection.c
6bf496cfcbdbd8165ef72a56aec5bd38f44a197e
[mlt] / src / miracle / miracle_connection.c
1 /*
2  * miracle_connection.c -- DV Connection Handler
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 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
24
25 /* System header files */
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <signal.h>
30 #include <sys/types.h>
31 #include <unistd.h>
32 #include <time.h>
33 #include <netdb.h>
34 #include <sys/socket.h> 
35 #include <arpa/inet.h>
36
37 #include <valerie/valerie_socket.h>
38
39 /* Application header files */
40 #include "miracle_commands.h"
41 #include "miracle_connection.h"
42 #include "miracle_server.h"
43 #include "miracle_log.h"
44
45 /** This is a generic replacement for fgets which operates on a file
46    descriptor. Unlike fgets, we can also specify a line terminator. Maximum
47    of (max - 1) chars can be read into buf from fd. If we reach the
48    end-of-file, *eof_chk is set to 1. 
49 */
50
51 int fdgetline( int fd, char *buf, int max, char line_terminator, int *eof_chk )
52 {
53         int count = 0;
54         char tmp [1];
55         *eof_chk = 0;
56         
57         if (fd)
58                 while (count < max - 1) {
59                         if (read (fd, tmp, 1) > 0) {
60                                 if (tmp [0] != line_terminator)
61                                         buf [count++] = tmp [0];
62                                 else
63                                         break;
64
65 /* Is it an EOF character (ctrl-D, i.e. ascii 4)? If so we definitely want
66    to break. */
67
68                                 if (tmp [0] == 4) {
69                                         *eof_chk = 1;
70                                         break;
71                                 }
72                         } else {
73                                 *eof_chk = 1;
74                                 break;
75                         }
76                 }
77                 
78         buf [count] = '\0';
79         
80         return count;
81 }
82
83 static int connection_initiate( int );
84 static int connection_send( int, valerie_response );
85 static int connection_read( int, char *, int );
86 static void connection_close( int );
87
88 static int connection_initiate( int fd )
89 {
90         int error = 0;
91         valerie_response response = valerie_response_init( );
92         valerie_response_set_error( response, 100, "VTR Ready" );
93         error = connection_send( fd, response );
94         valerie_response_close( response );
95         return error;
96 }
97
98 static int connection_send( int fd, valerie_response response )
99 {
100         int error = 0;
101         int index = 0;
102         int code = valerie_response_get_error_code( response );
103
104         if ( code != -1 )
105         {
106                 int items = valerie_response_count( response );
107
108                 if ( items == 0 )
109                         valerie_response_set_error( response, 500, "Unknown error" );
110
111                 if ( code == 200 && items > 2 )
112                         valerie_response_set_error( response, 201, "OK" );
113                 else if ( code == 200 && items > 1 )
114                         valerie_response_set_error( response, 202, "OK" );
115
116                 code = valerie_response_get_error_code( response );
117                 items = valerie_response_count( response );
118
119                 for ( index = 0; !error && index < items; index ++ )
120                 {
121                         char *line = valerie_response_get_line( response, index );
122                         int length = strlen( line );
123                         if ( length == 0 && index != valerie_response_count( response ) - 1 && write( fd, " ", 1 ) != 1 )
124                                 error = -1;
125                         else if ( length > 0 && write( fd, line, length ) != length )
126                                 error = -1;
127                         if ( write( fd, "\r\n", 2 ) != 2 )
128                                 error = -1;                     
129                 }
130
131                 if ( ( code == 201 || code == 500 ) && strcmp( valerie_response_get_line( response, items - 1 ), "" ) )
132                         write( fd, "\r\n", 2 );
133         }
134         else
135         {
136                 char *message = "500 Empty Response\r\n\r\n";
137                 write( fd, message, strlen( message ) );
138         }
139
140         return error;
141 }
142
143 static int connection_read( int fd, char *command, int length )
144 {
145         int eof_chk;
146         int nchars = fdgetline( fd, command, length, '\n', &eof_chk );
147         char *cr = strchr( command, '\r');
148         if ( cr != NULL ) 
149                 cr[0] = '\0';
150         if ( eof_chk || strncasecmp( command, "BYE", 3 ) == 0 ) 
151                 nchars = 0;
152         return nchars;
153 }
154
155 int connection_status( int fd, valerie_notifier notifier )
156 {
157         int error = 0;
158         int index = 0;
159         valerie_status_t status;
160         char text[ 10240 ];
161         valerie_socket socket = valerie_socket_init_fd( fd );
162         
163         for ( index = 0; !error && index < MAX_UNITS; index ++ )
164         {
165                 valerie_notifier_get( notifier, &status, index );
166                 valerie_status_serialise( &status, text, sizeof( text ) );
167                 error = valerie_socket_write_data( socket, text, strlen( text )  ) != strlen( text );
168         }
169
170         while ( !error )
171         {
172                 if ( valerie_notifier_wait( notifier, &status ) == 0 )
173                 {
174                         valerie_status_serialise( &status, text, sizeof( text ) );
175                         error = valerie_socket_write_data( socket, text, strlen( text ) ) != strlen( text );
176                 }
177                 else
178                 {
179                         struct timeval tv = { 0, 0 };
180                         fd_set rfds;
181
182                     FD_ZERO( &rfds );
183                     FD_SET( fd, &rfds );
184
185                         if ( select( socket->fd + 1, &rfds, NULL, NULL, &tv ) )
186                                 error = 1;
187                 }
188         }
189
190         valerie_socket_close( socket );
191         
192         return error;
193 }
194
195 static void connection_close( int fd )
196 {
197         close( fd );
198 }
199
200 void *parser_thread( void *arg )
201 {
202         struct hostent *he;
203         connection_t *connection = arg;
204         char address[ 512 ];
205         char command[ 1024 ];
206         int fd = connection->fd;
207         valerie_parser parser = connection->parser;
208         valerie_response response = NULL;
209
210         /* Get the connecting clients ip information */
211         he = gethostbyaddr( (char *) &( connection->sin.sin_addr.s_addr ), sizeof(u_int32_t), AF_INET); 
212         if ( he != NULL )
213                 strcpy( address, he->h_name );
214         else
215                 inet_ntop( AF_INET, &( connection->sin.sin_addr.s_addr), address, 32 );
216
217         miracle_log( LOG_NOTICE, "Connection established with %s (%d)", address, fd );
218
219         /* Execute the commands received. */
220         if ( connection_initiate( fd ) == 0 )
221         {
222                 int error = 0;
223
224                 while( !error && connection_read( fd, command, 1024 ) )
225                 {
226                         if ( !strncmp( command, "PUSH ", 5 ) )
227                         {
228                                 char temp[ 20 ];
229                                 int bytes;
230                                 char *buffer = NULL;
231                                 int total = 0;
232                                 mlt_service service = NULL;
233
234                                 connection_read( fd, temp, 20 );
235                                 bytes = atoi( temp );
236                                 buffer = malloc( bytes + 1 );
237                                 while ( total < bytes )
238                                 {
239                                         int count = read( fd, buffer + total, bytes - total );
240                                         if ( count >= 0 )
241                                                 total += count;
242                                         else
243                                                 break;
244                                 }
245                                 buffer[ bytes ] = '\0';
246                                 if ( bytes > 0 && total == bytes )
247                                         service = ( mlt_service )mlt_factory_producer( "westley-xml", buffer );
248                                 response = valerie_parser_push( parser, command, service );
249                                 error = connection_send( fd, response );
250                                 valerie_response_close( response );
251                                 mlt_service_close( service );
252                                 free( buffer );
253                         }
254                         else if ( strncmp( command, "STATUS", 6 ) )
255                         {
256                                 response = valerie_parser_execute( parser, command );
257                                 miracle_log( LOG_INFO, "%s \"%s\" %d", address, command, valerie_response_get_error_code( response ) );
258                                 error = connection_send( fd, response );
259                                 valerie_response_close( response );
260                         }
261                         else
262                         {
263                                 error = connection_status( fd, valerie_parser_get_notifier( parser ) );
264                         }
265                 }
266         }
267
268         /* Free the resources associated with this connection. */
269         connection_close( fd );
270
271         miracle_log( LOG_NOTICE, "Connection with %s (%d) closed", address, fd );
272
273         free( connection );
274
275         return NULL;
276 }