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 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
229 mlt_properties_set( mlt_service_properties( service
), (char*) atts
[0], (char*) atts
[1] );
231 // Look for the producer attribute
232 if ( strcmp( atts
[ 0 ], "producer" ) == 0 )
234 if ( mlt_properties_get_data( context
->producer_map
, (char*) atts
[1], NULL
) != NULL
)
235 // Push the referenced producer onto the stack
236 context_push_service( context
, MLT_SERVICE( mlt_properties_get_data( context
->producer_map
, (char*) atts
[1], NULL
) ) );
241 static void on_start_filter( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
243 mlt_properties properties
= context
->producer_properties
= mlt_properties_new();
245 // Set the properties
246 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
247 mlt_properties_set( properties
, (char*) atts
[0], (char*) atts
[1] );
250 static void on_start_transition( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
252 mlt_properties properties
= context
->producer_properties
= mlt_properties_new();
254 // Set the properties
255 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
256 mlt_properties_set( properties
, (char*) atts
[0], (char*) atts
[1] );
259 static void on_start_property( deserialise_context context
, const xmlChar
*name
, const xmlChar
**atts
)
261 mlt_properties properties
= context
->producer_properties
;
264 if ( properties
== NULL
)
267 // Set the properties
268 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
270 if ( strcmp( atts
[ 0 ], "name" ) == 0 )
272 context
->property
= strdup( atts
[ 1 ] );
274 else if ( strcmp( atts
[ 0 ], "value" ) == 0 )
276 value
= (char*) atts
[ 1 ];
280 if ( context
->property
!= NULL
&& value
!= NULL
)
281 mlt_properties_set( properties
, context
->property
, value
);
283 // Tell parser to collect any further nodes for serialisation
284 context
->is_value
= 1;
288 /** This function adds a producer to a playlist or multitrack when
289 there is no entry or track element.
292 static int add_producer( deserialise_context context
, mlt_service service
, mlt_position in
, mlt_position out
)
294 // Get the parent producer
295 mlt_service producer
= context_pop_service( context
);
296 if ( producer
!= NULL
)
298 char *resource
= mlt_properties_get( mlt_service_properties( producer
), "resource" );
300 // Put the parent producer back
301 context_push_service( context
, producer
);
303 // If the parent producer is a multitrack or playlist (not a track or entry)
304 if ( resource
&& ( strcmp( resource
, "<playlist>" ) == 0 ||
305 strcmp( resource
, "<multitrack>" ) == 0 ) )
307 if ( strcmp( resource
, "<playlist>" ) == 0 )
309 // Append this producer to the playlist
310 mlt_playlist_append_io( MLT_PLAYLIST( producer
),
311 MLT_PRODUCER( service
), in
, out
);
315 // Set this producer on the multitrack
316 mlt_multitrack_connect( MLT_MULTITRACK( producer
),
317 MLT_PRODUCER( service
),
318 mlt_multitrack_count( MLT_MULTITRACK( producer
) ) );
320 // Normally, the enclosing entry or track will pop this service off
321 // In its absence we do not push it on.
328 static void on_end_multitrack( deserialise_context context
, const xmlChar
*name
)
330 // Get the multitrack from the stack
331 mlt_service producer
= context_pop_service( context
);
332 if ( producer
== NULL
)
335 // Get the tractor from the stack
336 mlt_service service
= context_pop_service( context
);
338 // Create a tractor if one does not exist
339 char *resource
= NULL
;
340 if ( service
!= NULL
)
341 resource
= mlt_properties_get( mlt_service_properties( service
), "resource" );
342 if ( service
== NULL
|| resource
== NULL
|| strcmp( resource
, "<tractor>" ) )
344 // Put the anonymous service back onto the stack!
345 context_push_service( context
, service
);
347 service
= mlt_tractor_service( mlt_tractor_init() );
348 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_tractor_close
);
350 // Inherit the producer's properties
351 mlt_properties properties
= mlt_service_properties( service
);
352 mlt_properties_set_position( properties
, "length", mlt_producer_get_out( MLT_PRODUCER( producer
) ) + 1 );
353 mlt_producer_set_in_and_out( MLT_PRODUCER( service
), 0, mlt_producer_get_out( MLT_PRODUCER( producer
) ) );
354 mlt_properties_set_double( properties
, "fps", mlt_producer_get_fps( MLT_PRODUCER( producer
) ) );
357 // Connect the tractor to the multitrack
358 mlt_tractor_connect( MLT_TRACTOR( service
), producer
);
359 mlt_properties_set_data( mlt_service_properties( service
), "multitrack",
360 MLT_MULTITRACK( producer
), 0, NULL
, NULL
);
362 // See if the producer should be added to a playlist or multitrack
363 add_producer( context
, service
, 0, mlt_producer_get_out( MLT_PRODUCER( producer
) ) );
365 // Always push the multitrack back onto the stack for filters and transitions
366 context_push_service( context
, producer
);
368 // Always push the tractor back onto the stack for filters and transitions
369 context_push_service( context
, service
);
372 static void on_end_playlist( deserialise_context context
, const xmlChar
*name
)
374 // Get the playlist from the stack
375 mlt_service producer
= context_pop_service( context
);
376 mlt_properties properties
= mlt_service_properties( producer
);
378 mlt_position in
= mlt_properties_get_position( properties
, "in" );
381 if ( mlt_properties_get( properties
, "_westley.out" ) != NULL
)
382 out
= mlt_properties_get_position( properties
, "_westley.out" );
384 out
= mlt_properties_get_position( properties
, "length" ) - 1;
386 if ( mlt_properties_get_position( properties
, "length" ) < out
)
387 mlt_properties_set_position( properties
, "length", out
+ 1 );
389 mlt_producer_set_in_and_out( MLT_PRODUCER( producer
), in
, out
);
391 // See if the playlist should be added to a playlist or multitrack
392 if ( add_producer( context
, producer
, in
, out
) == 0 )
394 // Otherwise, push the playlist back onto the stack
395 context_push_service( context
, producer
);
398 static void on_end_track( deserialise_context context
, const xmlChar
*name
)
400 // Get the producer from the stack
401 mlt_service producer
= context_pop_service( context
);
402 if ( producer
== NULL
)
405 // See if the producer is a tractor
406 char *resource
= mlt_properties_get( mlt_service_properties( producer
), "resource" );
407 if ( resource
&& strcmp( resource
, "<tractor>" ) == 0 )
408 // If so chomp its producer
409 context_pop_service( context
);
411 // Get the dummy track service from the stack
412 mlt_service track
= context_pop_service( context
);
415 context_push_service( context
, producer
);
419 // Get the multitrack from the stack
420 mlt_service service
= context_pop_service( context
);
421 if ( service
== NULL
)
423 context_push_service( context
, producer
);
427 // Set the track on the multitrack
428 mlt_multitrack_connect( MLT_MULTITRACK( service
),
429 MLT_PRODUCER( producer
),
430 mlt_multitrack_count( MLT_MULTITRACK( service
) ) );
432 // Set producer i/o if specified
433 if ( mlt_properties_get( mlt_service_properties( track
), "in" ) != NULL
||
434 mlt_properties_get( mlt_service_properties( track
), "out" ) != NULL
)
436 mlt_producer_set_in_and_out( MLT_PRODUCER( producer
),
437 mlt_properties_get_position( mlt_service_properties( track
), "in" ),
438 mlt_properties_get_position( mlt_service_properties( track
), "out" ) );
441 // Push the multitrack back onto the stack
442 context_push_service( context
, service
);
444 mlt_service_close( track
);
447 static void on_end_entry( deserialise_context context
, const xmlChar
*name
)
449 // Get the producer from the stack
450 mlt_service producer
= context_pop_service( context
);
451 if ( producer
== NULL
)
454 // See if the producer is a tractor
455 char *resource
= mlt_properties_get( mlt_service_properties( producer
), "resource" );
456 if ( resource
&& strcmp( resource
, "<tractor>" ) == 0 )
457 // If so chomp its producer
458 context_pop_service( context
);
460 // Get the dummy entry service from the stack
461 mlt_service entry
= context_pop_service( context
);
464 context_push_service( context
, producer
);
468 // Get the playlist from the stack
469 mlt_service service
= context_pop_service( context
);
470 if ( service
== NULL
)
472 context_push_service( context
, producer
);
476 // Append the producer to the playlist
477 if ( mlt_properties_get( mlt_service_properties( entry
), "in" ) != NULL
||
478 mlt_properties_get( mlt_service_properties( entry
), "out" ) != NULL
)
480 mlt_playlist_append_io( MLT_PLAYLIST( service
),
481 MLT_PRODUCER( producer
),
482 mlt_properties_get_position( mlt_service_properties( entry
), "in" ),
483 mlt_properties_get_position( mlt_service_properties( entry
), "out" ) );
487 mlt_playlist_append( MLT_PLAYLIST( service
), MLT_PRODUCER( producer
) );
490 // Push the playlist back onto the stack
491 context_push_service( context
, service
);
493 mlt_service_close( entry
);
496 static void on_end_tractor( deserialise_context context
, const xmlChar
*name
)
499 mlt_service tractor
= context_pop_service( context
);
500 if ( tractor
== NULL
)
503 // Get the tractor's multitrack
504 mlt_producer multitrack
= mlt_properties_get_data( mlt_service_properties( tractor
), "multitrack", NULL
);
505 if ( multitrack
!= NULL
)
507 // Inherit the producer's properties
508 mlt_properties properties
= mlt_producer_properties( MLT_PRODUCER( tractor
) );
509 mlt_properties_set_position( properties
, "length", mlt_producer_get_out( multitrack
) + 1 );
510 mlt_producer_set_in_and_out( multitrack
, 0, mlt_producer_get_out( multitrack
) );
511 mlt_properties_set_double( properties
, "fps", mlt_producer_get_fps( multitrack
) );
514 // See if the tractor should be added to a playlist or multitrack
515 if ( add_producer( context
, tractor
, 0, mlt_producer_get_out( MLT_PRODUCER( tractor
) ) ) == 0 )
517 // Otherwise, push the tractor back onto the stack
518 context_push_service( context
, tractor
);
521 static void on_end_property( deserialise_context context
, const xmlChar
*name
)
523 // Tell parser to stop building a tree
524 context
->is_value
= 0;
526 // See if there is a xml tree for the value
527 if ( context
->property
!= NULL
&& context
->value_doc
!= NULL
)
532 // Serialise the tree to get value
533 xmlDocDumpMemory( context
->value_doc
, &value
, &size
);
534 mlt_properties_set( context
->producer_properties
, context
->property
, value
);
536 xmlFreeDoc( context
->value_doc
);
537 context
->value_doc
= NULL
;
540 // Close this property handling
541 free( context
->property
);
542 context
->property
= NULL
;
545 static void on_end_producer( deserialise_context context
, const xmlChar
*name
)
547 mlt_properties properties
= context
->producer_properties
;
548 mlt_service service
= NULL
;
550 if ( properties
== NULL
)
553 char *resource
= mlt_properties_get( properties
, "resource" );
554 // Let Kino-SMIL src be a synonym for resource
555 if ( resource
== NULL
)
556 resource
= mlt_properties_get( properties
, "src" );
558 // Instantiate the producer
559 if ( mlt_properties_get( properties
, "mlt_service" ) != NULL
)
561 service
= MLT_SERVICE( mlt_factory_producer( "fezzik", mlt_properties_get( properties
, "mlt_service" ) ) );
563 if ( service
== NULL
&& resource
!= NULL
)
565 char *root
= mlt_properties_get( context
->producer_map
, "_root" );
566 char *full_resource
= malloc( strlen( root
) + strlen( resource
) + 1 );
567 if ( resource
[ 0 ] != '/' )
569 strcpy( full_resource
, root
);
570 strcat( full_resource
, resource
);
574 strcpy( full_resource
, resource
);
576 service
= MLT_SERVICE( mlt_factory_producer( "fezzik", full_resource
) );
577 free( full_resource
);
579 if ( service
== NULL
)
581 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_producer_close
);
583 // Add the producer to the producer map
584 if ( mlt_properties_get( properties
, "id" ) != NULL
)
585 mlt_properties_set_data( context
->producer_map
, mlt_properties_get( properties
, "id" ), service
, 0, NULL
, NULL
);
587 // Handle in/out properties separately
588 mlt_position in
= -1;
589 mlt_position out
= -1;
592 if ( mlt_properties_get( properties
, "in" ) != NULL
)
593 in
= mlt_properties_get_position( properties
, "in" );
594 // Let Kino-SMIL clipBegin be a synonym for in
595 if ( mlt_properties_get( properties
, "clipBegin" ) != NULL
)
596 in
= mlt_properties_get_position( properties
, "clipBegin" );
598 if ( mlt_properties_get( properties
, "out" ) != NULL
)
599 out
= mlt_properties_get_position( properties
, "out" );
600 // Let Kino-SMIL clipEnd be a synonym for out
601 if ( mlt_properties_get( properties
, "clipEnd" ) != NULL
)
602 out
= mlt_properties_get_position( properties
, "clipEnd" );
605 mlt_properties_set( properties
, "in", NULL
);
606 mlt_properties_set( properties
, "out", NULL
);
608 mlt_properties_inherit( mlt_service_properties( service
), properties
);
609 mlt_properties_close( properties
);
610 context
->producer_properties
= NULL
;
612 // See if the producer should be added to a playlist or multitrack
613 if ( add_producer( context
, service
, in
, out
) == 0 )
615 // Otherwise, set in and out on...
616 if ( in
!= -1 || out
!= -1 )
618 // Get the parent service
619 mlt_service parent
= context_pop_service( context
);
620 if ( parent
!= NULL
)
622 // Get the parent properties
623 properties
= mlt_service_properties( parent
);
625 char *resource
= mlt_properties_get( properties
, "resource" );
627 // Put the parent producer back
628 context_push_service( context
, parent
);
630 // If the parent is a track or entry
631 if ( resource
&& ( strcmp( resource
, "<entry>" ) == 0 ) )
633 mlt_properties_set_position( properties
, "in", in
);
634 mlt_properties_set_position( properties
, "out", out
);
638 // Otherwise, set in and out on producer directly
639 mlt_producer_set_in_and_out( MLT_PRODUCER( service
), in
, out
);
644 // Otherwise, set in and out on producer directly
645 mlt_producer_set_in_and_out( MLT_PRODUCER( service
), in
, out
);
649 // Push the producer onto the stack
650 context_push_service( context
, service
);
654 static void on_end_filter( deserialise_context context
, const xmlChar
*name
)
656 mlt_properties properties
= context
->producer_properties
;
657 if ( properties
== NULL
)
663 mlt_service tractor
= NULL
;
665 // Get the producer from the stack
666 mlt_service producer
= context_pop_service( context
);
667 if ( producer
== NULL
)
670 // See if the producer is a tractor
671 char *resource
= mlt_properties_get( mlt_service_properties( producer
), "resource" );
672 if ( resource
!= NULL
&& strcmp( resource
, "<tractor>" ) == 0 )
674 // If so, then get the next producer
676 producer
= context_pop_service( context
);
679 //fprintf( stderr, "connecting filter to %s\n", mlt_properties_get( mlt_service_properties( producer ), "resource" ) );
682 mlt_service service
= MLT_SERVICE( mlt_factory_filter( mlt_properties_get( properties
, "mlt_service" ), NULL
) );
683 if ( service
== NULL
)
685 context_push_service( context
, producer
);
688 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_filter_close
);
690 // Connect the filter to the producer
691 mlt_filter_connect( MLT_FILTER( service
), producer
,
692 mlt_properties_get_int( properties
, "track" ) );
694 // Set in and out from producer if non existant
695 if ( mlt_properties_get( properties
, "in" ) == NULL
)
696 mlt_properties_set_position( properties
, "in", mlt_producer_get_in( MLT_PRODUCER( producer
) ) );
697 if ( mlt_properties_get( properties
, "out" ) == NULL
)
698 mlt_properties_set_position( properties
, "out", mlt_producer_get_out( MLT_PRODUCER( producer
) ) );
700 // Propogate the properties
701 mlt_properties_inherit( mlt_service_properties( service
), properties
);
702 mlt_properties_close( properties
);
703 context
->producer_properties
= NULL
;
704 properties
= mlt_service_properties( service
);
706 // Set in and out again due to inheritance
707 mlt_filter_set_in_and_out( MLT_FILTER( service
),
708 mlt_properties_get_position( properties
, "in" ),
709 mlt_properties_get_position( properties
, "out" ) );
711 // If a producer alias is in the producer_map, get it
712 snprintf( key
, 10, "%p", producer
);
713 if ( mlt_properties_get_data( context
->producer_map
, key
, NULL
) != NULL
)
714 producer
= mlt_properties_get_data( context
->producer_map
, key
, NULL
);
716 // Put the producer in the producer map
717 id
= mlt_properties_get( mlt_service_properties( producer
), "id" );
719 mlt_properties_set_data( context
->producer_map
, id
, service
, 0, NULL
, NULL
);
721 // For filter chain support, add an alias to the producer map
722 snprintf( key
, 10, "%p", service
);
723 mlt_properties_set_data( context
->producer_map
, key
, producer
, 0, NULL
, NULL
);
725 // Push the filter onto the stack
726 context_push_service( context
, service
);
728 if ( tractor
!= NULL
)
730 // Connect the tractor to the filter
731 mlt_tractor_connect( MLT_TRACTOR( tractor
), service
);
733 // Push the tractor back onto the stack
734 context_push_service( context
, tractor
);
738 static void on_end_transition( deserialise_context context
, const xmlChar
*name
)
740 mlt_service tractor
= NULL
;
741 mlt_properties properties
= context
->producer_properties
;
742 if ( properties
== NULL
)
745 // Get the producer from the stack
746 mlt_service producer
= context_pop_service( context
);
747 if ( producer
== NULL
)
750 // See if the producer is a tractor
751 char *resource
= mlt_properties_get( mlt_service_properties( producer
), "resource" );
752 if ( resource
!= NULL
&& strcmp( resource
, "<tractor>" ) == 0 )
754 // If so, then get the next producer
756 producer
= context_pop_service( context
);
759 // Create the transition
760 mlt_service service
= MLT_SERVICE( mlt_factory_transition( mlt_properties_get( properties
, "mlt_service" ), NULL
) );
761 if ( service
== NULL
)
763 context_push_service( context
, producer
);
766 track_service( context
->destructors
, service
, (mlt_destructor
) mlt_transition_close
);
768 // Propogate the properties
769 mlt_properties_inherit( mlt_service_properties( service
), properties
);
770 mlt_properties_close( properties
);
771 context
->producer_properties
= NULL
;
772 properties
= mlt_service_properties( service
);
774 // Set in and out again due to inheritance
775 mlt_transition_set_in_and_out( MLT_TRANSITION( service
),
776 mlt_properties_get_position( properties
, "in" ),
777 mlt_properties_get_position( properties
, "out" ) );
779 // Connect the transition to the producer
780 mlt_transition_connect( MLT_TRANSITION( service
), producer
,
781 mlt_properties_get_int( properties
, "a_track" ),
782 mlt_properties_get_int( properties
, "b_track" ) );
784 // Push the transition onto the stack
785 context_push_service( context
, service
);
787 if ( tractor
!= NULL
)
789 // Connect the tractor to the transition
790 mlt_tractor_connect( MLT_TRACTOR( tractor
), service
);
792 // Push the tractor back onto the stack
793 context_push_service( context
, tractor
);
797 static void on_start_element( void *ctx
, const xmlChar
*name
, const xmlChar
**atts
)
799 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
800 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
802 // Build a tree from nodes within a property value
803 if ( context
->is_value
== 1 )
805 xmlNodePtr node
= xmlNewNode( NULL
, name
);
807 if ( context
->value_doc
== NULL
)
810 context
->value_doc
= xmlNewDoc( "1.0" );
811 xmlDocSetRootElement( context
->value_doc
, node
);
815 // Append child to tree
816 xmlAddChild( context
->stack_node
[ context
->stack_node_size
- 1 ], node
);
818 context_push_node( context
, node
);
820 // Set the attributes
821 for ( ; atts
!= NULL
&& *atts
!= NULL
; atts
+= 2 )
822 xmlSetProp( node
, atts
[ 0 ], atts
[ 1 ] );
824 else if ( strcmp( name
, "tractor" ) == 0 )
825 on_start_tractor( context
, name
, atts
);
826 else if ( strcmp( name
, "multitrack" ) == 0 )
827 on_start_multitrack( context
, name
, atts
);
828 else if ( strcmp( name
, "playlist" ) == 0 || strcmp( name
, "seq" ) == 0 || strcmp( name
, "smil" ) == 0 )
829 on_start_playlist( context
, name
, atts
);
830 else if ( strcmp( name
, "producer" ) == 0 || strcmp( name
, "video" ) == 0 )
831 on_start_producer( context
, name
, atts
);
832 else if ( strcmp( name
, "blank" ) == 0 )
833 on_start_blank( context
, name
, atts
);
834 else if ( strcmp( name
, "entry" ) == 0 || strcmp( name
, "track" ) == 0 )
835 on_start_entry_track( context
, name
, atts
);
836 else if ( strcmp( name
, "filter" ) == 0 )
837 on_start_filter( context
, name
, atts
);
838 else if ( strcmp( name
, "transition" ) == 0 )
839 on_start_transition( context
, name
, atts
);
840 else if ( strcmp( name
, "property" ) == 0 )
841 on_start_property( context
, name
, atts
);
844 static void on_end_element( void *ctx
, const xmlChar
*name
)
846 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
847 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
849 if ( context
->is_value
== 1 && strcmp( name
, "property" ) != 0 )
850 context_pop_node( context
);
851 else if ( strcmp( name
, "multitrack" ) == 0 )
852 on_end_multitrack( context
, name
);
853 else if ( strcmp( name
, "playlist" ) == 0 || strcmp( name
, "seq" ) == 0 || strcmp( name
, "smil" ) == 0 )
854 on_end_playlist( context
, name
);
855 else if ( strcmp( name
, "track" ) == 0 )
856 on_end_track( context
, name
);
857 else if ( strcmp( name
, "entry" ) == 0 )
858 on_end_entry( context
, name
);
859 else if ( strcmp( name
, "tractor" ) == 0 )
860 on_end_tractor( context
, name
);
861 else if ( strcmp( name
, "property" ) == 0 )
862 on_end_property( context
, name
);
863 else if ( strcmp( name
, "producer" ) == 0 || strcmp( name
, "video" ) == 0 )
864 on_end_producer( context
, name
);
865 else if ( strcmp( name
, "filter" ) == 0 )
866 on_end_filter( context
, name
);
867 else if ( strcmp( name
, "transition" ) == 0 )
868 on_end_transition( context
, name
);
871 static void on_characters( void *ctx
, const xmlChar
*ch
, int len
)
873 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
874 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
875 char *value
= calloc( len
+ 1, 1 );
878 strncpy( value
, (const char*) ch
, len
);
880 if ( context
->stack_node_size
> 0 )
881 xmlNodeAddContent( context
->stack_node
[ context
->stack_node_size
- 1 ], ( xmlChar
* )value
);
883 else if ( context
->property
!= NULL
&& context
->producer_properties
!= NULL
)
884 mlt_properties_set( context
->producer_properties
, context
->property
, value
);
889 // The following 3 facilitate entity substitution in the SAX parser
890 static void on_internal_subset( void *ctx
, const xmlChar
* name
,
891 const xmlChar
* publicId
, const xmlChar
* systemId
)
893 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
894 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
896 xmlCreateIntSubset( context
->entity_doc
, name
, publicId
, systemId
);
899 static void on_entity_declaration( void *ctx
, const xmlChar
* name
, int type
,
900 const xmlChar
* publicId
, const xmlChar
* systemId
, xmlChar
* content
)
902 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
903 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
905 xmlAddDocEntity( context
->entity_doc
, name
, type
, publicId
, systemId
, content
);
908 xmlEntityPtr
on_get_entity( void *ctx
, const xmlChar
* name
)
910 struct _xmlParserCtxt
*xmlcontext
= ( struct _xmlParserCtxt
* )ctx
;
911 deserialise_context context
= ( deserialise_context
)( xmlcontext
->_private
);
913 return xmlGetDocEntity( context
->entity_doc
, name
);
917 mlt_producer
producer_westley_init( char *filename
)
919 xmlSAXHandler
*sax
= calloc( 1, sizeof( xmlSAXHandler
) );
920 struct deserialise_context_s
*context
= calloc( 1, sizeof( struct deserialise_context_s
) );
921 mlt_properties properties
= NULL
;
923 struct _xmlParserCtxt
*xmlcontext
;
926 context
->producer_map
= mlt_properties_new();
927 context
->destructors
= mlt_properties_new();
929 // We need to track the number of registered filters
930 mlt_properties_set_int( context
->destructors
, "registered", 0 );
932 // We need the directory prefix which was used for the westley
933 mlt_properties_set( context
->producer_map
, "_root", "" );
934 if ( strchr( filename
, '/' ) )
937 mlt_properties_set( context
->producer_map
, "_root", filename
);
938 root
= mlt_properties_get( context
->producer_map
, "_root" );
939 *( strrchr( root
, '/' ) + 1 ) = '\0';
942 // Setup SAX callbacks
943 sax
->startElement
= on_start_element
;
944 sax
->endElement
= on_end_element
;
945 sax
->characters
= on_characters
;
946 sax
->cdataBlock
= on_characters
;
947 sax
->internalSubset
= on_internal_subset
;
948 sax
->entityDecl
= on_entity_declaration
;
949 sax
->getEntity
= on_get_entity
;
951 // Setup libxml2 SAX parsing
953 xmlSubstituteEntitiesDefault( 1 );
954 // This is used to facilitate entity substitution in the SAX parser
955 context
->entity_doc
= xmlNewDoc( "1.0" );
956 xmlcontext
= xmlCreateFileParserCtxt( filename
);
957 xmlcontext
->sax
= sax
;
958 xmlcontext
->_private
= ( void* )context
;
961 xmlParseDocument( xmlcontext
);
962 well_formed
= xmlcontext
->wellFormed
;
964 // Cleanup after parsing
965 xmlFreeDoc( context
->entity_doc
);
967 xmlcontext
->sax
= NULL
;
968 xmlcontext
->_private
= NULL
;
969 xmlFreeParserCtxt( xmlcontext
);
970 xmlMemoryDump( ); // for debugging
972 // Get the last producer on the stack
973 mlt_service service
= context_pop_service( context
);
974 if ( well_formed
&& service
!= NULL
)
976 // Verify it is a producer service (mlt_type="mlt_producer")
977 // (producer, playlist, multitrack)
978 char *type
= mlt_properties_get( mlt_service_properties( service
), "mlt_type" );
979 if ( type
== NULL
|| ( strcmp( type
, "mlt_producer" ) != 0 ) )
983 if ( well_formed
&& service
!= NULL
)
985 // Need the complete producer list for various reasons
986 properties
= context
->destructors
;
988 // Now make sure we don't have a reference to the service in the properties
989 for ( i
= mlt_properties_count( properties
) - 1; i
>= 1; i
-- )
991 char *name
= mlt_properties_get_name( properties
, i
);
992 if ( mlt_properties_get_data( properties
, name
, NULL
) == service
)
994 mlt_properties_set_data( properties
, name
, service
, 0, NULL
, NULL
);
999 // We are done referencing destructor property list
1000 // Set this var to service properties for convenience
1001 properties
= mlt_service_properties( service
);
1003 // make the returned service destroy the connected services
1004 mlt_properties_set_data( properties
, "__destructors__", context
->destructors
, 0, (mlt_destructor
) mlt_properties_close
, NULL
);
1006 // Now assign additional properties
1007 mlt_properties_set( properties
, "resource", filename
);
1009 // This tells consumer_westley not to deep copy
1010 mlt_properties_set( properties
, "westley", "was here" );
1014 // Return null if not well formed
1018 mlt_properties_close( context
->destructors
);
1021 free( context
->stack_service
);
1022 mlt_properties_close( context
->producer_map
);
1025 return MLT_PRODUCER( service
);