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>
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.
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.
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.
21 // TODO: destroy unreferenced producers (they are currently destroyed
22 // when the returned producer is closed).
23 // TODO: determine why deserialise_context can not be released.
25 #include "producer_westley.h"
26 #include <framework/mlt.h>
31 #include <libxml/parser.h>
32 #include <libxml/parserInternals.h> // for xmlCreateFileParserCtxt
33 #include <libxml/tree.h>
35 #define STACK_SIZE 1000
37 struct deserialise_context_s
39 mlt_service stack_service
[ STACK_SIZE
];
40 int stack_service_size
;
41 mlt_properties producer_map
;
42 mlt_properties destructors
;
44 mlt_properties producer_properties
;
47 xmlNodePtr stack_node
[ STACK_SIZE
];
51 typedef struct deserialise_context_s
*deserialise_context
;
57 static int context_push_service( deserialise_context
this, mlt_service that
)
59 int ret
= this->stack_service_size
>= STACK_SIZE
- 1;
61 this->stack_service
[ this->stack_service_size
++ ] = that
;
68 static mlt_service
context_pop_service( deserialise_context
this )
70 mlt_service result
= NULL
;
71 if ( this->stack_service_size
> 0 )
72 result
= this->stack_service
[ -- this->stack_service_size
];
79 static int context_push_node( deserialise_context
this, xmlNodePtr node
)
81 int ret
= this->stack_node_size
>= STACK_SIZE
- 1;
83 this->stack_node
[ this->stack_node_size
++ ] = node
;
90 static xmlNodePtr
context_pop_node( deserialise_context
this )
92 xmlNodePtr result
= NULL
;
93 if ( this->stack_node_size
> 0 )
94 result
= this->stack_node
[ -- this->stack_node_size
];
99 // Set the destructor on a new service
100 static void track_service( mlt_properties properties
, void *service
, mlt_destructor destructor
)
102 int registered
= mlt_properties_get_int( properties
, "registered" );
103 char *key
= mlt_properties_get( properties
, "registered" );
104 mlt_properties_set_data( properties
, key
, service
, 0, destructor
, NULL
);
105 mlt_properties_set_int( properties
, "registered", ++ registered
);
109 // Forward declarations
110 static void on_end_track( deserialise_context context
, const xmlChar
*name
);
111 static void on_end_entry( deserialise_context context
, const xmlChar
*name
);
113 static void on_start_tractor( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
115 mlt_service service
= mlt_tractor_service( mlt_tractor_init() );
116 mlt_properties properties
= mlt_service_properties( service
);
118 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_tractor_close
);
120 mlt_properties_set_position( properties
, "length", 0 );
122 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
123 mlt_properties_set( mlt_service_properties( service
), (char*) atts
[0], (char*) atts
[1] );
125 if ( mlt_properties_get_position( properties
, "length" ) < mlt_properties_get_position( properties
, "out" ) )
127 mlt_position length
= mlt_properties_get_position( properties
, "out" ) + 1;
128 mlt_properties_set_position( properties
, "length", length
);
131 if ( mlt_properties_get( properties
, "id" ) != NULL
)
132 mlt_properties_set_data( context
->producer_map
, mlt_properties_get( properties
, "id" ), service
, 0, NULL
, NULL
);
134 context_push_service( context
, service
);
137 static void on_start_multitrack( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
139 mlt_service service
= mlt_multitrack_service( mlt_multitrack_init() );
140 mlt_properties properties
= mlt_service_properties( service
);
142 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_multitrack_close
);
144 mlt_properties_set_position( properties
, "length", 0 );
146 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
147 mlt_properties_set( properties
, (char*) atts
[0], (char*) atts
[1] );
149 if ( mlt_properties_get( properties
, "id" ) != NULL
)
150 mlt_properties_set_data( context
->producer_map
, mlt_properties_get( properties
, "id" ), service
, 0, NULL
, NULL
);
152 context_push_service( context
, service
);
155 static void on_start_playlist( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
157 mlt_service service
= mlt_playlist_service( mlt_playlist_init() );
158 mlt_properties properties
= mlt_service_properties( service
);
160 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_playlist_close
);
162 mlt_properties_set_position( properties
, "length", 0 );
164 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
166 mlt_properties_set( properties
, ( char* )atts
[0], ( char* )atts
[1] );
168 // Out will be overwritten later as we append, so we need to save it
169 if ( strcmp( atts
[ 0 ], "out" ) == 0 )
170 mlt_properties_set( properties
, "_westley.out", ( char* )atts
[ 1 ] );
173 if ( mlt_properties_get( properties
, "id" ) != NULL
)
174 mlt_properties_set_data( context
->producer_map
, mlt_properties_get( properties
, "id" ), service
, 0, NULL
, NULL
);
176 context_push_service( context
, service
);
179 static void on_start_producer( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
181 mlt_properties properties
= context
->producer_properties
= mlt_properties_new();
183 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
185 mlt_properties_set( properties
, (char*) atts
[0], (char*) atts
[1] );
189 static void on_start_blank( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
191 // Get the playlist from the stack
192 mlt_service service
= context_pop_service( context
);
193 mlt_position length
= 0;
195 if ( service
== NULL
)
198 // Look for the length attribute
199 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
201 if ( strcmp( atts
[0], "length" ) == 0 )
203 length
= atoll( atts
[1] );
208 // Append a blank to the playlist
209 mlt_playlist_blank( MLT_PLAYLIST( service
), length
- 1 );
211 // Push the playlist back onto the stack
212 context_push_service( context
, service
);
215 static void on_start_entry_track( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
217 // Use a dummy service to hold properties to allow arbitrary nesting
218 mlt_service service
= calloc( 1, sizeof( struct mlt_service_s
) );
219 mlt_service_init( service
, NULL
);
221 // Push the dummy service onto the stack
222 context_push_service( context
, service
);
224 if ( strcmp( name
, "entry" ) == 0 )
225 mlt_properties_set( mlt_service_properties( service
), "resource", "<entry>" );
227 mlt_properties_set( mlt_service_properties( service
), "resource", "<track>" );
229 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
231 mlt_properties_set( mlt_service_properties( service
), (char*) atts
[0], (char*) atts
[1] );
233 // Look for the producer attribute
234 if ( strcmp( atts
[ 0 ], "producer" ) == 0 )
236 if ( mlt_properties_get_data( context
->producer_map
, (char*) atts
[1], NULL
) != NULL
)
237 // Push the referenced producer onto the stack
238 context_push_service( context
, MLT_SERVICE( mlt_properties_get_data( context
->producer_map
, (char*) atts
[1], NULL
) ) );
240 // Remove the dummy service to cause end element failure
241 context_pop_service( context
);
246 static void on_start_filter( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
248 mlt_properties properties
= context
->producer_properties
= mlt_properties_new();
250 // Set the properties
251 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
252 mlt_properties_set( properties
, (char*) atts
[0], (char*) atts
[1] );
255 static void on_start_transition( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
257 mlt_properties properties
= context
->producer_properties
= mlt_properties_new();
259 // Set the properties
260 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
261 mlt_properties_set( properties
, (char*) atts
[0], (char*) atts
[1] );
264 static void on_start_property( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
266 mlt_properties properties
= context
->producer_properties
;
269 if ( properties
== NULL
)
272 // Set the properties
273 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
275 if ( strcmp( atts
[ 0 ], "name" ) == 0 )
277 context
->property
= strdup( atts
[ 1 ] );
279 else if ( strcmp( atts
[ 0 ], "value" ) == 0 )
281 value
= (char*) atts
[ 1 ];
285 if ( context
->property
!= NULL
&& value
!= NULL
)
286 mlt_properties_set( properties
, context
->property
, value
);
288 // Tell parser to collect any further nodes for serialisation
289 context
->is_value
= 1;
293 /** This function adds a producer to a playlist or multitrack when
294 there is no entry or track element.
297 static int add_producer( deserialise_context context
, mlt_service service
, mlt_position in
, mlt_position out
)
299 // Get the parent producer
300 mlt_service producer
= context_pop_service( context
);
301 if ( producer
!= NULL
)
303 char *resource
= mlt_properties_get( mlt_service_properties( producer
), "resource" );
305 // Put the parent producer back
306 context_push_service( context
, producer
);
308 // If the parent producer is a multitrack or playlist (not a track or entry)
309 if ( resource
&& ( strcmp( resource
, "<playlist>" ) == 0 ||
310 strcmp( resource
, "<multitrack>" ) == 0 ) )
312 if ( strcmp( resource
, "<playlist>" ) == 0 )
314 // Append this producer to the playlist
315 mlt_playlist_append_io( MLT_PLAYLIST( producer
),
316 MLT_PRODUCER( service
), in
, out
);
320 mlt_properties properties
= mlt_service_properties( service
);
322 // Set this producer on the multitrack
323 mlt_multitrack_connect( MLT_MULTITRACK( producer
),
324 MLT_PRODUCER( service
),
325 mlt_multitrack_count( MLT_MULTITRACK( producer
) ) );
327 // Set the hide state of the track producer
328 char *hide_s
= mlt_properties_get( properties
, "hide" );
329 if ( hide_s
!= NULL
)
331 if ( strcmp( hide_s
, "video" ) == 0 )
332 mlt_properties_set_int( properties
, "hide", 1 );
333 else if ( strcmp( hide_s
, "audio" ) == 0 )
334 mlt_properties_set_int( properties
, "hide", 2 );
335 else if ( strcmp( hide_s
, "both" ) == 0 )
336 mlt_properties_set_int( properties
, "hide", 3 );
340 // Normally, the enclosing entry or track will pop this service off
341 // In its absence we do not push it on.
348 static void on_end_multitrack( deserialise_context context
, const xmlChar
*name
)
350 // Get the multitrack from the stack
351 mlt_service producer
= context_pop_service( context
);
352 if ( producer
== NULL
)
355 // Get the tractor from the stack
356 mlt_service service
= context_pop_service( context
);
358 // Create a tractor if one does not exist
359 char *resource
= NULL
;
360 if ( service
!= NULL
)
361 resource
= mlt_properties_get( mlt_service_properties( service
), "resource" );
362 if ( service
== NULL
|| resource
== NULL
|| strcmp( resource
, "<tractor>" ) )
364 // Put the anonymous service back onto the stack!
365 context_push_service( context
, service
);
367 service
= mlt_tractor_service( mlt_tractor_init() );
368 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_tractor_close
);
370 // Inherit the producer's properties
371 mlt_properties properties
= mlt_service_properties( service
);
372 mlt_properties_set_position( properties
, "length", mlt_producer_get_out( MLT_PRODUCER( producer
) ) + 1 );
373 mlt_producer_set_in_and_out( MLT_PRODUCER( service
), 0, mlt_producer_get_out( MLT_PRODUCER( producer
) ) );
374 mlt_properties_set_double( properties
, "fps", mlt_producer_get_fps( MLT_PRODUCER( producer
) ) );
377 // Connect the tractor to the multitrack
378 mlt_tractor_connect( MLT_TRACTOR( service
), producer
);
379 mlt_properties_set_data( mlt_service_properties( service
), "multitrack",
380 MLT_MULTITRACK( producer
), 0, NULL
, NULL
);
382 // See if the producer should be added to a playlist or multitrack
383 add_producer( context
, service
, 0, mlt_producer_get_out( MLT_PRODUCER( producer
) ) );
385 // Always push the multitrack back onto the stack for filters and transitions
386 context_push_service( context
, producer
);
388 // Always push the tractor back onto the stack for filters and transitions
389 context_push_service( context
, service
);
392 static void on_end_playlist( deserialise_context context
, const xmlChar
*name
)
394 // Get the playlist from the stack
395 mlt_service producer
= context_pop_service( context
);
396 if ( producer
== NULL
)
398 mlt_properties properties
= mlt_service_properties( producer
);
400 mlt_position in
= mlt_properties_get_position( properties
, "in" );
403 if ( mlt_properties_get( properties
, "_westley.out" ) != NULL
)
404 out
= mlt_properties_get_position( properties
, "_westley.out" );
406 out
= mlt_properties_get_position( properties
, "length" ) - 1;
408 if ( mlt_properties_get_position( properties
, "length" ) < out
)
409 mlt_properties_set_position( properties
, "length", out
+ 1 );
411 mlt_producer_set_in_and_out( MLT_PRODUCER( producer
), in
, out
);
413 // See if the playlist should be added to a playlist or multitrack
414 if ( add_producer( context
, producer
, in
, out
) == 0 )
416 // Otherwise, push the playlist back onto the stack
417 context_push_service( context
, producer
);
420 static void on_end_track( deserialise_context context
, const xmlChar
*name
)
422 // Get the producer from the stack
423 mlt_service producer
= context_pop_service( context
);
424 if ( producer
== NULL
)
426 mlt_properties producer_props
= mlt_service_properties( producer
);
428 // See if the producer is a tractor
429 char *resource
= mlt_properties_get( producer_props
, "resource" );
430 if ( resource
&& strcmp( resource
, "<tractor>" ) == 0 )
431 // If so chomp its producer
432 context_pop_service( context
);
434 // Get the dummy track service from the stack
435 mlt_service track
= context_pop_service( context
);
436 if ( track
== NULL
|| strcmp( mlt_properties_get( mlt_service_properties( track
), "resource" ), "<track>" ) )
438 context_push_service( context
, producer
);
441 mlt_properties track_props
= mlt_service_properties( track
);
443 // Get the multitrack from the stack
444 mlt_service service
= context_pop_service( context
);
445 if ( service
== NULL
)
447 context_push_service( context
, producer
);
451 // Set the track on the multitrack
452 mlt_multitrack_connect( MLT_MULTITRACK( service
),
453 MLT_PRODUCER( producer
),
454 mlt_multitrack_count( MLT_MULTITRACK( service
) ) );
456 // Set producer i/o if specified
457 if ( mlt_properties_get( track_props
, "in" ) != NULL
||
458 mlt_properties_get( track_props
, "out" ) != NULL
)
460 mlt_producer_set_in_and_out( MLT_PRODUCER( producer
),
461 mlt_properties_get_position( track_props
, "in" ),
462 mlt_properties_get_position( track_props
, "out" ) );
465 // Set the hide state of the track producer
466 char *hide_s
= mlt_properties_get( track_props
, "hide" );
467 if ( hide_s
!= NULL
)
469 if ( strcmp( hide_s
, "video" ) == 0 )
470 mlt_properties_set_int( producer_props
, "hide", 1 );
471 else if ( strcmp( hide_s
, "audio" ) == 0 )
472 mlt_properties_set_int( producer_props
, "hide", 2 );
473 else if ( strcmp( hide_s
, "both" ) == 0 )
474 mlt_properties_set_int( producer_props
, "hide", 3 );
477 // Push the multitrack back onto the stack
478 context_push_service( context
, service
);
480 mlt_service_close( track
);
483 static void on_end_entry( deserialise_context context
, const xmlChar
*name
)
485 // Get the producer from the stack
486 mlt_service producer
= context_pop_service( context
);
487 if ( producer
== NULL
)
490 // See if the producer is a tractor
491 char *resource
= mlt_properties_get( mlt_service_properties( producer
), "resource" );
492 if ( resource
&& strcmp( resource
, "<tractor>" ) == 0 )
493 // If so chomp its producer
494 context_pop_service( context
);
496 // Get the dummy entry service from the stack
497 mlt_service entry
= context_pop_service( context
);
498 if ( entry
== NULL
|| strcmp( mlt_properties_get( mlt_service_properties( entry
), "resource" ), "<entry>" ) )
500 context_push_service( context
, producer
);
504 // Get the playlist from the stack
505 mlt_service service
= context_pop_service( context
);
506 if ( service
== NULL
)
508 context_push_service( context
, producer
);
512 // Append the producer to the playlist
513 if ( mlt_properties_get( mlt_service_properties( entry
), "in" ) != NULL
||
514 mlt_properties_get( mlt_service_properties( entry
), "out" ) != NULL
)
516 mlt_playlist_append_io( MLT_PLAYLIST( service
),
517 MLT_PRODUCER( producer
),
518 mlt_properties_get_position( mlt_service_properties( entry
), "in" ),
519 mlt_properties_get_position( mlt_service_properties( entry
), "out" ) );
523 mlt_playlist_append( MLT_PLAYLIST( service
), MLT_PRODUCER( producer
) );
526 // Push the playlist back onto the stack
527 context_push_service( context
, service
);
529 mlt_service_close( entry
);
532 static void on_end_tractor( deserialise_context context
, const xmlChar
*name
)
535 mlt_service tractor
= context_pop_service( context
);
536 if ( tractor
== NULL
)
539 // Get the tractor's multitrack
540 mlt_producer multitrack
= mlt_properties_get_data( mlt_service_properties( tractor
), "multitrack", NULL
);
541 if ( multitrack
!= NULL
)
543 // Inherit the producer's properties
544 mlt_properties properties
= mlt_producer_properties( MLT_PRODUCER( tractor
) );
545 mlt_properties_set_position( properties
, "length", mlt_producer_get_out( multitrack
) + 1 );
546 mlt_producer_set_in_and_out( multitrack
, 0, mlt_producer_get_out( multitrack
) );
547 mlt_properties_set_double( properties
, "fps", mlt_producer_get_fps( multitrack
) );
550 // See if the tractor should be added to a playlist or multitrack
551 if ( add_producer( context
, tractor
, 0, mlt_producer_get_out( MLT_PRODUCER( tractor
) ) ) == 0 )
553 // Otherwise, push the tractor back onto the stack
554 context_push_service( context
, tractor
);
557 static void on_end_property( deserialise_context context
, const xmlChar
*name
)
559 // Tell parser to stop building a tree
560 context
->is_value
= 0;
562 // See if there is a xml tree for the value
563 if ( context
->property
!= NULL
&& context
->value_doc
!= NULL
)
568 // Serialise the tree to get value
569 xmlDocDumpMemory( context
->value_doc
, &value
, &size
);
570 mlt_properties_set( context
->producer_properties
, context
->property
, value
);
572 xmlFreeDoc( context
->value_doc
);
573 context
->value_doc
= NULL
;
576 // Close this property handling
577 free( context
->property
);
578 context
->property
= NULL
;
581 static void on_end_producer( deserialise_context context
, const xmlChar
*name
)
583 mlt_properties properties
= context
->producer_properties
;
584 mlt_service service
= NULL
;
586 if ( properties
== NULL
)
589 char *resource
= mlt_properties_get( properties
, "resource" );
590 // Let Kino-SMIL src be a synonym for resource
591 if ( resource
== NULL
)
592 resource
= mlt_properties_get( properties
, "src" );
594 // Instantiate the producer
595 if ( mlt_properties_get( properties
, "mlt_service" ) != NULL
)
597 service
= MLT_SERVICE( mlt_factory_producer( "fezzik", mlt_properties_get( properties
, "mlt_service" ) ) );
599 if ( service
== NULL
&& resource
!= NULL
)
601 char *root
= mlt_properties_get( context
->producer_map
, "_root" );
602 char *full_resource
= malloc( strlen( root
) + strlen( resource
) + 1 );
603 if ( resource
[ 0 ] != '/' )
605 strcpy( full_resource
, root
);
606 strcat( full_resource
, resource
);
610 strcpy( full_resource
, resource
);
612 service
= MLT_SERVICE( mlt_factory_producer( "fezzik", full_resource
) );
613 free( full_resource
);
615 if ( service
== NULL
)
617 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_producer_close
);
619 // Add the producer to the producer map
620 if ( mlt_properties_get( properties
, "id" ) != NULL
)
621 mlt_properties_set_data( context
->producer_map
, mlt_properties_get( properties
, "id" ), service
, 0, NULL
, NULL
);
623 // Handle in/out properties separately
624 mlt_position in
= -1;
625 mlt_position out
= -1;
628 if ( mlt_properties_get( properties
, "in" ) != NULL
)
629 in
= mlt_properties_get_position( properties
, "in" );
630 // Let Kino-SMIL clipBegin be a synonym for in
631 if ( mlt_properties_get( properties
, "clipBegin" ) != NULL
)
632 in
= mlt_properties_get_position( properties
, "clipBegin" );
634 if ( mlt_properties_get( properties
, "out" ) != NULL
)
635 out
= mlt_properties_get_position( properties
, "out" );
636 // Let Kino-SMIL clipEnd be a synonym for out
637 if ( mlt_properties_get( properties
, "clipEnd" ) != NULL
)
638 out
= mlt_properties_get_position( properties
, "clipEnd" );
641 mlt_properties_set( properties
, "in", NULL
);
642 mlt_properties_set( properties
, "out", NULL
);
644 mlt_properties_inherit( mlt_service_properties( service
), properties
);
645 mlt_properties_close( properties
);
646 context
->producer_properties
= NULL
;
648 // See if the producer should be added to a playlist or multitrack
649 if ( add_producer( context
, service
, in
, out
) == 0 )
651 // Otherwise, set in and out on...
652 if ( in
!= -1 || out
!= -1 )
654 // Get the parent service
655 mlt_service parent
= context_pop_service( context
);
656 if ( parent
!= NULL
)
658 // Get the parent properties
659 properties
= mlt_service_properties( parent
);
661 char *resource
= mlt_properties_get( properties
, "resource" );
663 // Put the parent producer back
664 context_push_service( context
, parent
);
666 // If the parent is a track or entry
667 if ( resource
&& ( strcmp( resource
, "<entry>" ) == 0 ) )
669 mlt_properties_set_position( properties
, "in", in
);
670 mlt_properties_set_position( properties
, "out", out
);
674 // Otherwise, set in and out on producer directly
675 mlt_producer_set_in_and_out( MLT_PRODUCER( service
), in
, out
);
680 // Otherwise, set in and out on producer directly
681 mlt_producer_set_in_and_out( MLT_PRODUCER( service
), in
, out
);
685 // Push the producer onto the stack
686 context_push_service( context
, service
);
690 static void on_end_filter( deserialise_context context
, const xmlChar
*name
)
692 mlt_properties properties
= context
->producer_properties
;
693 if ( properties
== NULL
)
699 mlt_service tractor
= NULL
;
701 // Get the producer from the stack
702 mlt_service producer
= context_pop_service( context
);
703 if ( producer
== NULL
)
706 // See if the producer is a tractor
707 char *resource
= mlt_properties_get( mlt_service_properties( producer
), "resource" );
708 if ( resource
!= NULL
&& strcmp( resource
, "<tractor>" ) == 0 )
710 // If so, then get the next producer
712 producer
= context_pop_service( context
);
715 //fprintf( stderr, "connecting filter to %s\n", mlt_properties_get( mlt_service_properties( producer ), "resource" ) );
718 mlt_service service
= MLT_SERVICE( mlt_factory_filter( mlt_properties_get( properties
, "mlt_service" ), NULL
) );
719 if ( service
== NULL
)
721 context_push_service( context
, producer
);
724 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_filter_close
);
726 // Connect the filter to the producer
727 mlt_filter_connect( MLT_FILTER( service
), producer
,
728 mlt_properties_get_int( properties
, "track" ) );
730 // Set in and out from producer if non existant
731 if ( mlt_properties_get( properties
, "in" ) == NULL
)
732 mlt_properties_set_position( properties
, "in", mlt_producer_get_in( MLT_PRODUCER( producer
) ) );
733 if ( mlt_properties_get( properties
, "out" ) == NULL
)
734 mlt_properties_set_position( properties
, "out", mlt_producer_get_out( MLT_PRODUCER( producer
) ) );
736 // Propogate the properties
737 mlt_properties_inherit( mlt_service_properties( service
), properties
);
738 mlt_properties_close( properties
);
739 context
->producer_properties
= NULL
;
740 properties
= mlt_service_properties( service
);
742 // Set in and out again due to inheritance
743 mlt_filter_set_in_and_out( MLT_FILTER( service
),
744 mlt_properties_get_position( properties
, "in" ),
745 mlt_properties_get_position( properties
, "out" ) );
747 // If a producer alias is in the producer_map, get it
748 snprintf( key
, 10, "%p", producer
);
749 if ( mlt_properties_get_data( context
->producer_map
, key
, NULL
) != NULL
)
750 producer
= mlt_properties_get_data( context
->producer_map
, key
, NULL
);
752 // Put the producer in the producer map
753 id
= mlt_properties_get( mlt_service_properties( producer
), "id" );
755 mlt_properties_set_data( context
->producer_map
, id
, service
, 0, NULL
, NULL
);
757 // For filter chain support, add an alias to the producer map
758 snprintf( key
, 10, "%p", service
);
759 mlt_properties_set_data( context
->producer_map
, key
, producer
, 0, NULL
, NULL
);
761 // Push the filter onto the stack
762 context_push_service( context
, service
);
764 if ( tractor
!= NULL
)
766 // Connect the tractor to the filter
767 mlt_tractor_connect( MLT_TRACTOR( tractor
), service
);
769 // Push the tractor back onto the stack
770 context_push_service( context
, tractor
);
774 static void on_end_transition( deserialise_context context
, const xmlChar
*name
)
776 mlt_service tractor
= NULL
;
777 mlt_properties properties
= context
->producer_properties
;
778 if ( properties
== NULL
)
781 // Get the producer from the stack
782 mlt_service producer
= context_pop_service( context
);
783 if ( producer
== NULL
)
786 // See if the producer is a tractor
787 char *resource
= mlt_properties_get( mlt_service_properties( producer
), "resource" );
788 if ( resource
!= NULL
&& strcmp( resource
, "<tractor>" ) == 0 )
790 // If so, then get the next producer
792 producer
= context_pop_service( context
);
795 // Create the transition
796 mlt_service service
= MLT_SERVICE( mlt_factory_transition( mlt_properties_get( properties
, "mlt_service" ), NULL
) );
797 if ( service
== NULL
)
799 context_push_service( context
, producer
);
802 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_transition_close
);
804 // Propogate the properties
805 mlt_properties_inherit( mlt_service_properties( service
), properties
);
806 mlt_properties_close( properties
);
807 context
->producer_properties
= NULL
;
808 properties
= mlt_service_properties( service
);
810 // Set in and out again due to inheritance
811 mlt_transition_set_in_and_out( MLT_TRANSITION( service
),
812 mlt_properties_get_position( properties
, "in" ),
813 mlt_properties_get_position( properties
, "out" ) );
815 // Connect the transition to the producer
816 mlt_transition_connect( MLT_TRANSITION( service
), producer
,
817 mlt_properties_get_int( properties
, "a_track" ),
818 mlt_properties_get_int( properties
, "b_track" ) );
820 // Push the transition onto the stack
821 context_push_service( context
, service
);
823 if ( tractor
!= NULL
)
825 // Connect the tractor to the transition
826 mlt_tractor_connect( MLT_TRACTOR( tractor
), service
);
828 // Push the tractor back onto the stack
829 context_push_service( context
, tractor
);
833 static void on_start_element( void *ctx
, const xmlChar
*name
, const xmlChar
**atts
)
835 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
836 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
838 // Build a tree from nodes within a property value
839 if ( context
->is_value
== 1 )
841 xmlNodePtr node
= xmlNewNode( NULL
, name
);
843 if ( context
->value_doc
== NULL
)
846 context
->value_doc
= xmlNewDoc( "1.0" );
847 xmlDocSetRootElement( context
->value_doc
, node
);
851 // Append child to tree
852 xmlAddChild( context
->stack_node
[ context
->stack_node_size
- 1 ], node
);
854 context_push_node( context
, node
);
856 // Set the attributes
857 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
858 xmlSetProp( node
, atts
[ 0 ], atts
[ 1 ] );
860 else if ( strcmp( name
, "tractor" ) == 0 )
861 on_start_tractor( context
, name
, atts
);
862 else if ( strcmp( name
, "multitrack" ) == 0 )
863 on_start_multitrack( context
, name
, atts
);
864 else if ( strcmp( name
, "playlist" ) == 0 || strcmp( name
, "seq" ) == 0 || strcmp( name
, "smil" ) == 0 )
865 on_start_playlist( context
, name
, atts
);
866 else if ( strcmp( name
, "producer" ) == 0 || strcmp( name
, "video" ) == 0 )
867 on_start_producer( context
, name
, atts
);
868 else if ( strcmp( name
, "blank" ) == 0 )
869 on_start_blank( context
, name
, atts
);
870 else if ( strcmp( name
, "entry" ) == 0 || strcmp( name
, "track" ) == 0 )
871 on_start_entry_track( context
, name
, atts
);
872 else if ( strcmp( name
, "filter" ) == 0 )
873 on_start_filter( context
, name
, atts
);
874 else if ( strcmp( name
, "transition" ) == 0 )
875 on_start_transition( context
, name
, atts
);
876 else if ( strcmp( name
, "property" ) == 0 )
877 on_start_property( context
, name
, atts
);
880 static void on_end_element( void *ctx
, const xmlChar
*name
)
882 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
883 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
885 if ( context
->is_value
== 1 && strcmp( name
, "property" ) != 0 )
886 context_pop_node( context
);
887 else if ( strcmp( name
, "multitrack" ) == 0 )
888 on_end_multitrack( context
, name
);
889 else if ( strcmp( name
, "playlist" ) == 0 || strcmp( name
, "seq" ) == 0 || strcmp( name
, "smil" ) == 0 )
890 on_end_playlist( context
, name
);
891 else if ( strcmp( name
, "track" ) == 0 )
892 on_end_track( context
, name
);
893 else if ( strcmp( name
, "entry" ) == 0 )
894 on_end_entry( context
, name
);
895 else if ( strcmp( name
, "tractor" ) == 0 )
896 on_end_tractor( context
, name
);
897 else if ( strcmp( name
, "property" ) == 0 )
898 on_end_property( context
, name
);
899 else if ( strcmp( name
, "producer" ) == 0 || strcmp( name
, "video" ) == 0 )
900 on_end_producer( context
, name
);
901 else if ( strcmp( name
, "filter" ) == 0 )
902 on_end_filter( context
, name
);
903 else if ( strcmp( name
, "transition" ) == 0 )
904 on_end_transition( context
, name
);
907 static void on_characters( void *ctx
, const xmlChar
*ch
, int len
)
909 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
910 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
911 char *value
= calloc( len
+ 1, 1 );
914 strncpy( value
, (const char*) ch
, len
);
916 if ( context
->stack_node_size
> 0 )
917 xmlNodeAddContent( context
->stack_node
[ context
->stack_node_size
- 1 ], ( xmlChar
* )value
);
919 else if ( context
->property
!= NULL
&& context
->producer_properties
!= NULL
)
920 mlt_properties_set( context
->producer_properties
, context
->property
, value
);
925 // The following 3 facilitate entity substitution in the SAX parser
926 static void on_internal_subset( void *ctx
, const xmlChar
* name
,
927 const xmlChar
* publicId
, const xmlChar
* systemId
)
929 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
930 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
932 xmlCreateIntSubset( context
->entity_doc
, name
, publicId
, systemId
);
935 static void on_entity_declaration( void *ctx
, const xmlChar
* name
, int type
,
936 const xmlChar
* publicId
, const xmlChar
* systemId
, xmlChar
* content
)
938 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
939 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
941 xmlAddDocEntity( context
->entity_doc
, name
, type
, publicId
, systemId
, content
);
944 xmlEntityPtr
on_get_entity( void *ctx
, const xmlChar
* name
)
946 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
947 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
949 return xmlGetDocEntity( context
->entity_doc
, name
);
953 mlt_producer
producer_westley_init( char *filename
)
955 xmlSAXHandler
*sax
= calloc( 1, sizeof( xmlSAXHandler
) );
956 struct deserialise_context_s
*context
= calloc( 1, sizeof( struct deserialise_context_s
) );
957 mlt_properties properties
= NULL
;
959 struct _xmlParserCtxt
*xmlcontext
;
962 context
->producer_map
= mlt_properties_new();
963 context
->destructors
= mlt_properties_new();
965 // We need to track the number of registered filters
966 mlt_properties_set_int( context
->destructors
, "registered", 0 );
968 // We need the directory prefix which was used for the westley
969 mlt_properties_set( context
->producer_map
, "_root", "" );
970 if ( strchr( filename
, '/' ) )
973 mlt_properties_set( context
->producer_map
, "_root", filename
);
974 root
= mlt_properties_get( context
->producer_map
, "_root" );
975 *( strrchr( root
, '/' ) + 1 ) = '\0';
978 // Setup SAX callbacks
979 sax
->startElement
= on_start_element
;
980 sax
->endElement
= on_end_element
;
981 sax
->characters
= on_characters
;
982 sax
->cdataBlock
= on_characters
;
983 sax
->internalSubset
= on_internal_subset
;
984 sax
->entityDecl
= on_entity_declaration
;
985 sax
->getEntity
= on_get_entity
;
987 // Setup libxml2 SAX parsing
989 xmlSubstituteEntitiesDefault( 1 );
990 // This is used to facilitate entity substitution in the SAX parser
991 context
->entity_doc
= xmlNewDoc( "1.0" );
992 xmlcontext
= xmlCreateFileParserCtxt( filename
);
993 xmlcontext
->sax
= sax
;
994 xmlcontext
->_private
= ( void* )context
;
997 xmlParseDocument( xmlcontext
);
998 well_formed
= xmlcontext
->wellFormed
;
1000 // Cleanup after parsing
1001 xmlFreeDoc( context
->entity_doc
);
1003 xmlcontext
->sax
= NULL
;
1004 xmlcontext
->_private
= NULL
;
1005 xmlFreeParserCtxt( xmlcontext
);
1006 xmlMemoryDump( ); // for debugging
1008 // Get the last producer on the stack
1009 mlt_service service
= context_pop_service( context
);
1010 if ( well_formed
&& service
!= NULL
)
1012 // Verify it is a producer service (mlt_type="mlt_producer")
1013 // (producer, playlist, multitrack)
1014 char *type
= mlt_properties_get( mlt_service_properties( service
), "mlt_type" );
1015 if ( type
== NULL
|| ( strcmp( type
, "mlt_producer" ) != 0 ) )
1019 if ( well_formed
&& service
!= NULL
)
1021 // Need the complete producer list for various reasons
1022 properties
= context
->destructors
;
1024 // Now make sure we don't have a reference to the service in the properties
1025 for ( i
= mlt_properties_count( properties
) - 1; i
>= 1; i
-- )
1027 char *name
= mlt_properties_get_name( properties
, i
);
1028 if ( mlt_properties_get_data( properties
, name
, NULL
) == service
)
1030 mlt_properties_set_data( properties
, name
, service
, 0, NULL
, NULL
);
1035 // We are done referencing destructor property list
1036 // Set this var to service properties for convenience
1037 properties
= mlt_service_properties( service
);
1039 // make the returned service destroy the connected services
1040 mlt_properties_set_data( properties
, "__destructors__", context
->destructors
, 0, (mlt_destructor
) mlt_properties_close
, NULL
);
1042 // Now assign additional properties
1043 mlt_properties_set( properties
, "resource", filename
);
1045 // This tells consumer_westley not to deep copy
1046 mlt_properties_set( properties
, "westley", "was here" );
1050 // Return null if not well formed
1054 mlt_properties_close( context
->destructors
);
1057 free( context
->stack_service
);
1058 mlt_properties_close( context
->producer_map
);
1061 return MLT_PRODUCER( service
);