mlt_service.c: fix bad identification for some services (eg. transitions)
[melted] / src / framework / mlt_service.c
1 /*
2 * mlt_service.c -- interface for all service classes
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4 * Author: Charles Yates <charles.yates@pandora.be>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library 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 GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include "mlt_service.h"
22 #include "mlt_filter.h"
23 #include "mlt_frame.h"
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <pthread.h>
28
29 /** IMPORTANT NOTES
30
31 The base service implements a null frame producing service - as such,
32 it is functional without extension and will produce test cards frames
33 and PAL sized audio frames.
34
35 PLEASE DO NOT CHANGE THIS BEHAVIOUR!!! OVERRIDE THE METHODS THAT
36 CONTROL THIS IN EXTENDING CLASSES.
37 */
38
39 /** Private service definition.
40 */
41
42 typedef struct
43 {
44 int size;
45 int count;
46 mlt_service *in;
47 mlt_service out;
48 int filter_count;
49 int filter_size;
50 mlt_filter *filters;
51 pthread_mutex_t mutex;
52 }
53 mlt_service_base;
54
55 /** Private methods
56 */
57
58 static void mlt_service_disconnect( mlt_service this );
59 static void mlt_service_connect( mlt_service this, mlt_service that );
60 static int service_get_frame( mlt_service this, mlt_frame_ptr frame, int index );
61 static void mlt_service_property_changed( mlt_listener, mlt_properties owner, mlt_service this, void **args );
62
63 /** Constructor
64 */
65
66 int mlt_service_init( mlt_service this, void *child )
67 {
68 int error = 0;
69
70 // Initialise everything to NULL
71 memset( this, 0, sizeof( struct mlt_service_s ) );
72
73 // Assign the child
74 this->child = child;
75
76 // Generate local space
77 this->local = calloc( sizeof( mlt_service_base ), 1 );
78
79 // Associate the methods
80 this->get_frame = service_get_frame;
81
82 // Initialise the properties
83 error = mlt_properties_init( &this->parent, this );
84 if ( error == 0 )
85 {
86 this->parent.close = ( mlt_destructor )mlt_service_close;
87 this->parent.close_object = this;
88
89 mlt_events_init( &this->parent );
90 mlt_events_register( &this->parent, "service-changed", NULL );
91 mlt_events_register( &this->parent, "property-changed", ( mlt_transmitter )mlt_service_property_changed );
92 pthread_mutex_init( &( ( mlt_service_base * )this->local )->mutex, NULL );
93 }
94
95 return error;
96 }
97
98 static void mlt_service_property_changed( mlt_listener listener, mlt_properties owner, mlt_service this, void **args )
99 {
100 if ( listener != NULL )
101 listener( owner, this, ( char * )args[ 0 ] );
102 }
103
104 void mlt_service_lock( mlt_service this )
105 {
106 if ( this != NULL )
107 pthread_mutex_lock( &( ( mlt_service_base * )this->local )->mutex );
108 }
109
110 void mlt_service_unlock( mlt_service this )
111 {
112 if ( this != NULL )
113 pthread_mutex_unlock( &( ( mlt_service_base * )this->local )->mutex );
114 }
115
116 mlt_service_type mlt_service_identify( mlt_service this )
117 {
118 mlt_service_type type = invalid_type;
119 if ( this != NULL )
120 {
121 mlt_properties properties = MLT_SERVICE_PROPERTIES( this );
122 char *mlt_type = mlt_properties_get( properties, "mlt_type" );
123 char *resource = mlt_properties_get( properties, "resource" );
124 if ( mlt_type == NULL )
125 type = unknown_type;
126 else if (resource != NULL && !strcmp( resource, "<playlist>" ) )
127 type = playlist_type;
128 else if (resource != NULL && !strcmp( resource, "<tractor>" ) )
129 type = tractor_type;
130 else if (resource != NULL && !strcmp( resource, "<multitrack>" ) )
131 type = multitrack_type;
132 else if ( !strcmp( mlt_type, "producer" ) )
133 type = producer_type;
134 else if ( !strcmp( mlt_type, "filter" ) )
135 type = filter_type;
136 else if ( !strcmp( mlt_type, "transition" ) )
137 type = transition_type;
138 else if ( !strcmp( mlt_type, "consumer" ) )
139 type = consumer_type;
140 else
141 type = unknown_type;
142 }
143 return type;
144 }
145
146 /** Connect a producer service.
147 Returns: > 0 warning, == 0 success, < 0 serious error
148 1 = this service does not accept input
149 2 = the producer is invalid
150 3 = the producer is already registered with this consumer
151 */
152
153 int mlt_service_connect_producer( mlt_service this, mlt_service producer, int index )
154 {
155 int i = 0;
156
157 // Get the service base
158 mlt_service_base *base = this->local;
159
160 // Special case 'track' index - only works for last filter(s) in a particular chain
161 // but allows a filter to apply to the output frame regardless of which track it comes from
162 if ( index == -1 )
163 index = 0;
164
165 // Check if the producer is already registered with this service
166 for ( i = 0; i < base->count; i ++ )
167 if ( base->in[ i ] == producer )
168 return 3;
169
170 // Allocate space
171 if ( index >= base->size )
172 {
173 int new_size = base->size + index + 10;
174 base->in = realloc( base->in, new_size * sizeof( mlt_service ) );
175 if ( base->in != NULL )
176 {
177 for ( i = base->size; i < new_size; i ++ )
178 base->in[ i ] = NULL;
179 base->size = new_size;
180 }
181 }
182
183 // If we have space, assign the input
184 if ( base->in != NULL && index >= 0 && index < base->size )
185 {
186 // Get the current service
187 mlt_service current = base->in[ index ];
188
189 // Increment the reference count on this producer
190 if ( producer != NULL )
191 {
192 mlt_service_lock( producer );
193 mlt_properties_inc_ref( MLT_SERVICE_PROPERTIES( producer ) );
194 mlt_service_unlock( producer );
195 }
196
197 // Now we disconnect the producer service from its consumer
198 mlt_service_disconnect( producer );
199
200 // Add the service to index specified
201 base->in[ index ] = producer;
202
203 // Determine the number of active tracks
204 if ( index >= base->count )
205 base->count = index + 1;
206
207 // Now we connect the producer to its connected consumer
208 mlt_service_connect( producer, this );
209
210 // Close the current service
211 mlt_service_close( current );
212
213 // Inform caller that all went well
214 return 0;
215 }
216 else
217 {
218 return -1;
219 }
220 }
221
222 /** Disconnect this service from its consumer.
223 */
224
225 static void mlt_service_disconnect( mlt_service this )
226 {
227 if ( this != NULL )
228 {
229 // Get the service base
230 mlt_service_base *base = this->local;
231
232 // Disconnect
233 base->out = NULL;
234 }
235 }
236
237 /** Obtain the consumer this service is connected to.
238 */
239
240 mlt_service mlt_service_consumer( mlt_service this )
241 {
242 // Get the service base
243 mlt_service_base *base = this->local;
244
245 // Return the connected consumer
246 return base->out;
247 }
248
249 /** Obtain the producer this service is connected to.
250 */
251
252 mlt_service mlt_service_producer( mlt_service this )
253 {
254 // Get the service base
255 mlt_service_base *base = this->local;
256
257 // Return the connected producer
258 return base->count > 0 ? base->in[ base->count - 1 ] : NULL;
259 }
260
261 /** Associate this service to the consumer.
262 */
263
264 static void mlt_service_connect( mlt_service this, mlt_service that )
265 {
266 if ( this != NULL )
267 {
268 // Get the service base
269 mlt_service_base *base = this->local;
270
271 // There's a bit more required here...
272 base->out = that;
273 }
274 }
275
276 /** Get the first connected producer service.
277 */
278
279 mlt_service mlt_service_get_producer( mlt_service this )
280 {
281 mlt_service producer = NULL;
282
283 // Get the service base
284 mlt_service_base *base = this->local;
285
286 if ( base->in != NULL )
287 producer = base->in[ 0 ];
288
289 return producer;
290 }
291
292 /** Default implementation of get_frame.
293 */
294
295 static int service_get_frame( mlt_service this, mlt_frame_ptr frame, int index )
296 {
297 mlt_service_base *base = this->local;
298 if ( index < base->count )
299 {
300 mlt_service producer = base->in[ index ];
301 if ( producer != NULL )
302 return mlt_service_get_frame( producer, frame, index );
303 }
304 *frame = mlt_frame_init( this );
305 return 0;
306 }
307
308 /** Return the properties object.
309 */
310
311 mlt_properties mlt_service_properties( mlt_service self )
312 {
313 return self != NULL ? &self->parent : NULL;
314 }
315
316 /** Recursively apply attached filters
317 */
318
319 void mlt_service_apply_filters( mlt_service this, mlt_frame frame, int index )
320 {
321 int i;
322 mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
323 mlt_properties service_properties = MLT_SERVICE_PROPERTIES( this );
324 mlt_service_base *base = this->local;
325 mlt_position position = mlt_frame_get_position( frame );
326 mlt_position this_in = mlt_properties_get_position( service_properties, "in" );
327 mlt_position this_out = mlt_properties_get_position( service_properties, "out" );
328
329 if ( index == 0 || mlt_properties_get_int( service_properties, "_filter_private" ) == 0 )
330 {
331 // Process the frame with the attached filters
332 for ( i = 0; i < base->filter_count; i ++ )
333 {
334 if ( base->filters[ i ] != NULL )
335 {
336 mlt_position in = mlt_filter_get_in( base->filters[ i ] );
337 mlt_position out = mlt_filter_get_out( base->filters[ i ] );
338 int disable = mlt_properties_get_int( MLT_FILTER_PROPERTIES( base->filters[ i ] ), "disable" );
339 if ( !disable && ( ( in == 0 && out == 0 ) || ( position >= in && ( position <= out || out == 0 ) ) ) )
340 {
341 mlt_properties_set_position( frame_properties, "in", in == 0 ? this_in : in );
342 mlt_properties_set_position( frame_properties, "out", out == 0 ? this_out : out );
343 mlt_filter_process( base->filters[ i ], frame );
344 mlt_service_apply_filters( MLT_FILTER_SERVICE( base->filters[ i ] ), frame, index + 1 );
345 }
346 }
347 }
348 }
349 }
350
351 /** Obtain a frame.
352 */
353
354 int mlt_service_get_frame( mlt_service this, mlt_frame_ptr frame, int index )
355 {
356 int result = 0;
357
358 // Lock the service
359 mlt_service_lock( this );
360
361 // Ensure that the frame is NULL
362 *frame = NULL;
363
364 // Only process if we have a valid service
365 if ( this != NULL && this->get_frame != NULL )
366 {
367 mlt_properties properties = MLT_SERVICE_PROPERTIES( this );
368 mlt_position in = mlt_properties_get_position( properties, "in" );
369 mlt_position out = mlt_properties_get_position( properties, "out" );
370
371 result = this->get_frame( this, frame, index );
372
373 if ( result == 0 )
374 {
375 mlt_properties_inc_ref( properties );
376 properties = MLT_FRAME_PROPERTIES( *frame );
377 if ( in >=0 && out > 0 )
378 {
379 mlt_properties_set_position( properties, "in", in );
380 mlt_properties_set_position( properties, "out", out );
381 }
382 mlt_service_apply_filters( this, *frame, 1 );
383 mlt_deque_push_back( MLT_FRAME_SERVICE_STACK( *frame ), this );
384 }
385 }
386
387 // Make sure we return a frame
388 if ( *frame == NULL )
389 *frame = mlt_frame_init( this );
390
391 // Unlock the service
392 mlt_service_unlock( this );
393
394 return result;
395 }
396
397 static void mlt_service_filter_changed( mlt_service owner, mlt_service this )
398 {
399 mlt_events_fire( MLT_SERVICE_PROPERTIES( this ), "service-changed", NULL );
400 }
401
402 /** Attach a filter.
403 */
404
405 int mlt_service_attach( mlt_service this, mlt_filter filter )
406 {
407 int error = this == NULL || filter == NULL;
408 if ( error == 0 )
409 {
410 int i = 0;
411 mlt_properties properties = MLT_SERVICE_PROPERTIES( this );
412 mlt_service_base *base = this->local;
413
414 for ( i = 0; error == 0 && i < base->filter_count; i ++ )
415 if ( base->filters[ i ] == filter )
416 error = 1;
417
418 if ( error == 0 )
419 {
420 if ( base->filter_count == base->filter_size )
421 {
422 base->filter_size += 10;
423 base->filters = realloc( base->filters, base->filter_size * sizeof( mlt_filter ) );
424 }
425
426 if ( base->filters != NULL )
427 {
428 mlt_properties props = MLT_FILTER_PROPERTIES( filter );
429 mlt_properties_inc_ref( MLT_FILTER_PROPERTIES( filter ) );
430 base->filters[ base->filter_count ++ ] = filter;
431 mlt_events_fire( properties, "service-changed", NULL );
432 mlt_events_listen( props, this, "service-changed", ( mlt_listener )mlt_service_filter_changed );
433 mlt_events_listen( props, this, "property-changed", ( mlt_listener )mlt_service_filter_changed );
434 }
435 else
436 {
437 error = 2;
438 }
439 }
440 }
441 return error;
442 }
443
444 /** Detach a filter.
445 */
446
447 int mlt_service_detach( mlt_service this, mlt_filter filter )
448 {
449 int error = this == NULL || filter == NULL;
450 if ( error == 0 )
451 {
452 int i = 0;
453 mlt_service_base *base = this->local;
454 mlt_properties properties = MLT_SERVICE_PROPERTIES( this );
455
456 for ( i = 0; i < base->filter_count; i ++ )
457 if ( base->filters[ i ] == filter )
458 break;
459
460 if ( i < base->filter_count )
461 {
462 base->filters[ i ] = NULL;
463 for ( i ++ ; i < base->filter_count; i ++ )
464 base->filters[ i - 1 ] = base->filters[ i ];
465 base->filter_count --;
466 mlt_events_disconnect( MLT_FILTER_PROPERTIES( filter ), this );
467 mlt_filter_close( filter );
468 mlt_events_fire( properties, "service-changed", NULL );
469 }
470 }
471 return error;
472 }
473
474 /** Retrieve a filter.
475 */
476
477 mlt_filter mlt_service_filter( mlt_service this, int index )
478 {
479 mlt_filter filter = NULL;
480 if ( this != NULL )
481 {
482 mlt_service_base *base = this->local;
483 if ( index >= 0 && index < base->filter_count )
484 filter = base->filters[ index ];
485 }
486 return filter;
487 }
488
489 /** Retrieve the profile.
490 */
491
492 mlt_profile mlt_service_profile( mlt_service this )
493 {
494 return mlt_properties_get_data( MLT_SERVICE_PROPERTIES( this ), "_profile", NULL );
495 }
496
497 /** Close the service.
498 */
499
500 void mlt_service_close( mlt_service this )
501 {
502 mlt_service_lock( this );
503 if ( this != NULL && mlt_properties_dec_ref( MLT_SERVICE_PROPERTIES( this ) ) <= 0 )
504 {
505 mlt_service_unlock( this );
506 if ( this->close != NULL )
507 {
508 this->close( this->close_object );
509 }
510 else
511 {
512 mlt_service_base *base = this->local;
513 int i = 0;
514 int count = base->filter_count;
515 mlt_events_block( MLT_SERVICE_PROPERTIES( this ), this );
516 while( count -- )
517 mlt_service_detach( this, base->filters[ 0 ] );
518 free( base->filters );
519 for ( i = 0; i < base->count; i ++ )
520 if ( base->in[ i ] != NULL )
521 mlt_service_close( base->in[ i ] );
522 this->parent.close = NULL;
523 free( base->in );
524 pthread_mutex_destroy( &base->mutex );
525 free( base );
526 mlt_properties_close( &this->parent );
527 }
528 }
529 else
530 {
531 mlt_service_unlock( this );
532 }
533 }
534