]> git.sesse.net Git - mlt/blob - src/framework/mlt_properties.c
c381e239a0828a97ed3bbe94ecb74f9f4043d186
[mlt] / src / framework / mlt_properties.c
1 /**
2  * \file mlt_properties.c
3  * \brief Properties class definition
4  * \see mlt_properties_s
5  *
6  * Copyright (C) 2003-2009 Ushodaya Enterprises Limited
7  * \author Charles Yates <charles.yates@pandora.be>
8  * \author Dan Dennedy <dan@dennedy.org>
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  */
24
25 #include "mlt_properties.h"
26 #include "mlt_property.h"
27 #include "mlt_deque.h"
28 #include "mlt_log.h"
29 #include "mlt_factory.h"
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <ctype.h>
35 #include <stdarg.h>
36 #include <pthread.h>
37 #include <sys/types.h>
38 #include <dirent.h>
39 #include <sys/stat.h>
40 #include <errno.h>
41 #include <locale.h>
42
43 #define PRESETS_DIR "/presets"
44
45 /** \brief private implementation of the property list */
46
47 typedef struct
48 {
49         int hash[ 199 ];
50         char **name;
51         mlt_property *value;
52         int count;
53         int size;
54         mlt_properties mirror;
55         int ref_count;
56         pthread_mutex_t mutex;
57         locale_t locale;
58 }
59 property_list;
60
61 /* Memory leak checks */
62
63 //#define _MLT_PROPERTY_CHECKS_ 2
64 #ifdef _MLT_PROPERTY_CHECKS_
65 static int properties_created = 0;
66 static int properties_destroyed = 0;
67 #endif
68
69 /** Initialize a properties object that was already allocated.
70  *
71  * This does allocate its ::property_list, and it adds a reference count.
72  * \public \memberof mlt_properties_s
73  * \param self the properties structure to initialize
74  * \param child an opaque pointer to a subclass object
75  * \return true if failed
76  */
77
78 int mlt_properties_init( mlt_properties self, void *child )
79 {
80         if ( self != NULL )
81         {
82 #ifdef _MLT_PROPERTY_CHECKS_
83                 // Increment number of properties created
84                 properties_created ++;
85 #endif
86
87                 // NULL all methods
88                 memset( self, 0, sizeof( struct mlt_properties_s ) );
89
90                 // Assign the child of the object
91                 self->child = child;
92
93                 // Allocate the local structure
94                 self->local = calloc( sizeof( property_list ), 1 );
95
96                 // Increment the ref count
97                 ( ( property_list * )self->local )->ref_count = 1;
98                 pthread_mutex_init( &( ( property_list * )self->local )->mutex, NULL );;
99         }
100
101         // Check that initialisation was successful
102         return self != NULL && self->local == NULL;
103 }
104
105 /** Create a properties object.
106  *
107  * This allocates the properties structure and calls mlt_properties_init() on it.
108  * Free the properties object with mlt_properties_close().
109  * \public \memberof mlt_properties_s
110  * \return a new properties object
111  */
112
113 mlt_properties mlt_properties_new( )
114 {
115         // Construct a standalone properties object
116         mlt_properties self = calloc( sizeof( struct mlt_properties_s ), 1 );
117
118         // Initialise self
119         mlt_properties_init( self, NULL );
120
121         // Return the pointer
122         return self;
123 }
124
125 /** Set the numeric locale used for string/double conversions.
126  *
127  * \public \memberof mlt_properties_s
128  * \param self a properties list
129  * \param locale the locale name
130  * \return true if error
131  */
132
133 int mlt_properties_set_lcnumeric( mlt_properties self, const char *locale )
134 {
135         int error = 0;
136
137         if ( self && locale )
138         {
139                 property_list *list = self->local;
140
141 #if defined(__linux__) || defined(__DARWIN__)
142                 if ( list->locale )
143                         freelocale( list->locale );
144                 list->locale = newlocale( LC_NUMERIC_MASK, locale, NULL );
145 #endif
146                 error = list->locale == NULL;
147         }
148         else
149                 error = 1;
150
151         return error;
152 }
153
154 /** Get the numeric locale for this properties object.
155  *
156  * Do not free the result.
157  * \public \memberof mlt_properties_s
158  * \param self a properties list
159  * \return the locale name if this properties has a specific locale it is using, NULL otherwise
160  */
161
162 const char* mlt_properties_get_lcnumeric( mlt_properties self )
163 {
164         property_list *list = self->local;
165         const char *result = NULL;
166
167         if ( list->locale )
168         {
169 #if defined(__DARWIN__)
170                 result = querylocale( LC_NUMERIC, list->locale );
171 #elif defined(__linux__)
172                 result = list->locale->__names[ LC_NUMERIC ];
173 #else
174                 // TODO: not yet sure what to do on other platforms
175 #endif
176         }
177         return result;
178 }
179
180 static int load_properties( mlt_properties self, const char *filename )
181 {
182         // Open the file
183         FILE *file = fopen( filename, "r" );
184
185         // Load contents of file
186         if ( file != NULL )
187         {
188                 // Temp string
189                 char temp[ 1024 ];
190                 char last[ 1024 ] = "";
191
192                 // Read each string from the file
193                 while( fgets( temp, 1024, file ) )
194                 {
195                         // Chomp the string
196                         temp[ strlen( temp ) - 1 ] = '\0';
197
198                         // Check if the line starts with a .
199                         if ( temp[ 0 ] == '.' )
200                         {
201                                 char temp2[ 1024 ];
202                                 sprintf( temp2, "%s%s", last, temp );
203                                 strcpy( temp, temp2 );
204                         }
205                         else if ( strchr( temp, '=' ) )
206                         {
207                                 strcpy( last, temp );
208                                 *( strchr( last, '=' ) ) = '\0';
209                         }
210
211                         // Parse and set the property
212                         if ( strcmp( temp, "" ) && temp[ 0 ] != '#' )
213                                 mlt_properties_parse( self, temp );
214                 }
215
216                 // Close the file
217                 fclose( file );
218         }
219         return file? 0 : errno;
220 }
221
222 /** Create a properties object by reading a .properties text file.
223  *
224  * Free the properties object with mlt_properties_close().
225  * \deprecated Please start using mlt_properties_parse_yaml().
226  * \public \memberof mlt_properties_s
227  * \param filename the absolute file name
228  * \return a new properties object
229  */
230
231 mlt_properties mlt_properties_load( const char *filename )
232 {
233         // Construct a standalone properties object
234         mlt_properties self = mlt_properties_new( );
235
236         if ( self != NULL )
237                 load_properties( self, filename );
238
239         // Return the pointer
240         return self;
241 }
242
243 /** Set properties from a preset.
244  *
245  * Presets are typically installed to $prefix/share/mlt/presets/{type}/{service}/[{profile}/]{name}.
246  * For example, "/usr/share/mlt/presets/consumer/avformat/dv_ntsc_wide/DVD"
247  * could be an encoding preset for a widescreen NTSC DVD Video.
248  * Do not specify the type and service in the preset name parameter; these are
249  * inferred automatically from the service to which you are applying the preset.
250  * Using the example above and assuming you are calling this function on the
251  * avformat consumer, the name passed to the function should simply be DVD.
252  * Note that the profile portion of the path is optional, but a profile-specific
253  * preset with the same name as a more generic one is given a higher priority.
254  * \todo Look in a user-specific location - somewhere in the home directory.
255  *
256  * \public \memberof mlt_properties_s
257  * \param self a properties list
258  * \param name the name of a preset in a well-known location or the explicit path
259  * \return true if error
260  */
261
262 int mlt_properties_preset( mlt_properties self, const char *name )
263 {
264         struct stat stat_buff;
265
266         // validate input
267         if ( !( self && name && strlen( name ) ) )
268                 return 1;
269
270         // See if name is an explicit file
271         if ( ! stat( name, &stat_buff ) )
272         {
273                 return load_properties( self, name );
274         }
275         else
276         {
277                 // Look for profile-specific preset before a generic one.
278                 char *data          = getenv( "MLT_PRESETS_PATH" );
279                 const char *type    = mlt_properties_get( self, "mlt_type" );
280                 const char *service = mlt_properties_get( self, "mlt_service" );
281                 const char *profile = mlt_environment( "MLT_PROFILE" );
282                 int error = 0;
283
284                 if ( data )
285                 {
286                         data = strdup( data );
287                 }
288                 else
289                 {
290                         data = malloc( strlen( mlt_environment( "MLT_DATA" ) ) + strlen( PRESETS_DIR ) + 1 );
291                         strcpy( data, mlt_environment( "MLT_DATA" ) );
292                         strcat( data, PRESETS_DIR );
293                 }
294                 if ( data && type && service )
295                 {
296                         char *path = malloc( 5 + strlen(name) + strlen(data) + strlen(type) + strlen(service) + ( profile? strlen(profile) : 0 ) );
297                         sprintf( path, "%s/%s/%s/%s/%s", data, type, service, profile, name );
298                         if ( load_properties( self, path ) )
299                         {
300                                 sprintf( path, "%s/%s/%s/%s", data, type, service, name );
301                                 error = load_properties( self, path );
302                         }
303                         free( path );
304                 }
305                 else
306                 {
307                         error = 1;
308                 }
309                 free( data );
310                 return error;
311         }
312 }
313
314 /** Generate a hash key.
315  *
316  * \private \memberof mlt_properties_s
317  * \param name a string
318  * \return an integer
319  */
320
321 static inline int generate_hash( const char *name )
322 {
323         int hash = 0;
324         int i = 1;
325         while ( *name )
326                 hash = ( hash + ( i ++ * ( *name ++ & 31 ) ) ) % 199;
327         return hash;
328 }
329
330 /** Copy a serializable property to a properties list that is mirroring this one.
331  *
332  * Special case - when a container (such as loader) is protecting another
333  * producer, we need to ensure that properties are passed through to the
334  * real producer.
335  * \private \memberof mlt_properties_s
336  * \param self a properties list
337  * \param name the name of the property to copy
338  */
339
340 static inline void mlt_properties_do_mirror( mlt_properties self, const char *name )
341 {
342         property_list *list = self->local;
343         if ( list->mirror != NULL )
344         {
345                 char *value = mlt_properties_get( self, name );
346                 if ( value != NULL )
347                         mlt_properties_set( list->mirror, name, value );
348         }
349 }
350
351 /** Increment the reference count.
352  *
353  * \public \memberof mlt_properties_s
354  * \param self a properties list
355  * \return the new reference count
356  */
357
358 int mlt_properties_inc_ref( mlt_properties self )
359 {
360         int result = 0;
361         if ( self != NULL )
362         {
363                 property_list *list = self->local;
364                 pthread_mutex_lock( &list->mutex );
365                 result = ++ list->ref_count;
366                 pthread_mutex_unlock( &list->mutex );
367         }
368         return result;
369 }
370
371 /** Decrement the reference count.
372  *
373  * \public \memberof mlt_properties_s
374  * \param self a properties list
375  * \return the new reference count
376  */
377
378 int mlt_properties_dec_ref( mlt_properties self )
379 {
380         int result = 0;
381         if ( self != NULL )
382         {
383                 property_list *list = self->local;
384                 pthread_mutex_lock( &list->mutex );
385                 result = -- list->ref_count;
386                 pthread_mutex_unlock( &list->mutex );
387         }
388         return result;
389 }
390
391 /** Get the reference count.
392  *
393  * \public \memberof mlt_properties_s
394  * \param self a properties list
395  * \return the current reference count
396  */
397
398 int mlt_properties_ref_count( mlt_properties self )
399 {
400         if ( self != NULL )
401         {
402                 property_list *list = self->local;
403                 return list->ref_count;
404         }
405         return 0;
406 }
407
408 /** Set a properties list to be a mirror copy of another.
409  *
410  * Note that this does not copy all existing properties. Rather, you must
411  * call this before setting the properties that you wish to copy.
412  * \public \memberof mlt_properties_s
413  * \param that the properties which will receive copies of the properties as they are set.
414  * \param self the properties to mirror
415  */
416
417 void mlt_properties_mirror( mlt_properties self, mlt_properties that )
418 {
419         property_list *list = self->local;
420         list->mirror = that;
421 }
422
423 /** Copy all serializable properties to another properties list.
424  *
425  * \public \memberof mlt_properties_s
426  * \param self The properties to copy to
427  * \param that The properties to copy from
428  * \return false
429  */
430
431 int mlt_properties_inherit( mlt_properties self, mlt_properties that )
432 {
433         int count = mlt_properties_count( that );
434         int i = 0;
435         for ( i = 0; i < count; i ++ )
436         {
437                 char *value = mlt_properties_get_value( that, i );
438                 if ( value != NULL )
439                 {
440                         char *name = mlt_properties_get_name( that, i );
441                         mlt_properties_set( self, name, value );
442                 }
443         }
444         return 0;
445 }
446
447 /** Pass all serializable properties that match a prefix to another properties object
448  *
449  * \public \memberof mlt_properties_s
450  * \param self the properties to copy to
451  * \param that The properties to copy from
452  * \param prefix the property names to match (required)
453  * \return false
454  */
455
456 int mlt_properties_pass( mlt_properties self, mlt_properties that, const char *prefix )
457 {
458         int count = mlt_properties_count( that );
459         int length = strlen( prefix );
460         int i = 0;
461         for ( i = 0; i < count; i ++ )
462         {
463                 char *name = mlt_properties_get_name( that, i );
464                 if ( !strncmp( name, prefix, length ) )
465                 {
466                         char *value = mlt_properties_get_value( that, i );
467                         if ( value != NULL )
468                                 mlt_properties_set( self, name + length, value );
469                 }
470         }
471         return 0;
472 }
473
474 /** Locate a property by name.
475  *
476  * \private \memberof mlt_properties_s
477  * \param self a properties list
478  * \param name the property to lookup by name
479  * \return the property or NULL for failure
480  */
481
482 static inline mlt_property mlt_properties_find( mlt_properties self, const char *name )
483 {
484         property_list *list = self->local;
485         mlt_property value = NULL;
486         int key = generate_hash( name );
487
488         mlt_properties_lock( self );
489
490         int i = list->hash[ key ] - 1;
491         if ( i >= 0 )
492         {
493                 // Check if we're hashed
494                 if ( list->count > 0 &&
495                         name[ 0 ] == list->name[ i ][ 0 ] &&
496                         !strcmp( list->name[ i ], name ) )
497                         value = list->value[ i ];
498
499                 // Locate the item
500                 for ( i = list->count - 1; value == NULL && i >= 0; i -- )
501                         if ( name[ 0 ] == list->name[ i ][ 0 ] && !strcmp( list->name[ i ], name ) )
502                                 value = list->value[ i ];
503         }
504         mlt_properties_unlock( self );
505
506         return value;
507 }
508
509 /** Add a new property.
510  *
511  * \private \memberof mlt_properties_s
512  * \param self a properties list
513  * \param name the name of the new property
514  * \return the new property
515  */
516
517 static mlt_property mlt_properties_add( mlt_properties self, const char *name )
518 {
519         property_list *list = self->local;
520         int key = generate_hash( name );
521         mlt_property result;
522
523         mlt_properties_lock( self );
524
525         // Check that we have space and resize if necessary
526         if ( list->count == list->size )
527         {
528                 list->size += 50;
529                 list->name = realloc( list->name, list->size * sizeof( const char * ) );
530                 list->value = realloc( list->value, list->size * sizeof( mlt_property ) );
531         }
532
533         // Assign name/value pair
534         list->name[ list->count ] = strdup( name );
535         list->value[ list->count ] = mlt_property_init( );
536
537         // Assign to hash table
538         if ( list->hash[ key ] == 0 )
539                 list->hash[ key ] = list->count + 1;
540
541         // Return and increment count accordingly
542         result = list->value[ list->count ++ ];
543
544         mlt_properties_unlock( self );
545
546         return result;
547 }
548
549 /** Fetch a property by name and add one if not found.
550  *
551  * \private \memberof mlt_properties_s
552  * \param self a properties list
553  * \param name the property to lookup or add
554  * \return the property
555  */
556
557 static mlt_property mlt_properties_fetch( mlt_properties self, const char *name )
558 {
559         // Try to find an existing property first
560         mlt_property property = mlt_properties_find( self, name );
561
562         // If it wasn't found, create one
563         if ( property == NULL )
564                 property = mlt_properties_add( self, name );
565
566         // Return the property
567         return property;
568 }
569
570 /** Copy a property to another properties list.
571  *
572  * \public \memberof mlt_properties_s
573  * \author Zach <zachary.drew@gmail.com>
574  * \param self the properties to copy to
575  * \param that the properties to copy from
576  * \param name the name of the property to copy
577  */
578
579 void mlt_properties_pass_property( mlt_properties self, mlt_properties that, const char *name )
580 {
581         // Make sure the source property isn't null.
582         mlt_property that_prop = mlt_properties_find( that, name );
583         if( that_prop == NULL )
584                 return;
585
586         mlt_property_pass( mlt_properties_fetch( self, name ), that_prop );
587 }
588
589 /** Copy all properties specified in a comma-separated list to another properties list.
590  *
591  * White space is also a delimiter.
592  * \public \memberof mlt_properties_s
593  * \author Zach <zachary.drew@gmail.com>
594  * \param self the properties to copy to
595  * \param that the properties to copy from
596  * \param list a delimited list of property names
597  * \return false
598  */
599
600
601 int mlt_properties_pass_list( mlt_properties self, mlt_properties that, const char *list )
602 {
603         char *props = strdup( list );
604         char *ptr = props;
605         const char *delim = " ,\t\n";   // Any combination of spaces, commas, tabs, and newlines
606         int count, done = 0;
607
608         while( !done )
609         {
610                 count = strcspn( ptr, delim );
611
612                 if( ptr[count] == '\0' )
613                         done = 1;
614                 else
615                         ptr[count] = '\0';      // Make it a real string
616
617                 mlt_properties_pass_property( self, that, ptr );
618
619                 ptr += count + 1;
620                 ptr += strspn( ptr, delim );
621         }
622
623         free( props );
624
625         return 0;
626 }
627
628
629 /** Set a property to a string.
630  *
631  * The property name "properties" is reserved to load the preset in \p value.
632  * When the value begins with '@' then it is interpreted as a very simple math
633  * expression containing only the +, -, *, and / operators.
634  * The event "property-changed" is fired after the property has been set.
635  *
636  * This makes a copy of the string value you supply.
637  * \public \memberof mlt_properties_s
638  * \param self a properties list
639  * \param name the property to set
640  * \param value the property's new value
641  * \return true if error
642  */
643
644 int mlt_properties_set( mlt_properties self, const char *name, const char *value )
645 {
646         int error = 1;
647
648         // Fetch the property to work with
649         mlt_property property = mlt_properties_fetch( self, name );
650
651         // Set it if not NULL
652         if ( property == NULL )
653         {
654                 mlt_log( NULL, MLT_LOG_FATAL, "Whoops - %s not found (should never occur)\n", name );
655         }
656         else if ( value == NULL )
657         {
658                 error = mlt_property_set_string( property, value );
659                 mlt_properties_do_mirror( self, name );
660         }
661         else if ( *value != '@' )
662         {
663                 error = mlt_property_set_string( property, value );
664                 mlt_properties_do_mirror( self, name );
665                 if ( !strcmp( name, "properties" ) )
666                         mlt_properties_preset( self, value );
667         }
668         else if ( value[ 0 ] == '@' )
669         {
670                 double total = 0;
671                 double current = 0;
672                 char id[ 255 ];
673                 char op = '+';
674
675                 value ++;
676
677                 while ( *value != '\0' )
678                 {
679                         int length = strcspn( value, "+-*/" );
680
681                         // Get the identifier
682                         strncpy( id, value, length );
683                         id[ length ] = '\0';
684                         value += length;
685
686                         // Determine the value
687                         if ( isdigit( id[ 0 ] ) )
688                                 current = atof( id );
689                         else
690                                 current = mlt_properties_get_double( self, id );
691
692                         // Apply the operation
693                         switch( op )
694                         {
695                                 case '+':
696                                         total += current;
697                                         break;
698                                 case '-':
699                                         total -= current;
700                                         break;
701                                 case '*':
702                                         total *= current;
703                                         break;
704                                 case '/':
705                                         total = total / current;
706                                         break;
707                         }
708
709                         // Get the next op
710                         op = *value != '\0' ? *value ++ : ' ';
711                 }
712
713                 error = mlt_property_set_double( property, total );
714                 mlt_properties_do_mirror( self, name );
715         }
716
717         mlt_events_fire( self, "property-changed", name, NULL );
718
719         return error;
720 }
721
722 /** Set or default a property to a string.
723  *
724  * This makes a copy of the string value you supply.
725  * \public \memberof mlt_properties_s
726  * \param self a properties list
727  * \param name the property to set
728  * \param value the string value to set or NULL to use the default
729  * \param def the default string if value is NULL
730  * \return true if error
731  */
732
733 int mlt_properties_set_or_default( mlt_properties self, const char *name, const char *value, const char *def )
734 {
735         return mlt_properties_set( self, name, value == NULL ? def : value );
736 }
737
738 /** Get a string value by name.
739  *
740  * Do not free the returned string. It's lifetime is controlled by the property
741  * and this properties object.
742  * \public \memberof mlt_properties_s
743  * \param self a properties list
744  * \param name the property to get
745  * \return the property's string value or NULL if it does not exist
746  */
747
748 char *mlt_properties_get( mlt_properties self, const char *name )
749 {
750         mlt_property value = mlt_properties_find( self, name );
751         property_list *list = self->local;
752         return value == NULL ? NULL : mlt_property_get_string_l( value, list->locale );
753 }
754
755 /** Get a property name by index.
756  *
757  * Do not free the returned string.
758  * \public \memberof mlt_properties_s
759  * \param self a properties list
760  * \param index the numeric index of the property
761  * \return the name of the property or NULL if index is out of range
762  */
763
764 char *mlt_properties_get_name( mlt_properties self, int index )
765 {
766         property_list *list = self->local;
767         if ( index >= 0 && index < list->count )
768                 return list->name[ index ];
769         return NULL;
770 }
771
772 /** Get a property's string value by index.
773  *
774  * Do not free the returned string.
775  * \public \memberof mlt_properties_s
776  * \param self a properties list
777  * \param index the numeric index of the property
778  * \return the property value as a string or NULL if the index is out of range
779  */
780
781 char *mlt_properties_get_value( mlt_properties self, int index )
782 {
783         property_list *list = self->local;
784         if ( index >= 0 && index < list->count )
785                 return mlt_property_get_string_l( list->value[ index ], list->locale );
786         return NULL;
787 }
788
789 /** Get a data value by index.
790  *
791  * Do not free the returned pointer if you supplied a destructor function when you
792  * set this property.
793  * \public \memberof mlt_properties_s
794  * \param self a properties list
795  * \param index the numeric index of the property
796  * \param[out] size the size of the binary data in bytes or NULL if the index is out of range
797  */
798
799 void *mlt_properties_get_data_at( mlt_properties self, int index, int *size )
800 {
801         property_list *list = self->local;
802         if ( index >= 0 && index < list->count )
803                 return mlt_property_get_data( list->value[ index ], size );
804         return NULL;
805 }
806
807 /** Return the number of items in the list.
808  *
809  * \public \memberof mlt_properties_s
810  * \param self a properties list
811  * \return the number of property objects
812  */
813
814 int mlt_properties_count( mlt_properties self )
815 {
816         property_list *list = self->local;
817         return list->count;
818 }
819
820 /** Set a value by parsing a name=value string.
821  *
822  * \public \memberof mlt_properties_s
823  * \param self a properties list
824  * \param namevalue a string containing name and value delimited by '='
825  * \return true if there was an error
826  */
827
828 int mlt_properties_parse( mlt_properties self, const char *namevalue )
829 {
830         char *name = strdup( namevalue );
831         char *value = NULL;
832         int error = 0;
833         char *ptr = strchr( name, '=' );
834
835         if ( ptr )
836         {
837                 *( ptr ++ ) = '\0';
838
839                 if ( *ptr != '\"' )
840                 {
841                         value = strdup( ptr );
842                 }
843                 else
844                 {
845                         ptr ++;
846                         value = strdup( ptr );
847                         if ( value != NULL && value[ strlen( value ) - 1 ] == '\"' )
848                                 value[ strlen( value ) - 1 ] = '\0';
849                 }
850         }
851         else
852         {
853                 value = strdup( "" );
854         }
855
856         error = mlt_properties_set( self, name, value );
857
858         free( name );
859         free( value );
860
861         return error;
862 }
863
864 /** Get an integer associated to the name.
865  *
866  * \public \memberof mlt_properties_s
867  * \param self a properties list
868  * \param name the property to get
869  * \return The integer value, 0 if not found (which may also be a legitimate value)
870  */
871
872 int mlt_properties_get_int( mlt_properties self, const char *name )
873 {
874         mlt_property value = mlt_properties_find( self, name );
875         return value == NULL ? 0 : mlt_property_get_int( value );
876 }
877
878 /** Set a property to an integer value.
879  *
880  * \public \memberof mlt_properties_s
881  * \param self a properties list
882  * \param name the property to set
883  * \param value the integer
884  * \return true if error
885  */
886
887 int mlt_properties_set_int( mlt_properties self, const char *name, int value )
888 {
889         int error = 1;
890
891         // Fetch the property to work with
892         mlt_property property = mlt_properties_fetch( self, name );
893
894         // Set it if not NULL
895         if ( property != NULL )
896         {
897                 error = mlt_property_set_int( property, value );
898                 mlt_properties_do_mirror( self, name );
899         }
900
901         mlt_events_fire( self, "property-changed", name, NULL );
902
903         return error;
904 }
905
906 /** Get a 64-bit integer associated to the name.
907  *
908  * \public \memberof mlt_properties_s
909  * \param self a properties list
910  * \param name the property to get
911  * \return the integer value, 0 if not found (which may also be a legitimate value)
912  */
913
914 int64_t mlt_properties_get_int64( mlt_properties self, const char *name )
915 {
916         mlt_property value = mlt_properties_find( self, name );
917         return value == NULL ? 0 : mlt_property_get_int64( value );
918 }
919
920 /** Set a property to a 64-bit integer value.
921  *
922  * \public \memberof mlt_properties_s
923  * \param self a properties list
924  * \param name the property to set
925  * \param value the integer
926  * \return true if error
927  */
928
929 int mlt_properties_set_int64( mlt_properties self, const char *name, int64_t value )
930 {
931         int error = 1;
932
933         // Fetch the property to work with
934         mlt_property property = mlt_properties_fetch( self, name );
935
936         // Set it if not NULL
937         if ( property != NULL )
938         {
939                 error = mlt_property_set_int64( property, value );
940                 mlt_properties_do_mirror( self, name );
941         }
942
943         mlt_events_fire( self, "property-changed", name, NULL );
944
945         return error;
946 }
947
948 /** Get a floating point value associated to the name.
949  *
950  * \public \memberof mlt_properties_s
951  * \param self a properties list
952  * \param name the property to get
953  * \return the floating point, 0 if not found (which may also be a legitimate value)
954  */
955
956 double mlt_properties_get_double( mlt_properties self, const char *name )
957 {
958         mlt_property value = mlt_properties_find( self, name );
959         property_list *list = self->local;
960         return value == NULL ? 0 : mlt_property_get_double_l( value, list->locale );
961 }
962
963 /** Set a property to a floating point value.
964  *
965  * \public \memberof mlt_properties_s
966  * \param self a properties list
967  * \param name the property to set
968  * \param value the floating point value
969  * \return true if error
970  */
971
972 int mlt_properties_set_double( mlt_properties self, const char *name, double value )
973 {
974         int error = 1;
975
976         // Fetch the property to work with
977         mlt_property property = mlt_properties_fetch( self, name );
978
979         // Set it if not NULL
980         if ( property != NULL )
981         {
982                 error = mlt_property_set_double( property, value );
983                 mlt_properties_do_mirror( self, name );
984         }
985
986         mlt_events_fire( self, "property-changed", name, NULL );
987
988         return error;
989 }
990
991 /** Get a position value associated to the name.
992  *
993  * \public \memberof mlt_properties_s
994  * \param self a properties list
995  * \param name the property to get
996  * \return the position, 0 if not found (which may also be a legitimate value)
997  */
998
999 mlt_position mlt_properties_get_position( mlt_properties self, const char *name )
1000 {
1001         mlt_property value = mlt_properties_find( self, name );
1002         return value == NULL ? 0 : mlt_property_get_position( value );
1003 }
1004
1005 /** Set a property to a position value.
1006  *
1007  * \public \memberof mlt_properties_s
1008  * \param self a properties list
1009  * \param name the property to get
1010  * \param value the position
1011  * \return true if error
1012  */
1013
1014 int mlt_properties_set_position( mlt_properties self, const char *name, mlt_position value )
1015 {
1016         int error = 1;
1017
1018         // Fetch the property to work with
1019         mlt_property property = mlt_properties_fetch( self, name );
1020
1021         // Set it if not NULL
1022         if ( property != NULL )
1023         {
1024                 error = mlt_property_set_position( property, value );
1025                 mlt_properties_do_mirror( self, name );
1026         }
1027
1028         mlt_events_fire( self, "property-changed", name, NULL );
1029
1030         return error;
1031 }
1032
1033 /** Get a binary data value associated to the name.
1034  *
1035  * Do not free the returned pointer if you supplied a destructor function
1036  * when you set this property.
1037  * \public \memberof mlt_properties_s
1038  * \param self a properties list
1039  * \param name the property to get
1040  * \param[out] length The size of the binary data in bytes, if available (often it is not, you should know)
1041  */
1042
1043 void *mlt_properties_get_data( mlt_properties self, const char *name, int *length )
1044 {
1045         mlt_property value = mlt_properties_find( self, name );
1046         return value == NULL ? NULL : mlt_property_get_data( value, length );
1047 }
1048
1049 /** Store binary data as a property.
1050  *
1051  * \public \memberof mlt_properties_s
1052  * \param self a properties list
1053  * \param name the property to set
1054  * \param value an opaque pointer to binary data
1055  * \param length the size of the binary data in bytes (optional)
1056  * \param destroy a function to deallocate the binary data when the property is closed (optional)
1057  * \param serialise a function that can serialize the binary data as text (optional)
1058  * \return true if error
1059  */
1060
1061 int mlt_properties_set_data( mlt_properties self, const char *name, void *value, int length, mlt_destructor destroy, mlt_serialiser serialise )
1062 {
1063         int error = 1;
1064
1065         // Fetch the property to work with
1066         mlt_property property = mlt_properties_fetch( self, name );
1067
1068         // Set it if not NULL
1069         if ( property != NULL )
1070                 error = mlt_property_set_data( property, value, length, destroy, serialise );
1071
1072         mlt_events_fire( self, "property-changed", name, NULL );
1073
1074         return error;
1075 }
1076
1077 /** Rename a property.
1078  *
1079  * \public \memberof mlt_properties_s
1080  * \param self a properties list
1081  * \param source the property to rename
1082  * \param dest the new name
1083  * \return true if the name is already in use
1084  */
1085
1086 int mlt_properties_rename( mlt_properties self, const char *source, const char *dest )
1087 {
1088         mlt_property value = mlt_properties_find( self, dest );
1089
1090         if ( value == NULL )
1091         {
1092                 property_list *list = self->local;
1093                 int i = 0;
1094
1095                 // Locate the item
1096                 mlt_properties_lock( self );
1097                 for ( i = 0; i < list->count; i ++ )
1098                 {
1099                         if ( !strcmp( list->name[ i ], source ) )
1100                         {
1101                                 free( list->name[ i ] );
1102                                 list->name[ i ] = strdup( dest );
1103                                 list->hash[ generate_hash( dest ) ] = i + 1;
1104                                 break;
1105                         }
1106                 }
1107                 mlt_properties_unlock( self );
1108         }
1109
1110         return value != NULL;
1111 }
1112
1113 /** Dump the properties to a file handle.
1114  *
1115  * \public \memberof mlt_properties_s
1116  * \param self a properties list
1117  * \param output a file handle
1118  */
1119
1120 void mlt_properties_dump( mlt_properties self, FILE *output )
1121 {
1122         property_list *list = self->local;
1123         int i = 0;
1124         for ( i = 0; i < list->count; i ++ )
1125                 if ( mlt_properties_get( self, list->name[ i ] ) != NULL )
1126                         fprintf( output, "%s=%s\n", list->name[ i ], mlt_properties_get( self, list->name[ i ] ) );
1127 }
1128
1129 /** Output the properties to a file handle.
1130  *
1131  * This version includes reference counts and does not put each property on a new line.
1132  * \public \memberof mlt_properties_s
1133  * \param self a properties pointer
1134  * \param title a string to preface the output
1135  * \param output a file handle
1136  */
1137 void mlt_properties_debug( mlt_properties self, const char *title, FILE *output )
1138 {
1139         if ( output == NULL ) output = stderr;
1140         fprintf( output, "%s: ", title );
1141         if ( self != NULL )
1142         {
1143                 property_list *list = self->local;
1144                 int i = 0;
1145                 fprintf( output, "[ ref=%d", list->ref_count );
1146                 for ( i = 0; i < list->count; i ++ )
1147                         if ( mlt_properties_get( self, list->name[ i ] ) != NULL )
1148                                 fprintf( output, ", %s=%s", list->name[ i ], mlt_properties_get( self, list->name[ i ] ) );
1149                         else
1150                                 fprintf( output, ", %s=%p", list->name[ i ], mlt_properties_get_data( self, list->name[ i ], NULL ) );
1151                 fprintf( output, " ]" );
1152         }
1153         fprintf( output, "\n" );
1154 }
1155
1156 /** Save the properties to a file by name.
1157  *
1158  * This uses the dump format - one line per property.
1159  * \public \memberof mlt_properties_s
1160  * \param self a properties list
1161  * \param filename the name of a file to create or overwrite
1162  * \return true if there was an error
1163  */
1164
1165 int mlt_properties_save( mlt_properties self, const char *filename )
1166 {
1167         int error = 1;
1168         FILE *f = fopen( filename, "w" );
1169         if ( f != NULL )
1170         {
1171                 mlt_properties_dump( self, f );
1172                 fclose( f );
1173                 error = 0;
1174         }
1175         return error;
1176 }
1177
1178 /* This is a very basic cross platform fnmatch replacement - it will fail in
1179  * many cases, but for the basic *.XXX and YYY*.XXX, it will work ok.
1180  */
1181
1182 /** Test whether a filename or pathname matches a shell-style pattern.
1183  *
1184  * \private \memberof mlt_properties_s
1185  * \param wild a string containing a wildcard pattern
1186  * \param file the name of a file to test against
1187  * \return true if the file name matches the wildcard pattern
1188  */
1189
1190 static int mlt_fnmatch( const char *wild, const char *file )
1191 {
1192         int f = 0;
1193         int w = 0;
1194
1195         while( f < strlen( file ) && w < strlen( wild ) )
1196         {
1197                 if ( wild[ w ] == '*' )
1198                 {
1199                         w ++;
1200                         if ( w == strlen( wild ) )
1201                                 f = strlen( file );
1202                         while ( f != strlen( file ) && tolower( file[ f ] ) != tolower( wild[ w ] ) )
1203                                 f ++;
1204                 }
1205                 else if ( wild[ w ] == '?' || tolower( file[ f ] ) == tolower( wild[ w ] ) )
1206                 {
1207                         f ++;
1208                         w ++;
1209                 }
1210                 else if ( wild[ 0 ] == '*' )
1211                 {
1212                         w = 0;
1213                 }
1214                 else
1215                 {
1216                         return 0;
1217                 }
1218         }
1219
1220         return strlen( file ) == f &&  strlen( wild ) == w;
1221 }
1222
1223 /** Compare the string or serialized value of two properties.
1224  *
1225  * \private \memberof mlt_properties_s
1226  * \param self a property
1227  * \param that a property
1228  * \return < 0 if \p self less than \p that, 0 if equal, or > 0 if \p self is greater than \p that
1229  */
1230
1231 static int mlt_compare( const void *self, const void *that )
1232 {
1233     return strcmp( mlt_property_get_string( *( const mlt_property * )self ), mlt_property_get_string( *( const mlt_property * )that ) );
1234 }
1235
1236 /** Get the contents of a directory.
1237  *
1238  * Obtains an optionally sorted list of the files found in a directory with a specific wild card.
1239  * Entries in the list have a numeric name (running from 0 to count - 1). Only values change
1240  * position if sort is enabled. Designed to be posix compatible (linux, os/x, mingw etc).
1241  * \public \memberof mlt_properties_s
1242  * \param self a properties list
1243  * \param dirname the name of the directory
1244  * \param pattern a wildcard pattern to filter the directory listing
1245  * \param sort Do you want to sort the directory listing?
1246  * \return the number of items in the directory listing
1247  */
1248
1249 int mlt_properties_dir_list( mlt_properties self, const char *dirname, const char *pattern, int sort )
1250 {
1251         DIR *dir = opendir( dirname );
1252
1253         if ( dir )
1254         {
1255                 char key[ 20 ];
1256                 struct dirent *de = readdir( dir );
1257                 char fullname[ 1024 ];
1258                 while( de != NULL )
1259                 {
1260                         sprintf( key, "%d", mlt_properties_count( self ) );
1261                         snprintf( fullname, 1024, "%s/%s", dirname, de->d_name );
1262                         if ( pattern == NULL )
1263                                 mlt_properties_set( self, key, fullname );
1264                         else if ( de->d_name[ 0 ] != '.' && mlt_fnmatch( pattern, de->d_name ) )
1265                                 mlt_properties_set( self, key, fullname );
1266                         de = readdir( dir );
1267                 }
1268
1269                 closedir( dir );
1270         }
1271
1272         if ( sort && mlt_properties_count( self ) )
1273         {
1274                 property_list *list = self->local;
1275                 mlt_properties_lock( self );
1276                 qsort( list->value, mlt_properties_count( self ), sizeof( mlt_property ), mlt_compare );
1277                 mlt_properties_unlock( self );
1278         }
1279
1280         return mlt_properties_count( self );
1281 }
1282
1283 /** Close a properties object.
1284  *
1285  * Deallocates the properties object and everything it contains.
1286  * \public \memberof mlt_properties_s
1287  * \param self a properties object
1288  */
1289
1290 void mlt_properties_close( mlt_properties self )
1291 {
1292         if ( self != NULL && mlt_properties_dec_ref( self ) <= 0 )
1293         {
1294                 if ( self->close != NULL )
1295                 {
1296                         self->close( self->close_object );
1297                 }
1298                 else
1299                 {
1300                         property_list *list = self->local;
1301                         int index = 0;
1302
1303 #if _MLT_PROPERTY_CHECKS_ == 1
1304                         // Show debug info
1305                         mlt_properties_debug( self, "Closing", stderr );
1306 #endif
1307
1308 #ifdef _MLT_PROPERTY_CHECKS_
1309                         // Increment destroyed count
1310                         properties_destroyed ++;
1311
1312                         // Show current stats - these should match when the app is closed
1313                         mlt_log( NULL, MLT_LOG_DEBUG, "Created %d, destroyed %d\n", properties_created, properties_destroyed );
1314 #endif
1315
1316                         // Clean up names and values
1317                         for ( index = list->count - 1; index >= 0; index -- )
1318                         {
1319                                 mlt_property_close( list->value[ index ] );
1320                                 free( list->name[ index ] );
1321                         }
1322
1323 #if defined(__linux__) || defined(__DARWIN__)
1324                         // Cleanup locale
1325                         if ( list->locale )
1326                                 freelocale( list->locale );
1327 #endif
1328
1329                         // Clear up the list
1330                         pthread_mutex_destroy( &list->mutex );
1331                         free( list->name );
1332                         free( list->value );
1333                         free( list );
1334
1335                         // Free self now if self has no child
1336                         if ( self->child == NULL )
1337                                 free( self );
1338                 }
1339         }
1340 }
1341
1342 /** Determine if the properties list is really just a sequence or ordered list.
1343  *
1344  * \public \memberof mlt_properties_s
1345  * \param properties a properties list
1346  * \return true if all of the property names are numeric (a sequence)
1347  */
1348
1349 int mlt_properties_is_sequence( mlt_properties properties )
1350 {
1351         int i;
1352         int n = mlt_properties_count( properties );
1353         for ( i = 0; i < n; i++ )
1354                 if ( ! isdigit( mlt_properties_get_name( properties, i )[0] ) )
1355                         return 0;
1356         return 1;
1357 }
1358
1359 /** \brief YAML Tiny Parser context structure
1360  *
1361  * YAML is a nifty text format popular in the Ruby world as a cleaner,
1362  * less verbose alternative to XML. See this Wikipedia topic for an overview:
1363  * http://en.wikipedia.org/wiki/YAML
1364  * The YAML specification is at:
1365  * http://yaml.org/
1366  * YAML::Tiny is a Perl module that specifies a subset of YAML that we are
1367  * using here (for the same reasons):
1368  * http://search.cpan.org/~adamk/YAML-Tiny-1.25/lib/YAML/Tiny.pm
1369  * \private
1370  */
1371
1372 struct yaml_parser_context
1373 {
1374         mlt_deque stack;
1375         unsigned int level;
1376         unsigned int index;
1377         char block;
1378         char *block_name;
1379         unsigned int block_indent;
1380
1381 };
1382 typedef struct yaml_parser_context *yaml_parser;
1383
1384 /** Remove spaces from the left side of a string.
1385  *
1386  * \param s the string to trim
1387  * \return the number of characters removed
1388  */
1389
1390 static unsigned int ltrim( char **s )
1391 {
1392         unsigned int i = 0;
1393         char *c = *s;
1394         int n = strlen( c );
1395         for ( i = 0; i < n && *c == ' '; i++, c++ );
1396         *s = c;
1397         return i;
1398 }
1399
1400 /** Remove spaces from the right side of a string.
1401  *
1402  * \param s the string to trim
1403  * \return the number of characters removed
1404  */
1405
1406 static unsigned int rtrim( char *s )
1407 {
1408         int n = strlen( s );
1409         int i;
1410         for ( i = n; i > 0 && s[i - 1] == ' '; --i )
1411                 s[i - 1] = 0;
1412         return n - i;
1413 }
1414
1415 /** Parse a line of YAML Tiny.
1416  *
1417  * Adds a property if needed.
1418  * \private \memberof yaml_parser_context
1419  * \param context a YAML Tiny Parser context
1420  * \param namevalue a line of YAML Tiny
1421  * \return true if there was an error
1422  */
1423
1424 static int parse_yaml( yaml_parser context, const char *namevalue )
1425 {
1426         char *name_ = strdup( namevalue );
1427         char *name = name_;
1428         char *value = NULL;
1429         int error = 0;
1430         char *ptr = strchr( name, ':' );
1431         unsigned int indent = ltrim( &name );
1432         mlt_properties properties = mlt_deque_peek_front( context->stack );
1433
1434         // Ascending one more levels in the tree
1435         if ( indent < context->level )
1436         {
1437                 unsigned int i;
1438                 unsigned int n = ( context->level - indent ) / 2;
1439                 for ( i = 0; i < n; i++ )
1440                         mlt_deque_pop_front( context->stack );
1441                 properties = mlt_deque_peek_front( context->stack );
1442                 context->level = indent;
1443         }
1444
1445         // Descending a level in the tree
1446         else if ( indent > context->level && context->block == 0 )
1447         {
1448                 context->level = indent;
1449         }
1450
1451         // If there is a colon that is not part of a block
1452         if ( ptr && ( indent == context->level ) )
1453         {
1454                 // Reset block processing
1455                 if ( context->block_name )
1456                 {
1457                         free( context->block_name );
1458                         context->block_name = NULL;
1459                         context->block = 0;
1460                 }
1461
1462                 // Terminate the name and setup the value pointer
1463                 *( ptr ++ ) = 0;
1464
1465                 // Trim comment
1466                 char *comment = strchr( ptr, '#' );
1467                 if ( comment )
1468                 {
1469                         *comment = 0;
1470                 }
1471
1472                 // Trim leading and trailing spaces from bare value
1473                 ltrim( &ptr );
1474                 rtrim( ptr );
1475
1476                 // No value means a child
1477                 if ( strcmp( ptr, "" ) == 0 )
1478                 {
1479                         mlt_properties child = mlt_properties_new();
1480                         mlt_properties_set_lcnumeric( child, mlt_properties_get_lcnumeric( properties ) );
1481                         mlt_properties_set_data( properties, name, child, 0,
1482                                 ( mlt_destructor )mlt_properties_close, NULL );
1483                         mlt_deque_push_front( context->stack, child );
1484                         context->index = 0;
1485                         free( name_ );
1486                         return error;
1487                 }
1488
1489                 // A dash indicates a sequence item
1490                 if ( name[0] == '-' )
1491                 {
1492                         mlt_properties child = mlt_properties_new();
1493                         char key[20];
1494
1495                         mlt_properties_set_lcnumeric( child, mlt_properties_get_lcnumeric( properties ) );
1496                         snprintf( key, sizeof(key), "%d", context->index++ );
1497                         mlt_properties_set_data( properties, key, child, 0,
1498                                 ( mlt_destructor )mlt_properties_close, NULL );
1499                         mlt_deque_push_front( context->stack, child );
1500
1501                         name ++;
1502                         context->level += ltrim( &name ) + 1;
1503                         properties = child;
1504                 }
1505
1506                 // Value is quoted
1507                 if ( *ptr == '\"' )
1508                 {
1509                         ptr ++;
1510                         value = strdup( ptr );
1511                         if ( value && value[ strlen( value ) - 1 ] == '\"' )
1512                                 value[ strlen( value ) - 1 ] = 0;
1513                 }
1514
1515                 // Value is folded or unfolded block
1516                 else if ( *ptr == '|' || *ptr == '>' )
1517                 {
1518                         context->block = *ptr;
1519                         context->block_name = strdup( name );
1520                         context->block_indent = 0;
1521                         value = strdup( "" );
1522                 }
1523
1524                 // Bare value
1525                 else
1526                 {
1527                         value = strdup( ptr );
1528                 }
1529         }
1530
1531         // A list of scalars
1532         else if ( name[0] == '-' )
1533         {
1534                 // Reset block processing
1535                 if ( context->block_name )
1536                 {
1537                         free( context->block_name );
1538                         context->block_name = NULL;
1539                         context->block = 0;
1540                 }
1541
1542                 char key[20];
1543
1544                 snprintf( key, sizeof(key), "%d", context->index++ );
1545                 ptr = name + 1;
1546
1547                 // Trim comment
1548                 char *comment = strchr( ptr, '#' );
1549                 if ( comment )
1550                         *comment = 0;
1551
1552                 // Trim leading and trailing spaces from bare value
1553                 ltrim( &ptr );
1554                 rtrim( ptr );
1555
1556                 // Value is quoted
1557                 if ( *ptr == '\"' )
1558                 {
1559                         ptr ++;
1560                         value = strdup( ptr );
1561                         if ( value && value[ strlen( value ) - 1 ] == '\"' )
1562                                 value[ strlen( value ) - 1 ] = 0;
1563                 }
1564
1565                 // Value is folded or unfolded block
1566                 else if ( *ptr == '|' || *ptr == '>' )
1567                 {
1568                         context->block = *ptr;
1569                         context->block_name = strdup( key );
1570                         context->block_indent = 0;
1571                         value = strdup( "" );
1572                 }
1573
1574                 // Bare value
1575                 else
1576                 {
1577                         value = strdup( ptr );
1578                 }
1579
1580                 free( name_ );
1581                 name = name_ = strdup( key );
1582         }
1583
1584         // Non-folded block
1585         else if ( context->block == '|' )
1586         {
1587                 if ( context->block_indent == 0 )
1588                         context->block_indent = indent;
1589                 if ( indent > context->block_indent )
1590                         name = &name_[ context->block_indent ];
1591                 rtrim( name );
1592                 char *old_value = mlt_properties_get( properties, context->block_name );
1593                 value = calloc( 1, strlen( old_value ) + strlen( name ) + 2 );
1594                 strcpy( value, old_value );
1595                 if ( strcmp( old_value, "" ) )
1596                         strcat( value, "\n" );
1597                 strcat( value, name );
1598                 name = context->block_name;
1599         }
1600
1601         // Folded block
1602         else if ( context->block == '>' )
1603         {
1604                 ltrim( &name );
1605                 rtrim( name );
1606                 char *old_value = mlt_properties_get( properties, context->block_name );
1607
1608                 // Blank line (prepended with spaces) is new line
1609                 if ( strcmp( name, "" ) == 0 )
1610                 {
1611                         value = calloc( 1, strlen( old_value ) + 2 );
1612                         strcat( value, old_value );
1613                         strcat( value, "\n" );
1614                 }
1615                 // Concatenate with space
1616                 else
1617                 {
1618                         value = calloc( 1, strlen( old_value ) + strlen( name ) + 2 );
1619                         strcat( value, old_value );
1620                         if ( strcmp( old_value, "" ) && old_value[ strlen( old_value ) - 1 ] != '\n' )
1621                                 strcat( value, " " );
1622                         strcat( value, name );
1623                 }
1624                 name = context->block_name;
1625         }
1626
1627         else
1628         {
1629                 value = strdup( "" );
1630         }
1631
1632         error = mlt_properties_set( properties, name, value );
1633
1634         if ( !strcmp( name, "LC_NUMERIC" ) )
1635                 mlt_properties_set_lcnumeric( properties, value );
1636
1637         free( name_ );
1638         free( value );
1639
1640         return error;
1641 }
1642
1643 /** Parse a YAML Tiny file by name.
1644  *
1645  * \public \memberof mlt_properties_s
1646  * \param filename the name of a text file containing YAML Tiny
1647  * \return a new properties list
1648  */
1649
1650 mlt_properties mlt_properties_parse_yaml( const char *filename )
1651 {
1652         // Construct a standalone properties object
1653         mlt_properties self = mlt_properties_new( );
1654
1655         if ( self )
1656         {
1657                 // Open the file
1658                 FILE *file = fopen( filename, "r" );
1659
1660                 // Load contents of file
1661                 if ( file )
1662                 {
1663                         // Temp string
1664                         char temp[ 1024 ];
1665                         char *ptemp = &temp[ 0 ];
1666
1667                         // Default to LC_NUMERIC = C
1668                         mlt_properties_set_lcnumeric( self, "C" );
1669
1670                         // Parser context
1671                         yaml_parser context = calloc( 1, sizeof( struct yaml_parser_context ) );
1672                         context->stack = mlt_deque_init();
1673                         mlt_deque_push_front( context->stack, self );
1674
1675                         // Read each string from the file
1676                         while( fgets( temp, 1024, file ) )
1677                         {
1678                                 // Check for end-of-stream
1679                                 if ( strncmp( ptemp, "...", 3 ) == 0 )
1680                                         break;
1681
1682                                 // Chomp the string
1683                                 temp[ strlen( temp ) - 1 ] = '\0';
1684
1685                                 // Skip blank lines, comment lines, and document separator
1686                                 if ( strcmp( ptemp, "" ) && ptemp[ 0 ] != '#' && strncmp( ptemp, "---", 3 )
1687                                      && strncmp( ptemp, "%YAML", 5 ) && strncmp( ptemp, "% YAML", 6 ) )
1688                                         parse_yaml( context, temp );
1689                         }
1690
1691                         // Close the file
1692                         fclose( file );
1693                         mlt_deque_close( context->stack );
1694                         if ( context->block_name )
1695                                 free( context->block_name );
1696                         free( context );
1697                 }
1698         }
1699
1700         // Return the pointer
1701         return self;
1702 }
1703
1704 /*
1705  * YAML Tiny Serializer
1706  */
1707
1708 /** How many bytes to grow at a time */
1709 #define STRBUF_GROWTH (1024)
1710
1711 /** \brief Private to mlt_properties_s, a self-growing buffer for building strings
1712  * \private
1713  */
1714
1715 struct strbuf_s
1716 {
1717         size_t size;
1718         char *string;
1719 };
1720
1721 typedef struct strbuf_s *strbuf;
1722
1723 /** Create a new string buffer
1724  *
1725  * \private \memberof strbuf_s
1726  * \return a new string buffer
1727  */
1728
1729 static strbuf strbuf_new( )
1730 {
1731         strbuf buffer = calloc( 1, sizeof( struct strbuf_s ) );
1732         buffer->size = STRBUF_GROWTH;
1733         buffer->string = calloc( 1, buffer->size );
1734         return buffer;
1735 }
1736
1737 /** Destroy a string buffer
1738  *
1739  * \private \memberof strbuf_s
1740  * \param buffer the string buffer to close
1741  */
1742
1743 static void strbuf_close( strbuf buffer )
1744 {
1745         // We do not free buffer->string; strbuf user must save that pointer
1746         // and free it.
1747         if ( buffer )
1748                 free( buffer );
1749 }
1750
1751 /** Format a string into a string buffer
1752  *
1753  * A variable number of arguments follows the format string - one for each
1754  * format specifier.
1755  * \private \memberof strbuf_s
1756  * \param buffer the string buffer to write into
1757  * \param format a string that contains text and formatting instructions
1758  * \return the formatted string
1759  */
1760
1761 static char *strbuf_printf( strbuf buffer, const char *format, ... )
1762 {
1763         while ( buffer->string )
1764         {
1765                 va_list ap;
1766                 va_start( ap, format );
1767                 size_t len = strlen( buffer->string );
1768                 size_t remain = buffer->size - len - 1;
1769                 int need = vsnprintf( buffer->string + len, remain, format, ap );
1770                 va_end( ap );
1771                 if ( need > -1 && need < remain )
1772                         break;
1773                 buffer->string[ len ] = 0;
1774                 buffer->size += need + STRBUF_GROWTH;
1775                 buffer->string = realloc( buffer->string, buffer->size );
1776         }
1777         return buffer->string;
1778 }
1779
1780 /** Indent a line of YAML Tiny.
1781  *
1782  * \private \memberof strbuf_s
1783  * \param output a string buffer
1784  * \param indent the number of spaces to indent
1785  */
1786
1787 static inline void indent_yaml( strbuf output, int indent )
1788 {
1789         int j;
1790         for ( j = 0; j < indent; j++ )
1791                 strbuf_printf( output, " " );
1792 }
1793
1794 /** Convert a line string into a YAML block literal.
1795  *
1796  * \private \memberof strbuf_s
1797  * \param output a string buffer
1798  * \param value the string to format as a block literal
1799  * \param indent the number of spaces to indent
1800  */
1801
1802 static void output_yaml_block_literal( strbuf output, const char *value, int indent )
1803 {
1804         char *v = strdup( value );
1805         char *sol = v;
1806         char *eol = strchr( sol, '\n' );
1807
1808         while ( eol )
1809         {
1810                 indent_yaml( output, indent );
1811                 *eol = '\0';
1812                 strbuf_printf( output, "%s\n", sol );
1813                 sol = eol + 1;
1814                 eol = strchr( sol, '\n' );
1815         }
1816         indent_yaml( output, indent );
1817         strbuf_printf( output, "%s\n", sol );
1818 }
1819
1820 /** Recursively serialize a properties list into a string buffer as YAML Tiny.
1821  *
1822  * \private \memberof mlt_properties_s
1823  * \param self a properties list
1824  * \param output a string buffer to hold the serialized YAML Tiny
1825  * \param indent the number of spaces to indent (for recursion, initialize to 0)
1826  * \param is_parent_sequence Is this properties list really just a sequence (for recursion, initialize to 0)?
1827  */
1828
1829 static void serialise_yaml( mlt_properties self, strbuf output, int indent, int is_parent_sequence )
1830 {
1831         property_list *list = self->local;
1832         int i = 0;
1833
1834         for ( i = 0; i < list->count; i ++ )
1835         {
1836                 // This implementation assumes that all data elements are property lists.
1837                 // Unfortunately, we do not have run time type identification.
1838                 mlt_properties child = mlt_property_get_data( list->value[ i ], NULL );
1839
1840                 if ( mlt_properties_is_sequence( self ) )
1841                 {
1842                         // Ignore hidden/non-serialisable items
1843                         if ( list->name[ i ][ 0 ] != '_' )
1844                         {
1845                                 // Indicate a sequence item
1846                                 indent_yaml( output, indent );
1847                                 strbuf_printf( output, "- " );
1848
1849                                 // If the value can be represented as a string
1850                                 const char *value = mlt_properties_get( self, list->name[ i ] );
1851                                 if ( value && strcmp( value, "" ) )
1852                                 {
1853                                         // Determine if this is an unfolded block literal
1854                                         if ( strchr( value, '\n' ) )
1855                                         {
1856                                                 strbuf_printf( output, "|\n" );
1857                                                 output_yaml_block_literal( output, value, indent + strlen( list->name[ i ] ) + strlen( "|" ) );
1858                                         }
1859                                         else
1860                                         {
1861                                                 strbuf_printf( output, "%s\n", value );
1862                                         }
1863                                 }
1864                         }
1865                         // Recurse on child
1866                         if ( child )
1867                                 serialise_yaml( child, output, indent + 2, 1 );
1868                 }
1869                 else
1870                 {
1871                         // Assume this is a normal map-oriented properties list
1872                         const char *value = mlt_properties_get( self, list->name[ i ] );
1873
1874                         // Ignore hidden/non-serialisable items
1875                         // If the value can be represented as a string
1876                         if ( list->name[ i ][ 0 ] != '_' && value && strcmp( value, "" ) )
1877                         {
1878                                 if ( is_parent_sequence == 0 )
1879                                         indent_yaml( output, indent );
1880                                 else
1881                                         is_parent_sequence = 0;
1882
1883                                 // Determine if this is an unfolded block literal
1884                                 if ( strchr( value, '\n' ) )
1885                                 {
1886                                         strbuf_printf( output, "%s: |\n", list->name[ i ] );
1887                                         output_yaml_block_literal( output, value, indent + strlen( list->name[ i ] ) + strlen( ": " ) );
1888                                 }
1889                                 else
1890                                 {
1891                                         strbuf_printf( output, "%s: %s\n", list->name[ i ], value );
1892                                 }
1893                         }
1894
1895                         // Output a child as a map item
1896                         if ( child )
1897                         {
1898                                 indent_yaml( output, indent );
1899                                 strbuf_printf( output, "%s:\n", list->name[ i ] );
1900
1901                                 // Recurse on child
1902                                 serialise_yaml( child, output, indent + 2, 0 );
1903                         }
1904                 }
1905         }
1906 }
1907
1908 /** Serialize a properties list as a string of YAML Tiny.
1909  *
1910  * The caller MUST free the returned string!
1911  * This operates on properties containing properties as a hierarchical data
1912  * structure.
1913  * \public \memberof mlt_properties_s
1914  * \param self a properties list
1915  * \return a string containing YAML Tiny that represents the properties list
1916  */
1917
1918 char *mlt_properties_serialise_yaml( mlt_properties self )
1919 {
1920         const char *lc_numeric = mlt_properties_get_lcnumeric( self );
1921         strbuf b = strbuf_new();
1922         strbuf_printf( b, "---\n" );
1923         mlt_properties_set_lcnumeric( self, "C" );
1924         serialise_yaml( self, b, 0, 0 );
1925         mlt_properties_set_lcnumeric( self, lc_numeric );
1926         strbuf_printf( b, "...\n" );
1927         char *ret = b->string;
1928         strbuf_close( b );
1929         return ret;
1930 }
1931
1932 /** Protect a properties list against concurrent access.
1933  *
1934  * \public \memberof mlt_properties_s
1935  * \param self a properties list
1936  */
1937
1938 void mlt_properties_lock( mlt_properties self )
1939 {
1940         if ( self )
1941                 pthread_mutex_lock( &( ( property_list* )( self->local ) )->mutex );
1942 }
1943
1944 /** End protecting a properties list against concurrent access.
1945  *
1946  * \public \memberof mlt_properties_s
1947  * \param self a properties list
1948  */
1949
1950 void mlt_properties_unlock( mlt_properties self )
1951 {
1952         if ( self )
1953                 pthread_mutex_unlock( &( ( property_list* )( self->local ) )->mutex );
1954 }