0a6654035adc69c7c034fb3e5f3973040fef27c0
[melted] / src / modules / westley / producer_westley.c
1 /*
2 * producer_westley.c -- a libxml2 parser of mlt service networks
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4 * Author: Dan Dennedy <dan@dennedy.org>
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 // TODO: destroy unreferenced producers (they are currently destroyed
22 // when the returned producer is closed).
23
24 #include <framework/mlt.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <stdio.h>
28 #include <ctype.h>
29 #include <unistd.h>
30
31 #include <libxml/parser.h>
32 #include <libxml/parserInternals.h> // for xmlCreateFileParserCtxt
33 #include <libxml/tree.h>
34
35 #define STACK_SIZE 1000
36 #define BRANCH_SIG_LEN 4000
37
38 #define _x (const xmlChar*)
39 #define _s (const char*)
40
41 #undef DEBUG
42 #ifdef DEBUG
43 extern xmlDocPtr westley_make_doc( mlt_service service );
44 #endif
45
46 enum service_type
47 {
48 mlt_invalid_type,
49 mlt_unknown_type,
50 mlt_producer_type,
51 mlt_playlist_type,
52 mlt_entry_type,
53 mlt_tractor_type,
54 mlt_multitrack_type,
55 mlt_filter_type,
56 mlt_transition_type,
57 mlt_consumer_type,
58 mlt_field_type,
59 mlt_services_type,
60 mlt_dummy_filter_type,
61 mlt_dummy_transition_type,
62 mlt_dummy_producer_type,
63 };
64
65 struct deserialise_context_s
66 {
67 enum service_type stack_types[ STACK_SIZE ];
68 mlt_service stack_service[ STACK_SIZE ];
69 int stack_service_size;
70 mlt_properties producer_map;
71 mlt_properties destructors;
72 char *property;
73 int is_value;
74 xmlDocPtr value_doc;
75 xmlNodePtr stack_node[ STACK_SIZE ];
76 int stack_node_size;
77 xmlDocPtr entity_doc;
78 int entity_is_replace;
79 int depth;
80 int branch[ STACK_SIZE ];
81 const xmlChar *publicId;
82 const xmlChar *systemId;
83 mlt_properties params;
84 mlt_profile profile;
85 };
86 typedef struct deserialise_context_s *deserialise_context;
87
88 /** Convert the numerical current branch address to a dot-delimited string.
89 */
90 static char *serialise_branch( deserialise_context this, char *s )
91 {
92 int i;
93
94 s[0] = 0;
95 for ( i = 0; i < this->depth; i++ )
96 {
97 int len = strlen( s );
98 snprintf( s + len, BRANCH_SIG_LEN - len, "%d.", this->branch[ i ] );
99 }
100 return s;
101 }
102
103 /** Push a service.
104 */
105
106 static int context_push_service( deserialise_context this, mlt_service that, enum service_type type )
107 {
108 int ret = this->stack_service_size >= STACK_SIZE - 1;
109 if ( ret == 0 )
110 {
111 this->stack_service[ this->stack_service_size ] = that;
112 this->stack_types[ this->stack_service_size++ ] = type;
113
114 // Record the tree branch on which this service lives
115 if ( that != NULL && mlt_properties_get( MLT_SERVICE_PROPERTIES( that ), "_westley_branch" ) == NULL )
116 {
117 char s[ BRANCH_SIG_LEN ];
118 mlt_properties_set( MLT_SERVICE_PROPERTIES( that ), "_westley_branch", serialise_branch( this, s ) );
119 }
120 }
121 return ret;
122 }
123
124 /** Pop a service.
125 */
126
127 static mlt_service context_pop_service( deserialise_context this, enum service_type *type )
128 {
129 mlt_service result = NULL;
130 if ( this->stack_service_size > 0 )
131 {
132 result = this->stack_service[ -- this->stack_service_size ];
133 if ( type != NULL )
134 *type = this->stack_types[ this->stack_service_size ];
135 }
136 return result;
137 }
138
139 /** Push a node.
140 */
141
142 static int context_push_node( deserialise_context this, xmlNodePtr node )
143 {
144 int ret = this->stack_node_size >= STACK_SIZE - 1;
145 if ( ret == 0 )
146 this->stack_node[ this->stack_node_size ++ ] = node;
147 return ret;
148 }
149
150 /** Pop a node.
151 */
152
153 static xmlNodePtr context_pop_node( deserialise_context this )
154 {
155 xmlNodePtr result = NULL;
156 if ( this->stack_node_size > 0 )
157 result = this->stack_node[ -- this->stack_node_size ];
158 return result;
159 }
160
161
162 // Set the destructor on a new service
163 static void track_service( mlt_properties properties, void *service, mlt_destructor destructor )
164 {
165 int registered = mlt_properties_get_int( properties, "registered" );
166 char *key = mlt_properties_get( properties, "registered" );
167 mlt_properties_set_data( properties, key, service, 0, destructor, NULL );
168 mlt_properties_set_int( properties, "registered", ++ registered );
169 }
170
171
172 // Prepend the property value with the document root
173 static inline void qualify_property( deserialise_context context, mlt_properties properties, const char *name )
174 {
175 char *resource = mlt_properties_get( properties, name );
176 if ( resource != NULL )
177 {
178 // Qualify file name properties
179 char *root = mlt_properties_get( context->producer_map, "root" );
180 if ( root != NULL && strcmp( root, "" ) )
181 {
182 char *full_resource = malloc( strlen( root ) + strlen( resource ) + 2 );
183 if ( resource[ 0 ] != '/' && strchr( resource, ':' ) == NULL )
184 {
185 strcpy( full_resource, root );
186 strcat( full_resource, "/" );
187 strcat( full_resource, resource );
188 }
189 else
190 {
191 strcpy( full_resource, resource );
192 }
193 mlt_properties_set( properties, name, full_resource );
194 free( full_resource );
195 }
196 }
197 }
198
199
200 /** This function adds a producer to a playlist or multitrack when
201 there is no entry or track element.
202 */
203
204 static int add_producer( deserialise_context context, mlt_service service, mlt_position in, mlt_position out )
205 {
206 // Return value (0 = service remains top of stack, 1 means it can be removed)
207 int result = 0;
208
209 // Get the parent producer
210 enum service_type type = mlt_invalid_type;
211 mlt_service container = context_pop_service( context, &type );
212 int contained = 0;
213
214 if ( service != NULL && container != NULL )
215 {
216 char *container_branch = mlt_properties_get( MLT_SERVICE_PROPERTIES( container ), "_westley_branch" );
217 char *service_branch = mlt_properties_get( MLT_SERVICE_PROPERTIES( service ), "_westley_branch" );
218 contained = !strncmp( container_branch, service_branch, strlen( container_branch ) );
219 }
220
221 if ( contained )
222 {
223 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
224 char *hide_s = mlt_properties_get( properties, "hide" );
225
226 // Indicate that this service is no longer top of stack
227 result = 1;
228
229 switch( type )
230 {
231 case mlt_tractor_type:
232 {
233 mlt_multitrack multitrack = mlt_tractor_multitrack( MLT_TRACTOR( container ) );
234 mlt_multitrack_connect( multitrack, MLT_PRODUCER( service ), mlt_multitrack_count( multitrack ) );
235 }
236 break;
237 case mlt_multitrack_type:
238 {
239 mlt_multitrack_connect( MLT_MULTITRACK( container ),
240 MLT_PRODUCER( service ),
241 mlt_multitrack_count( MLT_MULTITRACK( container ) ) );
242 }
243 break;
244 case mlt_playlist_type:
245 {
246 mlt_playlist_append_io( MLT_PLAYLIST( container ), MLT_PRODUCER( service ), in, out );
247 }
248 break;
249 default:
250 result = 0;
251 fprintf( stderr, "Producer defined inside something that isn't a container\n" );
252 break;
253 };
254
255 // Set the hide state of the track producer
256 if ( hide_s != NULL )
257 {
258 if ( strcmp( hide_s, "video" ) == 0 )
259 mlt_properties_set_int( properties, "hide", 1 );
260 else if ( strcmp( hide_s, "audio" ) == 0 )
261 mlt_properties_set_int( properties, "hide", 2 );
262 else if ( strcmp( hide_s, "both" ) == 0 )
263 mlt_properties_set_int( properties, "hide", 3 );
264 }
265 }
266
267 // Put the parent producer back
268 if ( container != NULL )
269 context_push_service( context, container, type );
270
271 return result;
272 }
273
274 /** Attach filters defined on that to this.
275 */
276
277 static void attach_filters( mlt_service this, mlt_service that )
278 {
279 if ( that != NULL )
280 {
281 int i = 0;
282 mlt_filter filter = NULL;
283 for ( i = 0; ( filter = mlt_service_filter( that, i ) ) != NULL; i ++ )
284 {
285 mlt_service_attach( this, filter );
286 attach_filters( MLT_FILTER_SERVICE( filter ), MLT_FILTER_SERVICE( filter ) );
287 }
288 }
289 }
290
291 static void on_start_tractor( deserialise_context context, const xmlChar *name, const xmlChar **atts)
292 {
293 mlt_tractor tractor = mlt_tractor_new( );
294 mlt_service service = MLT_TRACTOR_SERVICE( tractor );
295 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
296
297 track_service( context->destructors, service, (mlt_destructor) mlt_tractor_close );
298
299 for ( ; atts != NULL && *atts != NULL; atts += 2 )
300 mlt_properties_set( MLT_SERVICE_PROPERTIES( service ), (const char*) atts[0], atts[1] == NULL ? "" : (const char*) atts[1] );
301
302 mlt_properties_set_int( MLT_TRACTOR_PROPERTIES( tractor ), "global_feed", 1 );
303
304 if ( mlt_properties_get( properties, "id" ) != NULL )
305 mlt_properties_set_data( context->producer_map, mlt_properties_get( properties, "id" ), service, 0, NULL, NULL );
306
307 context_push_service( context, service, mlt_tractor_type );
308 }
309
310 static void on_end_tractor( deserialise_context context, const xmlChar *name )
311 {
312 // Get the tractor
313 enum service_type type;
314 mlt_service tractor = context_pop_service( context, &type );
315
316 if ( tractor != NULL && type == mlt_tractor_type )
317 {
318 // See if the tractor should be added to a playlist or multitrack
319 if ( add_producer( context, tractor, 0, mlt_producer_get_out( MLT_PRODUCER( tractor ) ) ) == 0 )
320 context_push_service( context, tractor, type );
321 }
322 else
323 {
324 fprintf( stderr, "Invalid state for tractor\n" );
325 }
326 }
327
328 static void on_start_multitrack( deserialise_context context, const xmlChar *name, const xmlChar **atts)
329 {
330 enum service_type type;
331 mlt_service parent = context_pop_service( context, &type );
332
333 // If we don't have a parent, then create one now, providing we're in a state where we can
334 if ( parent == NULL || ( type == mlt_playlist_type || type == mlt_multitrack_type ) )
335 {
336 mlt_tractor tractor = NULL;
337 // Push the parent back
338 if ( parent != NULL )
339 context_push_service( context, parent, type );
340
341 // Create a tractor to contain the multitrack
342 tractor = mlt_tractor_new( );
343 parent = MLT_TRACTOR_SERVICE( tractor );
344 track_service( context->destructors, parent, (mlt_destructor) mlt_tractor_close );
345 type = mlt_tractor_type;
346
347 // Flag it as a synthesised tractor for clean up later
348 mlt_properties_set_int( MLT_SERVICE_PROPERTIES( parent ), "fezzik_synth", 1 );
349 }
350
351 if ( type == mlt_tractor_type )
352 {
353 mlt_service service = MLT_SERVICE( mlt_tractor_multitrack( MLT_TRACTOR( parent ) ) );
354 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
355 for ( ; atts != NULL && *atts != NULL; atts += 2 )
356 mlt_properties_set( properties, (const char*) atts[0], atts[1] == NULL ? "" : (const char*) atts[1] );
357
358 if ( mlt_properties_get( properties, "id" ) != NULL )
359 mlt_properties_set_data( context->producer_map, mlt_properties_get( properties,"id" ), service, 0, NULL, NULL );
360
361 context_push_service( context, parent, type );
362 context_push_service( context, service, mlt_multitrack_type );
363 }
364 else
365 {
366 fprintf( stderr, "Invalid multitrack position\n" );
367 }
368 }
369
370 static void on_end_multitrack( deserialise_context context, const xmlChar *name )
371 {
372 // Get the multitrack from the stack
373 enum service_type type;
374 mlt_service service = context_pop_service( context, &type );
375
376 if ( service == NULL || type != mlt_multitrack_type )
377 fprintf( stderr, "End multitrack in the wrong state...\n" );
378 }
379
380 static void on_start_playlist( deserialise_context context, const xmlChar *name, const xmlChar **atts)
381 {
382 mlt_playlist playlist = mlt_playlist_init( );
383 mlt_service service = MLT_PLAYLIST_SERVICE( playlist );
384 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
385
386 track_service( context->destructors, service, (mlt_destructor) mlt_playlist_close );
387
388 for ( ; atts != NULL && *atts != NULL; atts += 2 )
389 {
390 mlt_properties_set( properties, (const char*) atts[0], atts[1] == NULL ? "" : (const char*) atts[1] );
391
392 // Out will be overwritten later as we append, so we need to save it
393 if ( xmlStrcmp( atts[ 0 ], _x("out") ) == 0 )
394 mlt_properties_set( properties, "_westley.out", ( const char* )atts[ 1 ] );
395 }
396
397 if ( mlt_properties_get( properties, "id" ) != NULL )
398 mlt_properties_set_data( context->producer_map, mlt_properties_get( properties, "id" ), service, 0, NULL, NULL );
399
400 context_push_service( context, service, mlt_playlist_type );
401 }
402
403 static void on_end_playlist( deserialise_context context, const xmlChar *name )
404 {
405 // Get the playlist from the stack
406 enum service_type type;
407 mlt_service service = context_pop_service( context, &type );
408
409 if ( service != NULL && type == mlt_playlist_type )
410 {
411 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
412 mlt_position in = mlt_properties_get_position( properties, "in" );
413 mlt_position out = mlt_properties_get_position( properties, "out" );
414
415 // See if the playlist should be added to a playlist or multitrack
416 if ( add_producer( context, service, in, out ) == 0 )
417 context_push_service( context, service, type );
418 }
419 else
420 {
421 fprintf( stderr, "Invalid state of playlist end\n" );
422 }
423 }
424
425 static void on_start_producer( deserialise_context context, const xmlChar *name, const xmlChar **atts)
426 {
427 // use a dummy service to hold properties to allow arbitrary nesting
428 mlt_service service = calloc( 1, sizeof( struct mlt_service_s ) );
429 mlt_service_init( service, NULL );
430
431 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
432
433 context_push_service( context, service, mlt_dummy_producer_type );
434
435 for ( ; atts != NULL && *atts != NULL; atts += 2 )
436 mlt_properties_set( properties, (const char*) atts[0], atts[1] == NULL ? "" : (const char*) atts[1] );
437 }
438
439 // Parse a SMIL clock value (as produced by Kino 0.9.1) and return position in frames
440 static mlt_position parse_clock_value( char *value, double fps )
441 {
442 // This implementation expects a fully specified clock value - no optional
443 // parts (e.g. 1:05)
444 char *pos, *copy = strdup( value );
445 int hh, mm, ss, ms;
446 mlt_position result = -1;
447
448 value = copy;
449 pos = strchr( value, ':' );
450 if ( !pos )
451 return result;
452 *pos = '\0';
453 hh = atoi( value );
454 value = pos + 1;
455
456 pos = strchr( value, ':' );
457 if ( !pos )
458 return result;
459 *pos = '\0';
460 mm = atoi( value );
461 value = pos + 1;
462
463 pos = strchr( value, '.' );
464 if ( !pos )
465 return result;
466 *pos = '\0';
467 ss = atoi( value );
468 value = pos + 1;
469
470 ms = atoi( value );
471 free( copy );
472 result = ( fps * ( ( (hh * 3600) + (mm * 60) + ss ) * 1000 + ms ) / 1000 + 0.5 );
473
474 return result;
475 }
476
477 static void on_end_producer( deserialise_context context, const xmlChar *name )
478 {
479 enum service_type type;
480 mlt_service service = context_pop_service( context, &type );
481 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
482
483 if ( service != NULL && type == mlt_dummy_producer_type )
484 {
485 mlt_service producer = NULL;
486
487 qualify_property( context, properties, "resource" );
488 char *resource = mlt_properties_get( properties, "resource" );
489
490 // Let Kino-SMIL src be a synonym for resource
491 if ( resource == NULL )
492 {
493 qualify_property( context, properties, "src" );
494 resource = mlt_properties_get( properties, "src" );
495 }
496
497 // Instantiate the producer
498 if ( mlt_properties_get( properties, "mlt_service" ) != NULL )
499 {
500 char temp[ 1024 ];
501 strncpy( temp, mlt_properties_get( properties, "mlt_service" ), 1024 );
502 if ( resource != NULL )
503 {
504 strcat( temp, ":" );
505 strncat( temp, resource, 1023 - strlen( temp ) );
506 }
507 producer = MLT_SERVICE( mlt_factory_producer( context->profile, "fezzik", temp ) );
508 }
509
510 // Just in case the plugin requested doesn't exist...
511 if ( producer == NULL && resource != NULL )
512 producer = MLT_SERVICE( mlt_factory_producer( context->profile, "fezzik", resource ) );
513
514 if ( producer == NULL )
515 producer = MLT_SERVICE( mlt_factory_producer( context->profile, "fezzik", "+INVALID.txt" ) );
516
517 if ( producer == NULL )
518 producer = MLT_SERVICE( mlt_factory_producer( context->profile, "fezzik", "colour:red" ) );
519
520 // Track this producer
521 track_service( context->destructors, producer, (mlt_destructor) mlt_producer_close );
522
523 // Propogate the properties
524 qualify_property( context, properties, "resource" );
525 qualify_property( context, properties, "luma" );
526 qualify_property( context, properties, "luma.resource" );
527 qualify_property( context, properties, "composite.luma" );
528 qualify_property( context, properties, "producer.resource" );
529
530 // Handle in/out properties separately
531 mlt_position in = -1;
532 mlt_position out = -1;
533
534 // Get in
535 if ( mlt_properties_get( properties, "in" ) != NULL )
536 in = mlt_properties_get_position( properties, "in" );
537 // Let Kino-SMIL clipBegin be a synonym for in
538 if ( mlt_properties_get( properties, "clipBegin" ) != NULL )
539 {
540 if ( strchr( mlt_properties_get( properties, "clipBegin" ), ':' ) )
541 // Parse clock value
542 in = parse_clock_value( mlt_properties_get( properties, "clipBegin" ),
543 mlt_producer_get_fps( MLT_PRODUCER( producer ) ) );
544 else
545 // Parse frames value
546 in = mlt_properties_get_position( properties, "clipBegin" );
547 }
548 // Get out
549 if ( mlt_properties_get( properties, "out" ) != NULL )
550 out = mlt_properties_get_position( properties, "out" );
551 // Let Kino-SMIL clipEnd be a synonym for out
552 if ( mlt_properties_get( properties, "clipEnd" ) != NULL )
553 {
554 if ( strchr( mlt_properties_get( properties, "clipEnd" ), ':' ) )
555 // Parse clock value
556 out = parse_clock_value( mlt_properties_get( properties, "clipEnd" ),
557 mlt_producer_get_fps( MLT_PRODUCER( producer ) ) );
558 else
559 // Parse frames value
560 out = mlt_properties_get_position( properties, "clipEnd" );
561 }
562 // Remove in and out
563 mlt_properties_set( properties, "in", NULL );
564 mlt_properties_set( properties, "out", NULL );
565
566 // Inherit the properties
567 mlt_properties_inherit( MLT_SERVICE_PROPERTIES( producer ), properties );
568
569 // Attach all filters from service onto producer
570 attach_filters( producer, service );
571
572 // Add the producer to the producer map
573 if ( mlt_properties_get( properties, "id" ) != NULL )
574 mlt_properties_set_data( context->producer_map, mlt_properties_get(properties, "id"), producer, 0, NULL, NULL );
575
576 // See if the producer should be added to a playlist or multitrack
577 if ( add_producer( context, producer, in, out ) == 0 )
578 {
579 // Otherwise, set in and out on...
580 if ( in != -1 || out != -1 )
581 {
582 // Get the parent service
583 enum service_type type;
584 mlt_service parent = context_pop_service( context, &type );
585 if ( parent != NULL )
586 {
587 // Get the parent properties
588 properties = MLT_SERVICE_PROPERTIES( parent );
589
590 char *resource = mlt_properties_get( properties, "resource" );
591
592 // Put the parent producer back
593 context_push_service( context, parent, type );
594
595 // If the parent is a track or entry
596 if ( resource && ( strcmp( resource, "<entry>" ) == 0 ) )
597 {
598 mlt_properties_set_position( properties, "in", in );
599 mlt_properties_set_position( properties, "out", out );
600 }
601 else
602 {
603 // Otherwise, set in and out on producer directly
604 mlt_producer_set_in_and_out( MLT_PRODUCER( producer ), in, out );
605 }
606 }
607 else
608 {
609 // Otherwise, set in and out on producer directly
610 mlt_producer_set_in_and_out( MLT_PRODUCER( producer ), in, out );
611 }
612 }
613
614 // Push the producer onto the stack
615 context_push_service( context, producer, mlt_producer_type );
616 }
617
618 mlt_service_close( service );
619 }
620 }
621
622 static void on_start_blank( deserialise_context context, const xmlChar *name, const xmlChar **atts)
623 {
624 // Get the playlist from the stack
625 enum service_type type;
626 mlt_service service = context_pop_service( context, &type );
627 mlt_position length = 0;
628
629 if ( type == mlt_playlist_type && service != NULL )
630 {
631 // Look for the length attribute
632 for ( ; atts != NULL && *atts != NULL; atts += 2 )
633 {
634 if ( xmlStrcmp( atts[0], _x("length") ) == 0 )
635 {
636 length = atoll( _s(atts[1]) );
637 break;
638 }
639 }
640
641 // Append a blank to the playlist
642 mlt_playlist_blank( MLT_PLAYLIST( service ), length - 1 );
643
644 // Push the playlist back onto the stack
645 context_push_service( context, service, type );
646 }
647 else
648 {
649 fprintf( stderr, "blank without a playlist - a definite no no\n" );
650 }
651 }
652
653 static void on_start_entry( deserialise_context context, const xmlChar *name, const xmlChar **atts)
654 {
655 mlt_producer entry = NULL;
656 mlt_properties temp = mlt_properties_new( );
657
658 for ( ; atts != NULL && *atts != NULL; atts += 2 )
659 {
660 mlt_properties_set( temp, (const char*) atts[0], atts[1] == NULL ? "" : (const char*) atts[1] );
661
662 // Look for the producer attribute
663 if ( xmlStrcmp( atts[ 0 ], _x("producer") ) == 0 )
664 {
665 mlt_producer producer = mlt_properties_get_data( context->producer_map, (const char*) atts[1], NULL );
666 if ( producer != NULL )
667 mlt_properties_set_data( temp, "producer", producer, 0, NULL, NULL );
668 }
669 }
670
671 // If we have a valid entry
672 if ( mlt_properties_get_data( temp, "producer", NULL ) != NULL )
673 {
674 mlt_playlist_clip_info info;
675 enum service_type parent_type = invalid_type;
676 mlt_service parent = context_pop_service( context, &parent_type );
677 mlt_producer producer = mlt_properties_get_data( temp, "producer", NULL );
678
679 if ( parent_type == mlt_playlist_type )
680 {
681 // Append the producer to the playlist
682 if ( mlt_properties_get( temp, "in" ) != NULL || mlt_properties_get( temp, "out" ) != NULL )
683 {
684 mlt_playlist_append_io( MLT_PLAYLIST( parent ), producer,
685 mlt_properties_get_position( temp, "in" ),
686 mlt_properties_get_position( temp, "out" ) );
687 }
688 else
689 {
690 mlt_playlist_append( MLT_PLAYLIST( parent ), producer );
691 }
692
693 // Handle the repeat property
694 if ( mlt_properties_get_int( temp, "repeat" ) > 0 )
695 {
696 mlt_playlist_repeat_clip( MLT_PLAYLIST( parent ),
697 mlt_playlist_count( MLT_PLAYLIST( parent ) ) - 1,
698 mlt_properties_get_int( temp, "repeat" ) );
699 }
700
701 mlt_playlist_get_clip_info( MLT_PLAYLIST( parent ), &info, mlt_playlist_count( MLT_PLAYLIST( parent ) ) - 1 );
702 entry = info.cut;
703 }
704 else
705 {
706 fprintf( stderr, "Entry not part of a playlist...\n" );
707 }
708
709 context_push_service( context, parent, parent_type );
710 }
711
712 // Push the cut onto the stack
713 context_push_service( context, MLT_PRODUCER_SERVICE( entry ), mlt_entry_type );
714
715 mlt_properties_close( temp );
716 }
717
718 static void on_end_entry( deserialise_context context, const xmlChar *name )
719 {
720 // Get the entry from the stack
721 enum service_type entry_type = invalid_type;
722 mlt_service entry = context_pop_service( context, &entry_type );
723
724 if ( entry == NULL && entry_type != mlt_entry_type )
725 {
726 fprintf( stderr, "Invalid state at end of entry\n" );
727 }
728 }
729
730 static void on_start_track( deserialise_context context, const xmlChar *name, const xmlChar **atts)
731 {
732 // use a dummy service to hold properties to allow arbitrary nesting
733 mlt_service service = calloc( 1, sizeof( struct mlt_service_s ) );
734 mlt_service_init( service, NULL );
735
736 // Push the dummy service onto the stack
737 context_push_service( context, service, mlt_entry_type );
738
739 mlt_properties_set( MLT_SERVICE_PROPERTIES( service ), "resource", "<track>" );
740
741 for ( ; atts != NULL && *atts != NULL; atts += 2 )
742 {
743 mlt_properties_set( MLT_SERVICE_PROPERTIES( service ), (const char*) atts[0], atts[1] == NULL ? "" : (const char*) atts[1] );
744
745 // Look for the producer attribute
746 if ( xmlStrcmp( atts[ 0 ], _x("producer") ) == 0 )
747 {
748 mlt_producer producer = mlt_properties_get_data( context->producer_map, (const char*) atts[1], NULL );
749 if ( producer != NULL )
750 mlt_properties_set_data( MLT_SERVICE_PROPERTIES( service ), "producer", producer, 0, NULL, NULL );
751 }
752 }
753 }
754
755 static void on_end_track( deserialise_context context, const xmlChar *name )
756 {
757 // Get the track from the stack
758 enum service_type track_type;
759 mlt_service track = context_pop_service( context, &track_type );
760
761 if ( track != NULL && track_type == mlt_entry_type )
762 {
763 mlt_properties track_props = MLT_SERVICE_PROPERTIES( track );
764 enum service_type parent_type = invalid_type;
765 mlt_service parent = context_pop_service( context, &parent_type );
766 mlt_multitrack multitrack = NULL;
767
768 mlt_producer producer = mlt_properties_get_data( track_props, "producer", NULL );
769 mlt_properties producer_props = MLT_PRODUCER_PROPERTIES( producer );
770
771 if ( parent_type == mlt_tractor_type )
772 multitrack = mlt_tractor_multitrack( MLT_TRACTOR( parent ) );
773 else if ( parent_type == mlt_multitrack_type )
774 multitrack = MLT_MULTITRACK( parent );
775 else
776 fprintf( stderr, "track contained in an invalid container\n" );
777
778 if ( multitrack != NULL )
779 {
780 // Set producer i/o if specified
781 if ( mlt_properties_get( track_props, "in" ) != NULL ||
782 mlt_properties_get( track_props, "out" ) != NULL )
783 {
784 mlt_producer cut = mlt_producer_cut( MLT_PRODUCER( producer ),
785 mlt_properties_get_position( track_props, "in" ),
786 mlt_properties_get_position( track_props, "out" ) );
787 mlt_multitrack_connect( multitrack, cut, mlt_multitrack_count( multitrack ) );
788 mlt_properties_inherit( MLT_PRODUCER_PROPERTIES( cut ), track_props );
789 track_props = MLT_PRODUCER_PROPERTIES( cut );
790 mlt_producer_close( cut );
791 }
792 else
793 {
794 mlt_multitrack_connect( multitrack, producer, mlt_multitrack_count( multitrack ) );
795 }
796
797 // Set the hide state of the track producer
798 char *hide_s = mlt_properties_get( track_props, "hide" );
799 if ( hide_s != NULL )
800 {
801 if ( strcmp( hide_s, "video" ) == 0 )
802 mlt_properties_set_int( producer_props, "hide", 1 );
803 else if ( strcmp( hide_s, "audio" ) == 0 )
804 mlt_properties_set_int( producer_props, "hide", 2 );
805 else if ( strcmp( hide_s, "both" ) == 0 )
806 mlt_properties_set_int( producer_props, "hide", 3 );
807 }
808 }
809
810 if ( parent != NULL )
811 context_push_service( context, parent, parent_type );
812
813 mlt_service_close( track );
814 }
815 else
816 {
817 fprintf( stderr, "Invalid state at end of track\n" );
818 }
819 }
820
821 static void on_start_filter( deserialise_context context, const xmlChar *name, const xmlChar **atts)
822 {
823 // use a dummy service to hold properties to allow arbitrary nesting
824 mlt_service service = calloc( 1, sizeof( struct mlt_service_s ) );
825 mlt_service_init( service, NULL );
826
827 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
828
829 context_push_service( context, service, mlt_dummy_filter_type );
830
831 // Set the properties
832 for ( ; atts != NULL && *atts != NULL; atts += 2 )
833 mlt_properties_set( properties, (const char*) atts[0], (const char*) atts[1] );
834 }
835
836 static void on_end_filter( deserialise_context context, const xmlChar *name )
837 {
838 enum service_type type;
839 mlt_service service = context_pop_service( context, &type );
840 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
841
842 enum service_type parent_type = invalid_type;
843 mlt_service parent = context_pop_service( context, &parent_type );
844
845 if ( service != NULL && type == mlt_dummy_filter_type )
846 {
847 mlt_service filter = MLT_SERVICE( mlt_factory_filter( context->profile, mlt_properties_get( properties, "mlt_service" ), NULL ) );
848 mlt_properties filter_props = MLT_SERVICE_PROPERTIES( filter );
849
850 track_service( context->destructors, filter, (mlt_destructor) mlt_filter_close );
851
852 // Propogate the properties
853 qualify_property( context, properties, "resource" );
854 qualify_property( context, properties, "luma" );
855 qualify_property( context, properties, "luma.resource" );
856 qualify_property( context, properties, "composite.luma" );
857 qualify_property( context, properties, "producer.resource" );
858 mlt_properties_inherit( filter_props, properties );
859
860 // Attach all filters from service onto filter
861 attach_filters( filter, service );
862
863 // Associate the filter with the parent
864 if ( parent != NULL )
865 {
866 if ( parent_type == mlt_tractor_type )
867 {
868 mlt_field field = mlt_tractor_field( MLT_TRACTOR( parent ) );
869 mlt_field_plant_filter( field, MLT_FILTER( filter ), mlt_properties_get_int( properties, "track" ) );
870 mlt_filter_set_in_and_out( MLT_FILTER( filter ),
871 mlt_properties_get_int( properties, "in" ),
872 mlt_properties_get_int( properties, "out" ) );
873 }
874 else
875 {
876 mlt_service_attach( parent, MLT_FILTER( filter ) );
877 }
878
879 // Put the parent back on the stack
880 context_push_service( context, parent, parent_type );
881 }
882 else
883 {
884 fprintf( stderr, "filter closed with invalid parent...\n" );
885 }
886
887 // Close the dummy filter service
888 mlt_service_close( service );
889 }
890 else
891 {
892 fprintf( stderr, "Invalid top of stack on filter close\n" );
893 }
894 }
895
896 static void on_start_transition( deserialise_context context, const xmlChar *name, const xmlChar **atts)
897 {
898 // use a dummy service to hold properties to allow arbitrary nesting
899 mlt_service service = calloc( 1, sizeof( struct mlt_service_s ) );
900 mlt_service_init( service, NULL );
901
902 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
903
904 context_push_service( context, service, mlt_dummy_transition_type );
905
906 // Set the properties
907 for ( ; atts != NULL && *atts != NULL; atts += 2 )
908 mlt_properties_set( properties, (const char*) atts[0], (const char*) atts[1] );
909 }
910
911 static void on_end_transition( deserialise_context context, const xmlChar *name )
912 {
913 enum service_type type;
914 mlt_service service = context_pop_service( context, &type );
915 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
916
917 enum service_type parent_type = invalid_type;
918 mlt_service parent = context_pop_service( context, &parent_type );
919
920 if ( service != NULL && type == mlt_dummy_transition_type )
921 {
922 char *id = mlt_properties_get( properties, "mlt_service" );
923 mlt_service effect = MLT_SERVICE( mlt_factory_transition( context->profile, id, NULL ) );
924 mlt_properties effect_props = MLT_SERVICE_PROPERTIES( effect );
925
926 track_service( context->destructors, effect, (mlt_destructor) mlt_transition_close );
927
928 // Propogate the properties
929 qualify_property( context, properties, "resource" );
930 qualify_property( context, properties, "luma" );
931 qualify_property( context, properties, "luma.resource" );
932 qualify_property( context, properties, "composite.luma" );
933 qualify_property( context, properties, "producer.resource" );
934 mlt_properties_inherit( effect_props, properties );
935
936 // Attach all filters from service onto effect
937 attach_filters( effect, service );
938
939 // Associate the filter with the parent
940 if ( parent != NULL )
941 {
942 if ( parent_type == mlt_tractor_type )
943 {
944 mlt_field field = mlt_tractor_field( MLT_TRACTOR( parent ) );
945 if ( mlt_properties_get_int( properties, "a_track" ) == mlt_properties_get_int( properties, "b_track" ) )
946 mlt_properties_set_int( properties, "b_track", mlt_properties_get_int( properties, "a_track" ) + 1 );
947 mlt_field_plant_transition( field, MLT_TRANSITION( effect ),
948 mlt_properties_get_int( properties, "a_track" ),
949 mlt_properties_get_int( properties, "b_track" ) );
950 mlt_transition_set_in_and_out( MLT_TRANSITION( effect ),
951 mlt_properties_get_int( properties, "in" ),
952 mlt_properties_get_int( properties, "out" ) );
953 }
954 else
955 {
956 fprintf( stderr, "Misplaced transition - ignoring\n" );
957 }
958
959 // Put the parent back on the stack
960 context_push_service( context, parent, parent_type );
961 }
962 else
963 {
964 fprintf( stderr, "transition closed with invalid parent...\n" );
965 }
966
967 // Close the dummy filter service
968 mlt_service_close( service );
969 }
970 else
971 {
972 fprintf( stderr, "Invalid top of stack on transition close\n" );
973 }
974 }
975
976 static void on_start_property( deserialise_context context, const xmlChar *name, const xmlChar **atts)
977 {
978 enum service_type type;
979 mlt_service service = context_pop_service( context, &type );
980 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
981 char *value = NULL;
982
983 if ( service != NULL )
984 {
985 // Set the properties
986 for ( ; atts != NULL && *atts != NULL; atts += 2 )
987 {
988 if ( xmlStrcmp( atts[ 0 ], _x("name") ) == 0 )
989 context->property = strdup( _s(atts[ 1 ]) );
990 else if ( xmlStrcmp( atts[ 0 ], _x("value") ) == 0 )
991 value = _s(atts[ 1 ]);
992 }
993
994 if ( context->property != NULL )
995 mlt_properties_set( properties, context->property, value == NULL ? "" : value );
996
997 // Tell parser to collect any further nodes for serialisation
998 context->is_value = 1;
999
1000 context_push_service( context, service, type );
1001 }
1002 else
1003 {
1004 fprintf( stderr, "Property without a service '%s'?\n", ( const char * )name );
1005 }
1006 }
1007
1008 static void on_end_property( deserialise_context context, const xmlChar *name )
1009 {
1010 enum service_type type;
1011 mlt_service service = context_pop_service( context, &type );
1012 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
1013
1014 if ( service != NULL )
1015 {
1016 // Tell parser to stop building a tree
1017 context->is_value = 0;
1018
1019 // See if there is a xml tree for the value
1020 if ( context->property != NULL && context->value_doc != NULL )
1021 {
1022 xmlChar *value;
1023 int size;
1024
1025 // Serialise the tree to get value
1026 xmlDocDumpMemory( context->value_doc, &value, &size );
1027 mlt_properties_set( properties, context->property, _s(value) );
1028 xmlFree( value );
1029 xmlFreeDoc( context->value_doc );
1030 context->value_doc = NULL;
1031 }
1032
1033 // Close this property handling
1034 free( context->property );
1035 context->property = NULL;
1036
1037 context_push_service( context, service, type );
1038 }
1039 else
1040 {
1041 fprintf( stderr, "Property without a service '%s'??\n", (const char *)name );
1042 }
1043 }
1044
1045 static void on_start_element( void *ctx, const xmlChar *name, const xmlChar **atts)
1046 {
1047 struct _xmlParserCtxt *xmlcontext = ( struct _xmlParserCtxt* )ctx;
1048 deserialise_context context = ( deserialise_context )( xmlcontext->_private );
1049
1050 //printf("on_start_element: %s\n", name );
1051 context->branch[ context->depth ] ++;
1052 context->depth ++;
1053
1054 // Build a tree from nodes within a property value
1055 if ( context->is_value == 1 )
1056 {
1057 xmlNodePtr node = xmlNewNode( NULL, name );
1058
1059 if ( context->value_doc == NULL )
1060 {
1061 // Start a new tree
1062 context->value_doc = xmlNewDoc( _x("1.0") );
1063 xmlDocSetRootElement( context->value_doc, node );
1064 }
1065 else
1066 {
1067 // Append child to tree
1068 xmlAddChild( context->stack_node[ context->stack_node_size - 1 ], node );
1069 }
1070 context_push_node( context, node );
1071
1072 // Set the attributes
1073 for ( ; atts != NULL && *atts != NULL; atts += 2 )
1074 xmlSetProp( node, atts[ 0 ], atts[ 1 ] );
1075 }
1076 else if ( xmlStrcmp( name, _x("tractor") ) == 0 )
1077 on_start_tractor( context, name, atts );
1078 else if ( xmlStrcmp( name, _x("multitrack") ) == 0 )
1079 on_start_multitrack( context, name, atts );
1080 else if ( xmlStrcmp( name, _x("playlist") ) == 0 || xmlStrcmp( name, _x("seq") ) == 0 || xmlStrcmp( name, _x("smil") ) == 0 )
1081 on_start_playlist( context, name, atts );
1082 else if ( xmlStrcmp( name, _x("producer") ) == 0 || xmlStrcmp( name, _x("video") ) == 0 )
1083 on_start_producer( context, name, atts );
1084 else if ( xmlStrcmp( name, _x("blank") ) == 0 )
1085 on_start_blank( context, name, atts );
1086 else if ( xmlStrcmp( name, _x("entry") ) == 0 )
1087 on_start_entry( context, name, atts );
1088 else if ( xmlStrcmp( name, _x("track") ) == 0 )
1089 on_start_track( context, name, atts );
1090 else if ( xmlStrcmp( name, _x("filter") ) == 0 )
1091 on_start_filter( context, name, atts );
1092 else if ( xmlStrcmp( name, _x("transition") ) == 0 )
1093 on_start_transition( context, name, atts );
1094 else if ( xmlStrcmp( name, _x("property") ) == 0 )
1095 on_start_property( context, name, atts );
1096 else if ( xmlStrcmp( name, _x("westley") ) == 0 )
1097 for ( ; atts != NULL && *atts != NULL; atts += 2 )
1098 mlt_properties_set( context->producer_map, ( const char * )atts[ 0 ], ( const char * )atts[ 1 ] );
1099 }
1100
1101 static void on_end_element( void *ctx, const xmlChar *name )
1102 {
1103 struct _xmlParserCtxt *xmlcontext = ( struct _xmlParserCtxt* )ctx;
1104 deserialise_context context = ( deserialise_context )( xmlcontext->_private );
1105
1106 //printf("on_end_element: %s\n", name );
1107 if ( context->is_value == 1 && xmlStrcmp( name, _x("property") ) != 0 )
1108 context_pop_node( context );
1109 else if ( xmlStrcmp( name, _x("multitrack") ) == 0 )
1110 on_end_multitrack( context, name );
1111 else if ( xmlStrcmp( name, _x("playlist") ) == 0 || xmlStrcmp( name, _x("seq") ) == 0 || xmlStrcmp( name, _x("smil") ) == 0 )
1112 on_end_playlist( context, name );
1113 else if ( xmlStrcmp( name, _x("track") ) == 0 )
1114 on_end_track( context, name );
1115 else if ( xmlStrcmp( name, _x("entry") ) == 0 )
1116 on_end_entry( context, name );
1117 else if ( xmlStrcmp( name, _x("tractor") ) == 0 )
1118 on_end_tractor( context, name );
1119 else if ( xmlStrcmp( name, _x("property") ) == 0 )
1120 on_end_property( context, name );
1121 else if ( xmlStrcmp( name, _x("producer") ) == 0 || xmlStrcmp( name, _x("video") ) == 0 )
1122 on_end_producer( context, name );
1123 else if ( xmlStrcmp( name, _x("filter") ) == 0 )
1124 on_end_filter( context, name );
1125 else if ( xmlStrcmp( name, _x("transition") ) == 0 )
1126 on_end_transition( context, name );
1127
1128 context->branch[ context->depth ] = 0;
1129 context->depth --;
1130 }
1131
1132 static void on_characters( void *ctx, const xmlChar *ch, int len )
1133 {
1134 struct _xmlParserCtxt *xmlcontext = ( struct _xmlParserCtxt* )ctx;
1135 deserialise_context context = ( deserialise_context )( xmlcontext->_private );
1136 char *value = calloc( len + 1, 1 );
1137 enum service_type type;
1138 mlt_service service = context_pop_service( context, &type );
1139 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
1140
1141 if ( service != NULL )
1142 context_push_service( context, service, type );
1143
1144 value[ len ] = 0;
1145 strncpy( value, (const char*) ch, len );
1146
1147 if ( context->stack_node_size > 0 )
1148 xmlNodeAddContent( context->stack_node[ context->stack_node_size - 1 ], ( xmlChar* )value );
1149
1150 // libxml2 generates an on_characters immediately after a get_entity within
1151 // an element value, and we ignore it because it is called again during
1152 // actual substitution.
1153 else if ( context->property != NULL && context->entity_is_replace == 0 )
1154 {
1155 char *s = mlt_properties_get( properties, context->property );
1156 if ( s != NULL )
1157 {
1158 // Append new text to existing content
1159 char *new = calloc( strlen( s ) + len + 1, 1 );
1160 strcat( new, s );
1161 strcat( new, value );
1162 mlt_properties_set( properties, context->property, new );
1163 free( new );
1164 }
1165 else
1166 mlt_properties_set( properties, context->property, value );
1167 }
1168 context->entity_is_replace = 0;
1169
1170 free( value);
1171 }
1172
1173 /** Convert parameters parsed from resource into entity declarations.
1174 */
1175 static void params_to_entities( deserialise_context context )
1176 {
1177 if ( context->params != NULL )
1178 {
1179 int i;
1180
1181 // Add our params as entitiy declarations
1182 for ( i = 0; i < mlt_properties_count( context->params ); i++ )
1183 {
1184 xmlChar *name = ( xmlChar* )mlt_properties_get_name( context->params, i );
1185 xmlAddDocEntity( context->entity_doc, name, XML_INTERNAL_GENERAL_ENTITY,
1186 context->publicId, context->systemId, ( xmlChar* )mlt_properties_get( context->params, _s(name) ) );
1187 }
1188
1189 // Flag completion
1190 mlt_properties_close( context->params );
1191 context->params = NULL;
1192 }
1193 }
1194
1195 // The following 3 facilitate entity substitution in the SAX parser
1196 static void on_internal_subset( void *ctx, const xmlChar* name,
1197 const xmlChar* publicId, const xmlChar* systemId )
1198 {
1199 struct _xmlParserCtxt *xmlcontext = ( struct _xmlParserCtxt* )ctx;
1200 deserialise_context context = ( deserialise_context )( xmlcontext->_private );
1201
1202 context->publicId = publicId;
1203 context->systemId = systemId;
1204 xmlCreateIntSubset( context->entity_doc, name, publicId, systemId );
1205
1206 // Override default entities with our parameters
1207 params_to_entities( context );
1208 }
1209
1210 // TODO: Check this with Dan... I think this is for westley parameterisation
1211 // but it's breaking standard escaped entities (like &lt; etc).
1212 static void on_entity_declaration( void *ctx, const xmlChar* name, int type,
1213 const xmlChar* publicId, const xmlChar* systemId, xmlChar* content)
1214 {
1215 struct _xmlParserCtxt *xmlcontext = ( struct _xmlParserCtxt* )ctx;
1216 deserialise_context context = ( deserialise_context )( xmlcontext->_private );
1217
1218 xmlAddDocEntity( context->entity_doc, name, type, publicId, systemId, content );
1219 }
1220
1221 // TODO: Check this functionality (see on_entity_declaration)
1222 static xmlEntityPtr on_get_entity( void *ctx, const xmlChar* name )
1223 {
1224 struct _xmlParserCtxt *xmlcontext = ( struct _xmlParserCtxt* )ctx;
1225 deserialise_context context = ( deserialise_context )( xmlcontext->_private );
1226 xmlEntityPtr e = NULL;
1227
1228 // Setup for entity declarations if not ready
1229 if ( xmlGetIntSubset( context->entity_doc ) == NULL )
1230 {
1231 xmlCreateIntSubset( context->entity_doc, _x("westley"), _x(""), _x("") );
1232 context->publicId = _x("");
1233 context->systemId = _x("");
1234 }
1235
1236 // Add our parameters if not already
1237 params_to_entities( context );
1238
1239 e = xmlGetPredefinedEntity( name );
1240
1241 // Send signal to on_characters that an entity substitutin is pending
1242 if ( e == NULL )
1243 {
1244 e = xmlGetDocEntity( context->entity_doc, name );
1245 if ( e != NULL )
1246 context->entity_is_replace = 1;
1247 }
1248
1249 return e;
1250 }
1251
1252 /** Convert a hexadecimal character to its value.
1253 */
1254 static int tohex( char p )
1255 {
1256 return isdigit( p ) ? p - '0' : tolower( p ) - 'a' + 10;
1257 }
1258
1259 /** Decode a url-encoded string containing hexadecimal character sequences.
1260 */
1261 static char *url_decode( char *dest, char *src )
1262 {
1263 char *p = dest;
1264
1265 while ( *src )
1266 {
1267 if ( *src == '%' )
1268 {
1269 *p ++ = ( tohex( *( src + 1 ) ) << 4 ) | tohex( *( src + 2 ) );
1270 src += 3;
1271 }
1272 else
1273 {
1274 *p ++ = *src ++;
1275 }
1276 }
1277
1278 *p = *src;
1279 return dest;
1280 }
1281
1282 /** Extract the filename from a URL attaching parameters to a properties list.
1283 */
1284 static void parse_url( mlt_properties properties, char *url )
1285 {
1286 int i;
1287 int n = strlen( url );
1288 char *name = NULL;
1289 char *value = NULL;
1290
1291 for ( i = 0; i < n; i++ )
1292 {
1293 switch ( url[ i ] )
1294 {
1295 case '?':
1296 url[ i++ ] = '\0';
1297 name = &url[ i ];
1298 break;
1299
1300 case ':':
1301 case '=':
1302 url[ i++ ] = '\0';
1303 value = &url[ i ];
1304 break;
1305
1306 case '&':
1307 url[ i++ ] = '\0';
1308 if ( name != NULL && value != NULL )
1309 mlt_properties_set( properties, name, value );
1310 name = &url[ i ];
1311 value = NULL;
1312 break;
1313 }
1314 }
1315 if ( name != NULL && value != NULL )
1316 mlt_properties_set( properties, name, value );
1317 }
1318
1319 // Quick workaround to avoid unecessary libxml2 warnings
1320 static int file_exists( char *file )
1321 {
1322 char *name = strdup( file );
1323 int exists = 0;
1324 if ( name != NULL && strchr( name, '?' ) )
1325 *( strchr( name, '?' ) ) = '\0';
1326 if ( name != NULL )
1327 {
1328 FILE *f = fopen( name, "r" );
1329 exists = f != NULL;
1330 if ( exists ) fclose( f );
1331 }
1332 free( name );
1333 return exists;
1334 }
1335
1336 mlt_producer producer_westley_init( mlt_profile profile, mlt_service_type servtype, const char *id, char *data )
1337 {
1338 xmlSAXHandler *sax = calloc( 1, sizeof( xmlSAXHandler ) );
1339 struct deserialise_context_s *context = calloc( 1, sizeof( struct deserialise_context_s ) );
1340 mlt_properties properties = NULL;
1341 int i = 0;
1342 struct _xmlParserCtxt *xmlcontext;
1343 int well_formed = 0;
1344 char *filename = NULL;
1345 int info = strcmp( id, "westley-xml" ) ? 0 : 1;
1346
1347 if ( data == NULL || !strcmp( data, "" ) || ( info == 0 && !file_exists( data ) ) )
1348 return NULL;
1349
1350 context = calloc( 1, sizeof( struct deserialise_context_s ) );
1351 if ( context == NULL )
1352 return NULL;
1353
1354 context->producer_map = mlt_properties_new();
1355 context->destructors = mlt_properties_new();
1356 context->params = mlt_properties_new();
1357 context->profile = profile;
1358
1359 // Decode URL and parse parameters
1360 mlt_properties_set( context->producer_map, "root", "" );
1361 if ( info == 0 )
1362 {
1363 filename = strdup( data );
1364 parse_url( context->params, url_decode( filename, data ) );
1365
1366 // We need the directory prefix which was used for the westley
1367 if ( strchr( filename, '/' ) )
1368 {
1369 char *root = NULL;
1370 mlt_properties_set( context->producer_map, "root", filename );
1371 root = mlt_properties_get( context->producer_map, "root" );
1372 *( strrchr( root, '/' ) ) = '\0';
1373
1374 // If we don't have an absolute path here, we're heading for disaster...
1375 if ( root[ 0 ] != '/' )
1376 {
1377 char *cwd = getcwd( NULL, 0 );
1378 char *real = malloc( strlen( cwd ) + strlen( root ) + 2 );
1379 sprintf( real, "%s/%s", cwd, root );
1380 mlt_properties_set( context->producer_map, "root", real );
1381 free( real );
1382 free( cwd );
1383 }
1384 }
1385 }
1386
1387 // We need to track the number of registered filters
1388 mlt_properties_set_int( context->destructors, "registered", 0 );
1389
1390 // Setup SAX callbacks
1391 sax->startElement = on_start_element;
1392 sax->endElement = on_end_element;
1393 sax->characters = on_characters;
1394 sax->cdataBlock = on_characters;
1395 sax->internalSubset = on_internal_subset;
1396 sax->entityDecl = on_entity_declaration;
1397 sax->getEntity = on_get_entity;
1398
1399 // Setup libxml2 SAX parsing
1400 xmlInitParser();
1401 xmlSubstituteEntitiesDefault( 1 );
1402 // This is used to facilitate entity substitution in the SAX parser
1403 context->entity_doc = xmlNewDoc( _x("1.0") );
1404 if ( info == 0 )
1405 xmlcontext = xmlCreateFileParserCtxt( filename );
1406 else
1407 xmlcontext = xmlCreateMemoryParserCtxt( data, strlen( data ) );
1408
1409 // Invalid context - clean up and return NULL
1410 if ( xmlcontext == NULL )
1411 {
1412 mlt_properties_close( context->producer_map );
1413 mlt_properties_close( context->destructors );
1414 mlt_properties_close( context->params );
1415 free( context );
1416 free( sax );
1417 free( filename );
1418 return NULL;
1419 }
1420
1421 xmlcontext->sax = sax;
1422 xmlcontext->_private = ( void* )context;
1423
1424 // Parse
1425 xmlParseDocument( xmlcontext );
1426 well_formed = xmlcontext->wellFormed;
1427
1428 // Cleanup after parsing
1429 xmlFreeDoc( context->entity_doc );
1430 free( sax );
1431 xmlcontext->sax = NULL;
1432 xmlcontext->_private = NULL;
1433 xmlFreeParserCtxt( xmlcontext );
1434 xmlMemoryDump( ); // for debugging
1435
1436 // Get the last producer on the stack
1437 enum service_type type;
1438 mlt_service service = context_pop_service( context, &type );
1439 if ( well_formed && service != NULL )
1440 {
1441 // Verify it is a producer service (mlt_type="mlt_producer")
1442 // (producer, playlist, multitrack)
1443 char *type = mlt_properties_get( MLT_SERVICE_PROPERTIES( service ), "mlt_type" );
1444 if ( type == NULL || ( strcmp( type, "mlt_producer" ) != 0 && strcmp( type, "producer" ) != 0 ) )
1445 service = NULL;
1446 }
1447
1448 #ifdef DEBUG
1449 xmlDocPtr doc = westley_make_doc( service );
1450 xmlDocFormatDump( stdout, doc, 1 );
1451 xmlFreeDoc( doc );
1452 service = NULL;
1453 #endif
1454
1455 if ( well_formed && service != NULL )
1456 {
1457 char *title = mlt_properties_get( context->producer_map, "title" );
1458
1459 // Need the complete producer list for various reasons
1460 properties = context->destructors;
1461
1462 // Now make sure we don't have a reference to the service in the properties
1463 for ( i = mlt_properties_count( properties ) - 1; i >= 1; i -- )
1464 {
1465 char *name = mlt_properties_get_name( properties, i );
1466 if ( mlt_properties_get_data( properties, name, NULL ) == service )
1467 {
1468 mlt_properties_set_data( properties, name, service, 0, NULL, NULL );
1469 break;
1470 }
1471 }
1472
1473 // We are done referencing destructor property list
1474 // Set this var to service properties for convenience
1475 properties = MLT_SERVICE_PROPERTIES( service );
1476
1477 // Assign the title
1478 mlt_properties_set( properties, "title", title );
1479
1480 // Optimise for overlapping producers
1481 mlt_producer_optimise( MLT_PRODUCER( service ) );
1482
1483 // Handle deep copies
1484 if ( getenv( "MLT_WESTLEY_DEEP" ) == NULL )
1485 {
1486 // Now assign additional properties
1487 if ( info == 0 )
1488 mlt_properties_set( properties, "resource", data );
1489
1490 // This tells consumer_westley not to deep copy
1491 mlt_properties_set( properties, "westley", "was here" );
1492 }
1493 else
1494 {
1495 // Allow the project to be edited
1496 mlt_properties_set( properties, "_westley", "was here" );
1497 mlt_properties_set_int( properties, "_mlt_service_hidden", 1 );
1498 }
1499 }
1500 else
1501 {
1502 // Return null if not well formed
1503 service = NULL;
1504 }
1505
1506 // Clean up
1507 mlt_properties_close( context->producer_map );
1508 if ( context->params != NULL )
1509 mlt_properties_close( context->params );
1510 mlt_properties_close( context->destructors );
1511 free( context );
1512 free( filename );
1513
1514 return MLT_PRODUCER( service );
1515 }