]> git.sesse.net Git - mlt/blob - src/modules/xml/consumer_xml.c
fix possible null pointer with strdup()
[mlt] / src / modules / xml / consumer_xml.c
1 /*
2  * consumer_xml.c -- a libxml2 serialiser of mlt service networks
3  * Copyright (C) 2003-2009 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 #include <framework/mlt.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <locale.h>
27 #include <libxml/tree.h>
28 #include <pthread.h>
29 #include <wchar.h>
30
31 #define ID_SIZE 128
32 #define TIME_PROPERTY "_consumer_xml"
33
34 #define _x (const xmlChar*)
35 #define _s (const char*)
36
37 // This maintains counters for adding ids to elements
38 struct serialise_context_s
39 {
40         mlt_properties id_map;
41         int producer_count;
42         int multitrack_count;
43         int playlist_count;
44         int tractor_count;
45         int filter_count;
46         int transition_count;
47         int pass;
48         mlt_properties hide_map;
49         char *root;
50         char *store;
51         int no_meta;
52         mlt_profile profile;
53         mlt_time_format time_format;
54 };
55 typedef struct serialise_context_s* serialise_context;
56
57 /** Forward references to static functions.
58 */
59
60 static int consumer_start( mlt_consumer parent );
61 static int consumer_stop( mlt_consumer parent );
62 static int consumer_is_stopped( mlt_consumer this );
63 static void *consumer_thread( void *arg );
64 static void serialise_service( serialise_context context, mlt_service service, xmlNode *node );
65
66 static char* filter_restricted( const char *in )
67 {
68         if ( !in ) return NULL;
69         size_t n = strlen( in );
70         char *out = calloc( 1, n + 1 );
71         char *p = out;
72         mbstate_t mbs;
73         memset( &mbs, 0, sizeof(mbs) );
74         while ( *in )
75         {
76                 wchar_t w;
77                 size_t c = mbrtowc( &w, in, n, &mbs );
78                 if ( c <= 0 || c > n ) break;
79                 n -= c;
80                 in += c;
81                 if ( w == 0x9 || w == 0xA || w == 0xD ||
82                                 ( w >= 0x20 && w <= 0xD7FF ) ||
83                                 ( w >= 0xE000 && w <= 0xFFFD ) ||
84                                 ( w >= 0x10000 && w <= 0x10FFFF ) )
85                 {
86                         mbstate_t ps;
87                         memset( &ps, 0, sizeof(ps) );
88                         c = wcrtomb( p, w, &ps );
89                         if ( c > 0 )
90                                 p += c;
91                 }
92         }
93         return out;
94 }
95
96 typedef enum
97 {
98         xml_existing,
99         xml_producer,
100         xml_multitrack,
101         xml_playlist,
102         xml_tractor,
103         xml_filter,
104         xml_transition
105 }
106 xml_type;
107
108 /** Create or retrieve an id associated to this service.
109 */
110
111 static char *xml_get_id( serialise_context context, mlt_service service, xml_type type )
112 {
113         char *id = NULL;
114         int i = 0;
115         mlt_properties map = context->id_map;
116
117         // Search the map for the service
118         for ( i = 0; i < mlt_properties_count( map ); i ++ )
119                 if ( mlt_properties_get_data_at( map, i, NULL ) == service )
120                         break;
121
122         // If the service is not in the map, and the type indicates a new id is needed...
123         if ( i >= mlt_properties_count( map ) && type != xml_existing )
124         {
125                 // Attempt to reuse existing id
126                 id = mlt_properties_get( MLT_SERVICE_PROPERTIES( service ), "id" );
127
128                 // If no id, or the id is used in the map (for another service), then
129                 // create a new one.
130                 if ( id == NULL || mlt_properties_get_data( map, id, NULL ) != NULL )
131                 {
132                         char temp[ ID_SIZE ];
133                         do
134                         {
135                                 switch( type )
136                                 {
137                                         case xml_producer:
138                                                 sprintf( temp, "producer%d", context->producer_count ++ );
139                                                 break;
140                                         case xml_multitrack:
141                                                 sprintf( temp, "multitrack%d", context->multitrack_count ++ );
142                                                 break;
143                                         case xml_playlist:
144                                                 sprintf( temp, "playlist%d", context->playlist_count ++ );
145                                                 break;
146                                         case xml_tractor:
147                                                 sprintf( temp, "tractor%d", context->tractor_count ++ );
148                                                 break;
149                                         case xml_filter:
150                                                 sprintf( temp, "filter%d", context->filter_count ++ );
151                                                 break;
152                                         case xml_transition:
153                                                 sprintf( temp, "transition%d", context->transition_count ++ );
154                                                 break;
155                                         case xml_existing:
156                                                 // Never gets here
157                                                 break;
158                                 }
159                         }
160                         while( mlt_properties_get_data( map, temp, NULL ) != NULL );
161
162                         // Set the data at the generated name
163                         mlt_properties_set_data( map, temp, service, 0, NULL, NULL );
164
165                         // Get the pointer to the name (i is the end of the list)
166                         id = mlt_properties_get_name( map, i );
167                 }
168                 else
169                 {
170                         // Store the existing id in the map
171                         mlt_properties_set_data( map, id, service, 0, NULL, NULL );
172                 }
173         }
174         else if ( type == xml_existing )
175         {
176                 id = mlt_properties_get_name( map, i );
177         }
178
179         return id;
180 }
181
182 /** This is what will be called by the factory - anything can be passed in
183         via the argument, but keep it simple.
184 */
185
186 mlt_consumer consumer_xml_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
187 {
188         // Create the consumer object
189         mlt_consumer this = calloc( 1, sizeof( struct mlt_consumer_s ) );
190
191         // If no malloc'd and consumer init ok
192         if ( this != NULL && mlt_consumer_init( this, NULL, profile ) == 0 )
193         {
194                 // Allow thread to be started/stopped
195                 this->start = consumer_start;
196                 this->stop = consumer_stop;
197                 this->is_stopped = consumer_is_stopped;
198
199                 mlt_properties_set( MLT_CONSUMER_PROPERTIES( this ), "resource", arg );
200                 mlt_properties_set_int( MLT_CONSUMER_PROPERTIES( this ), "real_time", -1 );
201                 mlt_properties_set_int( MLT_CONSUMER_PROPERTIES( this ), "prefill", 1 );
202                 mlt_properties_set_int( MLT_CONSUMER_PROPERTIES( this ), "terminate_on_pause", 1 );
203
204                 // Return the consumer produced
205                 return this;
206         }
207
208         // malloc or consumer init failed
209         free( this );
210
211         // Indicate failure
212         return NULL;
213 }
214
215 static void serialise_properties( serialise_context context, mlt_properties properties, xmlNode *node )
216 {
217         int i;
218         xmlNode *p;
219
220         // Enumerate the properties
221         for ( i = 0; i < mlt_properties_count( properties ); i++ )
222         {
223                 char *name = mlt_properties_get_name( properties, i );
224                 if ( name != NULL &&
225                          name[ 0 ] != '_' &&
226                          mlt_properties_get_value( properties, i ) != NULL &&
227                          ( !context->no_meta || strncmp( name, "meta.", 5 ) ) &&
228                          strcmp( name, "mlt" ) &&
229                          strcmp( name, "in" ) &&
230                          strcmp( name, "out" ) &&
231                          strcmp( name, "id" ) &&
232                          strcmp( name, "title" ) &&
233                          strcmp( name, "root" ) &&
234                          strcmp( name, "width" ) &&
235                          strcmp( name, "height" ) )
236                 {
237                         char *value;
238                         fprintf(stderr, "serializing %s=%s (%d)\n", name, mlt_properties_get( properties, name ),
239                                         context->time_format);
240                         if ( !strcmp( name, "length" ) )
241                         {
242                                 char *time = mlt_properties_get_time( properties, name, context->time_format );
243                                 if ( time )
244                                         value = strdup( time );
245                         }
246                         else
247                                 value = filter_restricted( mlt_properties_get_value( properties, i ) );
248                         if ( value )
249                         {
250                                 int rootlen = strlen( context->root );
251                                 // convert absolute path to relative
252                                 if ( rootlen && !strncmp( value, context->root, rootlen ) && value[ rootlen ] == '/' )
253                                         p = xmlNewTextChild( node, NULL, _x("property"), _x(value + rootlen + 1 ) );
254                                 else
255                                         p = xmlNewTextChild( node, NULL, _x("property"), _x(value) );
256                                 xmlNewProp( p, _x("name"), _x(name) );
257                                 free( value );
258                         }
259                 }
260         }
261 }
262
263 static void serialise_store_properties( serialise_context context, mlt_properties properties, xmlNode *node, const char *store )
264 {
265         int i;
266         xmlNode *p;
267
268         // Enumerate the properties
269         for ( i = 0; store != NULL && i < mlt_properties_count( properties ); i++ )
270         {
271                 char *name = mlt_properties_get_name( properties, i );
272                 if ( !strncmp( name, store, strlen( store ) ) )
273                 {
274                         char *value = filter_restricted( mlt_properties_get_value( properties, i ) );
275                         if ( value )
276                         {
277                                 int rootlen = strlen( context->root );
278                                 // convert absolute path to relative
279                                 if ( rootlen && !strncmp( value, context->root, rootlen ) && value[ rootlen ] == '/' )
280                                         p = xmlNewTextChild( node, NULL, _x("property"), _x(value + rootlen + 1) );
281                                 else
282                                         p = xmlNewTextChild( node, NULL, _x("property"), _x(value) );
283                                 xmlNewProp( p, _x("name"), _x(name) );
284                                 free( value );
285                         }
286                 }
287         }
288 }
289
290 static inline void serialise_service_filters( serialise_context context, mlt_service service, xmlNode *node )
291 {
292         int i;
293         xmlNode *p;
294         mlt_filter filter = NULL;
295
296         // Enumerate the filters
297         for ( i = 0; ( filter = mlt_producer_filter( MLT_PRODUCER( service ), i ) ) != NULL; i ++ )
298         {
299                 mlt_properties properties = MLT_FILTER_PROPERTIES( filter );
300                 if ( mlt_properties_get_int( properties, "_loader" ) == 0 )
301                 {
302                         // Get a new id - if already allocated, do nothing
303                         char *id = xml_get_id( context, MLT_FILTER_SERVICE( filter ), xml_filter );
304                         if ( id != NULL )
305                         {
306                                 p = xmlNewChild( node, NULL, _x("filter"), NULL );
307                                 xmlNewProp( p, _x("id"), _x(id) );
308                                 if ( mlt_properties_get( properties, "title" ) )
309                                         xmlNewProp( p, _x("title"), _x(mlt_properties_get( properties, "title" )) );
310                                 if ( mlt_properties_get_position( properties, "in" ) )
311                                         xmlNewProp( p, _x("in"), _x( mlt_properties_get_time( properties, "in", context->time_format ) ) );
312                                 if ( mlt_properties_get_position( properties, "out" ) )
313                                         xmlNewProp( p, _x("out"), _x( mlt_properties_get_time( properties, "out", context->time_format ) ) );
314                                 serialise_properties( context, properties, p );
315                                 serialise_service_filters( context, MLT_FILTER_SERVICE( filter ), p );
316                         }
317                 }
318         }
319 }
320
321 static void serialise_producer( serialise_context context, mlt_service service, xmlNode *node )
322 {
323         xmlNode *child = node;
324         mlt_service parent = MLT_SERVICE( mlt_producer_cut_parent( MLT_PRODUCER( service ) ) );
325
326         if ( context->pass == 0 )
327         {
328                 mlt_properties properties = MLT_SERVICE_PROPERTIES( parent );
329                 // Get a new id - if already allocated, do nothing
330                 char *id = xml_get_id( context, parent, xml_producer );
331                 if ( id == NULL )
332                         return;
333
334                 child = xmlNewChild( node, NULL, _x("producer"), NULL );
335
336                 // Set the id
337                 xmlNewProp( child, _x("id"), _x(id) );
338                 if ( mlt_properties_get( properties, "title" ) )
339                         xmlNewProp( child, _x("title"), _x(mlt_properties_get( properties, "title" )) );
340                 xmlNewProp( child, _x("in"), _x(mlt_properties_get_time( properties, "in", context->time_format )) );
341                 xmlNewProp( child, _x("out"), _x(mlt_properties_get_time( properties, "out", context->time_format )) );
342                 serialise_properties( context, properties, child );
343                 serialise_service_filters( context, service, child );
344
345                 // Add producer to the map
346                 mlt_properties_set_int( context->hide_map, id, mlt_properties_get_int( properties, "hide" ) );
347         }
348         else
349         {
350                 char *id = xml_get_id( context, parent, xml_existing );
351                 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
352                 xmlNewProp( node, _x("parent"), _x(id) );
353                 xmlNewProp( node, _x("in"), _x(mlt_properties_get_time( properties, "in", context->time_format )) );
354                 xmlNewProp( node, _x("out"), _x(mlt_properties_get_time( properties, "out", context->time_format )) );
355         }
356 }
357
358 static void serialise_tractor( serialise_context context, mlt_service service, xmlNode *node );
359
360 static void serialise_multitrack( serialise_context context, mlt_service service, xmlNode *node )
361 {
362         int i;
363
364         if ( context->pass == 0 )
365         {
366                 // Iterate over the tracks to collect the producers
367                 for ( i = 0; i < mlt_multitrack_count( MLT_MULTITRACK( service ) ); i++ )
368                 {
369                         mlt_producer producer = mlt_producer_cut_parent( mlt_multitrack_track( MLT_MULTITRACK( service ), i ) );
370                         serialise_service( context, MLT_SERVICE( producer ), node );
371                 }
372         }
373         else
374         {
375                 // Get a new id - if already allocated, do nothing
376                 char *id = xml_get_id( context, service, xml_multitrack );
377                 if ( id == NULL )
378                         return;
379
380                 // Serialise the tracks
381                 for ( i = 0; i < mlt_multitrack_count( MLT_MULTITRACK( service ) ); i++ )
382                 {
383                         xmlNode *track = xmlNewChild( node, NULL, _x("track"), NULL );
384                         int hide = 0;
385                         mlt_producer producer = mlt_multitrack_track( MLT_MULTITRACK( service ), i );
386                         mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
387
388                         mlt_service parent = MLT_SERVICE( mlt_producer_cut_parent( producer ) );
389
390                         char *id = xml_get_id( context, MLT_SERVICE( parent ), xml_existing );
391                         xmlNewProp( track, _x("producer"), _x(id) );
392                         if ( mlt_producer_is_cut( producer ) )
393                         {
394                                 xmlNewProp( track, _x("in"), _x( mlt_properties_get_time( properties, "in", context->time_format ) ) );
395                                 xmlNewProp( track, _x("out"), _x( mlt_properties_get_time( properties, "out", context->time_format ) ) );
396                                 serialise_store_properties( context, MLT_PRODUCER_PROPERTIES( producer ), track, context->store );
397                                 if ( !context->no_meta )
398                                         serialise_store_properties( context, MLT_PRODUCER_PROPERTIES( producer ), track, "meta." );
399                                 serialise_service_filters( context, MLT_PRODUCER_SERVICE( producer ), track );
400                         }
401
402                         hide = mlt_properties_get_int( context->hide_map, id );
403                         if ( hide )
404                                 xmlNewProp( track, _x("hide"), _x( hide == 1 ? "video" : ( hide == 2 ? "audio" : "both" ) ) );
405                 }
406                 serialise_service_filters( context, service, node );
407         }
408 }
409
410 static void serialise_playlist( serialise_context context, mlt_service service, xmlNode *node )
411 {
412         int i;
413         xmlNode *child = node;
414         mlt_playlist_clip_info info;
415         mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
416
417         if ( context->pass == 0 )
418         {
419                 // Get a new id - if already allocated, do nothing
420                 char *id = xml_get_id( context, service, xml_playlist );
421                 if ( id == NULL )
422                         return;
423
424                 // Iterate over the playlist entries to collect the producers
425                 for ( i = 0; i < mlt_playlist_count( MLT_PLAYLIST( service ) ); i++ )
426                 {
427                         if ( ! mlt_playlist_get_clip_info( MLT_PLAYLIST( service ), &info, i ) )
428                         {
429                                 if ( info.producer != NULL )
430                                 {
431                                         mlt_producer producer = mlt_producer_cut_parent( info.producer );
432                                         char *service_s = mlt_properties_get( MLT_PRODUCER_PROPERTIES( producer ), "mlt_service" );
433                                         char *resource_s = mlt_properties_get( MLT_PRODUCER_PROPERTIES( producer ), "resource" );
434                                         if ( resource_s != NULL && !strcmp( resource_s, "<playlist>" ) )
435                                                 serialise_playlist( context, MLT_SERVICE( producer ), node );
436                                         else if ( service_s != NULL && strcmp( service_s, "blank" ) != 0 )
437                                                 serialise_service( context, MLT_SERVICE( producer ), node );
438                                 }
439                         }
440                 }
441
442                 child = xmlNewChild( node, NULL, _x("playlist"), NULL );
443
444                 // Set the id
445                 xmlNewProp( child, _x("id"), _x(id) );
446                 if ( mlt_properties_get( properties, "title" ) )
447                         xmlNewProp( child, _x("title"), _x(mlt_properties_get( properties, "title" )) );
448
449                 // Store application specific properties
450                 serialise_store_properties( context, properties, child, context->store );
451                 if ( !context->no_meta )
452                         serialise_store_properties( context, properties, child, "meta." );
453
454                 // Add producer to the map
455                 mlt_properties_set_int( context->hide_map, id, mlt_properties_get_int( properties, "hide" ) );
456
457                 // Iterate over the playlist entries
458                 for ( i = 0; i < mlt_playlist_count( MLT_PLAYLIST( service ) ); i++ )
459                 {
460                         if ( ! mlt_playlist_get_clip_info( MLT_PLAYLIST( service ), &info, i ) )
461                         {
462                                 mlt_producer producer = mlt_producer_cut_parent( info.producer );
463                                 mlt_properties producer_props = MLT_PRODUCER_PROPERTIES( producer );
464                                 char *service_s = mlt_properties_get( producer_props, "mlt_service" );
465                                 if ( service_s != NULL && strcmp( service_s, "blank" ) == 0 )
466                                 {
467                                         xmlNode *entry = xmlNewChild( child, NULL, _x("blank"), NULL );
468                                         mlt_properties_set_data( producer_props, "_profile", context->profile, 0, NULL, NULL );
469                                         mlt_properties_set_position( producer_props, TIME_PROPERTY, info.frame_count );
470                                         xmlNewProp( entry, _x("length"), _x( mlt_properties_get_time( producer_props, TIME_PROPERTY, context->time_format ) ) );
471                                 }
472                                 else
473                                 {
474                                         char temp[ 20 ];
475                                         xmlNode *entry = xmlNewChild( child, NULL, _x("entry"), NULL );
476                                         id = xml_get_id( context, MLT_SERVICE( producer ), xml_existing );
477                                         xmlNewProp( entry, _x("producer"), _x(id) );
478                                         mlt_properties_set_position( producer_props, TIME_PROPERTY, info.frame_in );
479                                         xmlNewProp( entry, _x("in"), _x( mlt_properties_get_time( producer_props, TIME_PROPERTY, context->time_format ) ) );
480                                         mlt_properties_set_position( producer_props, TIME_PROPERTY, info.frame_out );
481                                         xmlNewProp( entry, _x("out"), _x( mlt_properties_get_time( producer_props, TIME_PROPERTY, context->time_format ) ) );
482                                         if ( info.repeat > 1 )
483                                         {
484                                                 sprintf( temp, "%d", info.repeat );
485                                                 xmlNewProp( entry, _x("repeat"), _x(temp) );
486                                         }
487                                         if ( mlt_producer_is_cut( info.cut ) )
488                                         {
489                                                 serialise_store_properties( context, MLT_PRODUCER_PROPERTIES( info.cut ), entry, context->store );
490                                                 if ( !context->no_meta )
491                                                         serialise_store_properties( context, MLT_PRODUCER_PROPERTIES( info.cut ), entry, "meta." );
492                                                 serialise_service_filters( context, MLT_PRODUCER_SERVICE( info.cut ), entry );
493                                         }
494                                 }
495                         }
496                 }
497
498                 serialise_service_filters( context, service, child );
499         }
500         else if ( xmlStrcmp( node->name, _x("tractor") ) != 0 )
501         {
502                 char *id = xml_get_id( context, service, xml_existing );
503                 xmlNewProp( node, _x("producer"), _x(id) );
504         }
505 }
506
507 static void serialise_tractor( serialise_context context, mlt_service service, xmlNode *node )
508 {
509         xmlNode *child = node;
510         mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
511
512         if ( context->pass == 0 )
513         {
514                 // Recurse on connected producer
515                 serialise_service( context, mlt_service_producer( service ), node );
516         }
517         else
518         {
519                 // Get a new id - if already allocated, do nothing
520                 char *id = xml_get_id( context, service, xml_tractor );
521                 if ( id == NULL )
522                         return;
523
524                 child = xmlNewChild( node, NULL, _x("tractor"), NULL );
525
526                 // Set the id
527                 xmlNewProp( child, _x("id"), _x(id) );
528                 if ( mlt_properties_get( properties, "title" ) )
529                         xmlNewProp( child, _x("title"), _x(mlt_properties_get( properties, "title" )) );
530                 if ( mlt_properties_get( properties, "global_feed" ) )
531                         xmlNewProp( child, _x("global_feed"), _x(mlt_properties_get( properties, "global_feed" )) );
532                 xmlNewProp( child, _x("in"), _x(mlt_properties_get_time( properties, "in", context->time_format )) );
533                 xmlNewProp( child, _x("out"), _x(mlt_properties_get_time( properties, "out", context->time_format )) );
534
535                 // Store application specific properties
536                 serialise_store_properties( context, MLT_SERVICE_PROPERTIES( service ), child, context->store );
537                 if ( !context->no_meta )
538                         serialise_store_properties( context, MLT_SERVICE_PROPERTIES( service ), child, "meta." );
539
540                 // Recurse on connected producer
541                 serialise_service( context, mlt_service_producer( service ), child );
542                 serialise_service_filters( context, service, child );
543         }
544 }
545
546 static void serialise_filter( serialise_context context, mlt_service service, xmlNode *node )
547 {
548         xmlNode *child = node;
549         mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
550
551         // Recurse on connected producer
552         serialise_service( context, mlt_service_producer( service ), node );
553
554         if ( context->pass == 1 )
555         {
556                 // Get a new id - if already allocated, do nothing
557                 char *id = xml_get_id( context, service, xml_filter );
558                 if ( id == NULL )
559                         return;
560
561                 child = xmlNewChild( node, NULL, _x("filter"), NULL );
562
563                 // Set the id
564                 xmlNewProp( child, _x("id"), _x(id) );
565                 if ( mlt_properties_get( properties, "title" ) )
566                         xmlNewProp( child, _x("title"), _x(mlt_properties_get( properties, "title" )) );
567                 if ( mlt_properties_get_position( properties, "in" ) )
568                         xmlNewProp( child, _x("in"), _x( mlt_properties_get_time( properties, "in", context->time_format ) ) );
569                 if ( mlt_properties_get_position( properties, "out" ) )
570                         xmlNewProp( child, _x("out"), _x( mlt_properties_get_time( properties, "out", context->time_format ) ) );
571
572                 serialise_properties( context, properties, child );
573                 serialise_service_filters( context, service, child );
574         }
575 }
576
577 static void serialise_transition( serialise_context context, mlt_service service, xmlNode *node )
578 {
579         xmlNode *child = node;
580         mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
581
582         // Recurse on connected producer
583         serialise_service( context, MLT_SERVICE( MLT_TRANSITION( service )->producer ), node );
584
585         if ( context->pass == 1 )
586         {
587                 // Get a new id - if already allocated, do nothing
588                 char *id = xml_get_id( context, service, xml_transition );
589                 if ( id == NULL )
590                         return;
591
592                 child = xmlNewChild( node, NULL, _x("transition"), NULL );
593
594                 // Set the id
595                 xmlNewProp( child, _x("id"), _x(id) );
596                 if ( mlt_properties_get( properties, "title" ) )
597                         xmlNewProp( child, _x("title"), _x(mlt_properties_get( properties, "title" )) );
598                 if ( mlt_properties_get_position( properties, "in" ) )
599                         xmlNewProp( child, _x("in"), _x( mlt_properties_get_time( properties, "in", context->time_format ) ) );
600                 if ( mlt_properties_get_position( properties, "out" ) )
601                         xmlNewProp( child, _x("out"), _x( mlt_properties_get_time( properties, "out", context->time_format ) ) );
602
603                 serialise_properties( context, properties, child );
604                 serialise_service_filters( context, service, child );
605         }
606 }
607
608 static void serialise_service( serialise_context context, mlt_service service, xmlNode *node )
609 {
610         // Iterate over consumer/producer connections
611         while ( service != NULL )
612         {
613                 mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
614                 char *mlt_type = mlt_properties_get( properties, "mlt_type" );
615
616                 // Tell about the producer
617                 if ( strcmp( mlt_type, "producer" ) == 0 )
618                 {
619                         char *mlt_service = mlt_properties_get( properties, "mlt_service" );
620                         if ( mlt_properties_get( properties, "xml" ) == NULL && ( mlt_service != NULL && !strcmp( mlt_service, "tractor" ) ) )
621                         {
622                                 context->pass = 0;
623                                 serialise_tractor( context, service, node );
624                                 context->pass = 1;
625                                 serialise_tractor( context, service, node );
626                                 context->pass = 0;
627                                 break;
628                         }
629                         else
630                         {
631                                 serialise_producer( context, service, node );
632                         }
633                         if ( mlt_properties_get( properties, "xml" ) != NULL )
634                                 break;
635                 }
636
637                 // Tell about the framework container producers
638                 else if ( strcmp( mlt_type, "mlt_producer" ) == 0 )
639                 {
640                         char *resource = mlt_properties_get( properties, "resource" );
641
642                         // Recurse on multitrack's tracks
643                         if ( resource && strcmp( resource, "<multitrack>" ) == 0 )
644                         {
645                                 serialise_multitrack( context, service, node );
646                                 break;
647                         }
648
649                         // Recurse on playlist's clips
650                         else if ( resource && strcmp( resource, "<playlist>" ) == 0 )
651                         {
652                                 serialise_playlist( context, service, node );
653                         }
654
655                         // Recurse on tractor's producer
656                         else if ( resource && strcmp( resource, "<tractor>" ) == 0 )
657                         {
658                                 context->pass = 0;
659                                 serialise_tractor( context, service, node );
660                                 context->pass = 1;
661                                 serialise_tractor( context, service, node );
662                                 context->pass = 0;
663                                 break;
664                         }
665
666                         // Treat it as a normal producer
667                         else
668                         {
669                                 serialise_producer( context, service, node );
670                         }
671                 }
672
673                 // Tell about a filter
674                 else if ( strcmp( mlt_type, "filter" ) == 0 )
675                 {
676                         serialise_filter( context, service, node );
677                         break;
678                 }
679
680                 // Tell about a transition
681                 else if ( strcmp( mlt_type, "transition" ) == 0 )
682                 {
683                         serialise_transition( context, service, node );
684                         break;
685                 }
686
687                 // Get the next connected service
688                 service = mlt_service_producer( service );
689         }
690 }
691
692 xmlDocPtr xml_make_doc( mlt_consumer consumer, mlt_service service )
693 {
694         mlt_properties properties = MLT_SERVICE_PROPERTIES( service );
695         xmlDocPtr doc = xmlNewDoc( _x("1.0") );
696         xmlNodePtr root = xmlNewNode( NULL, _x("mlt") );
697         struct serialise_context_s *context = calloc( 1, sizeof( struct serialise_context_s ) );
698         mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( consumer ) );
699         char tmpstr[ 32 ];
700
701         xmlDocSetRootElement( doc, root );
702
703         // Indicate the numeric locale
704         xmlNewProp( root, _x("LC_NUMERIC"), _x( setlocale( LC_NUMERIC, NULL ) ) );
705
706         // Indicate the version
707         xmlNewProp( root, _x("version"), _x( mlt_version_get_string() ) );
708
709         // If we have root, then deal with it now
710         if ( mlt_properties_get( properties, "root" ) != NULL )
711         {
712                 xmlNewProp( root, _x("root"), _x(mlt_properties_get( properties, "root" )) );
713                 context->root = strdup( mlt_properties_get( properties, "root" ) );
714         }
715         else
716         {
717                 context->root = strdup( "" );
718         }
719
720         // Assign the additional 'storage' pattern for properties
721         context->store = mlt_properties_get( MLT_CONSUMER_PROPERTIES( consumer ), "store" );
722         context->no_meta = mlt_properties_get_int( MLT_CONSUMER_PROPERTIES( consumer ), "no_meta" );
723         const char *time_format = mlt_properties_get( MLT_CONSUMER_PROPERTIES( consumer ), "time_format" );
724         if ( time_format && ( !strcmp( time_format, "smpte" ) || !strcmp( time_format, "SMPTE" )
725                         || !strcmp( time_format, "timecode" ) ) )
726                 context->time_format = mlt_time_smpte;
727         else if ( time_format && ( !strcmp( time_format, "clock" ) || !strcmp( time_format, "CLOCK" ) ) )
728                 context->time_format = mlt_time_clock;
729
730         // Assign a title property
731         if ( mlt_properties_get( properties, "title" ) != NULL )
732                 xmlNewProp( root, _x("title"), _x(mlt_properties_get( properties, "title" )) );
733         mlt_properties_set_int( properties, "global_feed", 1 );
734
735         // Add a profile child element
736         if ( profile )
737         {
738                 xmlNodePtr profile_node = xmlNewChild( root, NULL, _x("profile"), NULL );
739                 if ( profile->description )
740                         xmlNewProp( profile_node, _x("description"), _x(profile->description) );
741                 sprintf( tmpstr, "%d", profile->width );
742                 xmlNewProp( profile_node, _x("width"), _x(tmpstr) );
743                 sprintf( tmpstr, "%d", profile->height );
744                 xmlNewProp( profile_node, _x("height"), _x(tmpstr) );
745                 sprintf( tmpstr, "%d", profile->progressive );
746                 xmlNewProp( profile_node, _x("progressive"), _x(tmpstr) );
747                 sprintf( tmpstr, "%d", profile->sample_aspect_num );
748                 xmlNewProp( profile_node, _x("sample_aspect_num"), _x(tmpstr) );
749                 sprintf( tmpstr, "%d", profile->sample_aspect_den );
750                 xmlNewProp( profile_node, _x("sample_aspect_den"), _x(tmpstr) );
751                 sprintf( tmpstr, "%d", profile->display_aspect_num );
752                 xmlNewProp( profile_node, _x("display_aspect_num"), _x(tmpstr) );
753                 sprintf( tmpstr, "%d", profile->display_aspect_den );
754                 xmlNewProp( profile_node, _x("display_aspect_den"), _x(tmpstr) );
755                 sprintf( tmpstr, "%d", profile->frame_rate_num );
756                 xmlNewProp( profile_node, _x("frame_rate_num"), _x(tmpstr) );
757                 sprintf( tmpstr, "%d", profile->frame_rate_den );
758                 xmlNewProp( profile_node, _x("frame_rate_den"), _x(tmpstr) );
759                 sprintf( tmpstr, "%d", profile->colorspace );
760                 xmlNewProp( profile_node, _x("colorspace"), _x(tmpstr) );
761                 context->profile = profile;
762         }
763
764         // Construct the context maps
765         context->id_map = mlt_properties_new();
766         context->hide_map = mlt_properties_new();
767
768         // Ensure producer is a framework producer
769         mlt_properties_set( MLT_SERVICE_PROPERTIES( service ), "mlt_type", "mlt_producer" );
770
771         // In pass one, we serialise the end producers and playlists,
772         // adding them to a map keyed by address.
773         serialise_service( context, service, root );
774
775         // In pass two, we serialise the tractor and reference the
776         // producers and playlists
777         context->pass++;
778         serialise_service( context, service, root );
779
780         // Cleanup resource
781         mlt_properties_close( context->id_map );
782         mlt_properties_close( context->hide_map );
783         free( context->root );
784         free( context );
785
786         return doc;
787 }
788
789
790 static void output_xml( mlt_consumer this )
791 {
792         // Get the producer service
793         mlt_service service = mlt_service_producer( MLT_CONSUMER_SERVICE( this ) );
794         mlt_properties properties = MLT_CONSUMER_PROPERTIES( this );
795         char *resource =  mlt_properties_get( properties, "resource" );
796         xmlDocPtr doc = NULL;
797
798         if ( !service ) return;
799
800         // Set the title if provided
801         if ( mlt_properties_get( properties, "title" ) )
802                 mlt_properties_set( MLT_SERVICE_PROPERTIES( service ), "title", mlt_properties_get( properties, "title" ) );
803         else if ( mlt_properties_get( MLT_SERVICE_PROPERTIES( service ), "title" ) == NULL )
804                 mlt_properties_set( MLT_SERVICE_PROPERTIES( service ), "title", "Anonymous Submission" );
805
806         // Check for a root on the consumer properties and pass to service
807         if ( mlt_properties_get( properties, "root" ) )
808                 mlt_properties_set( MLT_SERVICE_PROPERTIES( service ), "root", mlt_properties_get( properties, "root" ) );
809
810         // Specify roots in other cases...
811         if ( resource != NULL && mlt_properties_get( properties, "root" ) == NULL )
812         {
813                 // Get the current working directory
814                 char *cwd = getcwd( NULL, 0 );
815                 mlt_properties_set( MLT_SERVICE_PROPERTIES( service ), "root", cwd );
816                 free( cwd );
817         }
818
819         // Make the document
820         doc = xml_make_doc( this, service );
821
822         // Handle the output
823         if ( resource == NULL || !strcmp( resource, "" ) )
824         {
825                 xmlDocFormatDump( stdout, doc, 1 );
826         }
827         else if ( strchr( resource, '.' ) == NULL )
828         {
829                 xmlChar *buffer = NULL;
830                 int length = 0;
831                 xmlDocDumpMemoryEnc( doc, &buffer, &length, "utf-8" );
832                 mlt_properties_set( properties, resource, _s(buffer) );
833 #ifdef WIN32
834                 xmlFreeFunc xmlFree = NULL;
835                 xmlMemGet( &xmlFree, NULL, NULL, NULL);
836 #endif
837                 xmlFree( buffer );
838         }
839         else
840         {
841                 xmlSaveFormatFileEnc( resource, doc, "utf-8", 1 );
842         }
843
844         // Close the document
845         xmlFreeDoc( doc );
846 }
847 static int consumer_start( mlt_consumer this )
848 {
849         mlt_properties properties = MLT_CONSUMER_PROPERTIES( this );
850
851         if ( mlt_properties_get_int( properties, "all" ) )
852         {
853                 // Check that we're not already running
854                 if ( !mlt_properties_get_int( properties, "running" ) )
855                 {
856                         // Allocate a thread
857                         pthread_t *thread = calloc( 1, sizeof( pthread_t ) );
858
859                         // Assign the thread to properties
860                         mlt_properties_set_data( properties, "thread", thread, sizeof( pthread_t ), free, NULL );
861
862                         // Set the running state
863                         mlt_properties_set_int( properties, "running", 1 );
864                         mlt_properties_set_int( properties, "joined", 0 );
865
866                         // Create the thread
867                         pthread_create( thread, NULL, consumer_thread, this );
868                 }
869         }
870         else
871         {
872                 output_xml( this );
873                 mlt_consumer_stop( this );
874                 mlt_consumer_stopped( this );
875         }
876         return 0;
877 }
878
879 static int consumer_is_stopped( mlt_consumer this )
880 {
881         mlt_properties properties = MLT_CONSUMER_PROPERTIES( this );
882         return !mlt_properties_get_int( properties, "running" );
883 }
884
885 static int consumer_stop( mlt_consumer this )
886 {
887         // Get the properties
888         mlt_properties properties = MLT_CONSUMER_PROPERTIES( this );
889
890         // Check that we're running
891         if ( !mlt_properties_get_int( properties, "joined" ) )
892         {
893                 // Get the thread
894                 pthread_t *thread = mlt_properties_get_data( properties, "thread", NULL );
895
896                 // Stop the thread
897                 mlt_properties_set_int( properties, "running", 0 );
898                 mlt_properties_set_int( properties, "joined", 1 );
899
900                 // Wait for termination
901                 if ( thread )
902                         pthread_join( *thread, NULL );
903         }
904
905         return 0;
906 }
907
908 static void *consumer_thread( void *arg )
909 {
910         // Map the argument to the object
911         mlt_consumer this = arg;
912
913         // Get the properties
914         mlt_properties properties = MLT_CONSUMER_PROPERTIES( this );
915
916         // Convenience functionality
917         int terminate_on_pause = mlt_properties_get_int( properties, "terminate_on_pause" );
918         int terminated = 0;
919
920         // Frame and size
921         mlt_frame frame = NULL;
922
923         // Loop while running
924         while( !terminated && mlt_properties_get_int( properties, "running" ) )
925         {
926                 // Get the frame
927                 frame = mlt_consumer_rt_frame( this );
928
929                 // Check for termination
930                 if ( terminate_on_pause && frame != NULL )
931                         terminated = mlt_properties_get_double( MLT_FRAME_PROPERTIES( frame ), "_speed" ) == 0.0;
932
933                 // Check that we have a frame to work with
934                 if ( frame )
935                 {
936                         int width = 0, height = 0;
937                         int frequency = mlt_properties_get_int( properties, "frequency" );
938                         int channels = mlt_properties_get_int( properties, "channels" );
939                         int samples = 0;
940                         mlt_image_format iformat = mlt_image_yuv422;
941                         mlt_audio_format aformat = mlt_audio_s16;
942                         uint8_t *buffer;
943
944                         mlt_frame_get_image( frame, &buffer, &iformat, &width, &height, 0 );
945                         mlt_frame_get_audio( frame, (void**) &buffer, &aformat, &frequency, &channels, &samples );
946
947                         // Close the frame
948                         mlt_events_fire( properties, "consumer-frame-show", frame, NULL );
949                         mlt_frame_close( frame );
950                 }
951         }
952         output_xml( this );
953
954         // Indicate that the consumer is stopped
955         mlt_properties_set_int( properties, "running", 0 );
956         mlt_consumer_stopped( this );
957
958         return NULL;
959 }