]> git.sesse.net Git - mlt/blob - src/framework/mlt_factory.c
Fix build on win32
[mlt] / src / framework / mlt_factory.c
1 /**
2  * \file mlt_factory.c
3  * \brief the factory method interfaces
4  *
5  * Copyright (C) 2003-2009 Ushodaya Enterprises Limited
6  * \author Charles Yates <charles.yates@pandora.be>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include "mlt.h"
24 #include "mlt_repository.h"
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <locale.h>
30 #include <libgen.h>
31
32 #ifdef WIN32
33 #include <windows.h>
34 /** the default subdirectory of the libdir for holding modules (plugins) */
35 #define PREFIX_LIB "\\lib\\mlt"
36 /** the default subdirectory of the install prefix for holding module (plugin) data */
37 #define PREFIX_DATA "\\share\\mlt"
38 #elif defined(__DARWIN__) && defined(RELOCATABLE)
39 #include <mach-o/dyld.h>
40 /** the default subdirectory of the libdir for holding modules (plugins) */
41 #define PREFIX_LIB "/lib/mlt"
42 /** the default subdirectory of the install prefix for holding module (plugin) data */
43 #define PREFIX_DATA "/share/mlt"
44 #else
45 /** the default subdirectory of the libdir for holding modules (plugins) */
46 #define PREFIX_LIB LIBDIR "/mlt"
47 /** the default subdirectory of the install prefix for holding module (plugin) data */
48 #define PREFIX_DATA MLTDATADIR "/mlt"
49 #endif
50
51 /** holds the full path to the modules directory - initialized and retained for the entire session */
52 static char *mlt_directory = NULL;
53 /** a global properties list for holding environment config data and things needing session-oriented cleanup */
54 static mlt_properties global_properties = NULL;
55 /** the global repository singleton */
56 static mlt_repository repository = NULL;
57 /** the events object for the factory events */
58 static mlt_properties event_object = NULL;
59 /** for tracking the unique_id set on each constructed service */
60 static int unique_id = 0;
61
62 /* Event transmitters. */
63
64 /** the -create-request event transmitter
65  *
66  * \param listener
67  * \param owner
68  * \param self
69  * \param args
70  */
71
72 static void mlt_factory_create_request( mlt_listener listener, mlt_properties owner, mlt_service self, void **args )
73 {
74         if ( listener != NULL )
75                 listener( owner, self, ( char * )args[ 0 ], ( char * )args[ 1 ], ( mlt_service * )args[ 2 ] );
76 }
77
78 /** the -create-done event transmitter
79  *
80  * \param listener
81  * \param owner
82  * \param self
83  * \param args
84  */
85
86 static void mlt_factory_create_done( mlt_listener listener, mlt_properties owner, mlt_service self, void **args )
87 {
88         if ( listener != NULL )
89                 listener( owner, self, ( char * )args[ 0 ], ( char * )args[ 1 ], ( mlt_service )args[ 2 ] );
90 }
91
92 /** Construct the repository and factories.
93  *
94  * The environment variable MLT_PRODUCER is the name of a default producer often used by other services, defaults to "loader".
95  *
96  * The environment variable MLT_CONSUMER is the name of a default consumer, defaults to "sdl".
97  *
98  * The environment variable MLT_TEST_CARD is the name of a producer or file to be played when nothing is available (all tracks blank).
99  *
100  * The environment variable MLT_DATA overrides the default full path to the MLT and module supplemental data files, defaults to \p PREFIX_DATA.
101  *
102  * The environment variable MLT_PROFILE defaults to "dv_pal."
103  *
104  * The environment variable MLT_REPOSITORY overrides the default location of the plugin modules, defaults to \p PREFIX_LIB.
105  *
106  * \param directory an optional full path to a directory containing the modules that overrides the default and
107  * the MLT_REPOSITORY environment variable
108  * \return the repository
109  */
110
111 mlt_repository mlt_factory_init( const char *directory )
112 {
113         // Load the system locales
114         setlocale( LC_ALL, "" );
115
116         if ( ! global_properties )
117                 global_properties = mlt_properties_new( );
118
119         // Allow property refresh on a subsequent initialisation
120         if ( global_properties )
121         {
122                 mlt_properties_set_or_default( global_properties, "MLT_NORMALISATION", getenv( "MLT_NORMALISATION" ), "PAL" );
123                 mlt_properties_set_or_default( global_properties, "MLT_PRODUCER", getenv( "MLT_PRODUCER" ), "loader" );
124                 mlt_properties_set_or_default( global_properties, "MLT_CONSUMER", getenv( "MLT_CONSUMER" ), "sdl" );
125                 mlt_properties_set( global_properties, "MLT_TEST_CARD", getenv( "MLT_TEST_CARD" ) );
126                 mlt_properties_set_or_default( global_properties, "MLT_PROFILE", getenv( "MLT_PROFILE" ), "dv_pal" );
127
128                 mlt_properties_set_or_default( global_properties, "MLT_DATA", getenv( "MLT_DATA" ), PREFIX_DATA );
129         }
130
131         // Only initialise once
132         if ( mlt_directory == NULL )
133         {
134                 // Allow user over rides
135                 if ( directory == NULL || !strcmp( directory, "" ) )
136                         directory = getenv( "MLT_REPOSITORY" );
137
138                 // If no directory is specified, default to install directory
139                 if ( directory == NULL )
140                         directory = PREFIX_LIB;
141
142                 // Store the prefix for later retrieval
143 #if defined(WIN32)
144                 char path[1024];
145                 DWORD size = sizeof( path );
146                 GetModuleFileName( NULL, path, size );
147 #elif defined(__DARWIN__)  && defined(RELOCATABLE)
148                 char path[1024];
149                 uint32_t size = sizeof( path );
150                 _NSGetExecutablePath( path, &size );
151 #else
152                 mlt_directory = strdup( directory );
153 #endif
154 #if defined(WIN32) || (defined(__DARWIN__) && defined(RELOCATABLE))
155                 char *path2 = strdup( path );
156                 char *exedir = dirname( path2 );
157                 if ( global_properties && !getenv( "MLT_DATA" ) )
158                 {
159                         mlt_directory = calloc( 1, size + strlen( PREFIX_DATA ) + 1 );
160                         strcpy( mlt_directory, exedir );
161                         strcat( mlt_directory, PREFIX_DATA );
162                         mlt_properties_set( global_properties, "MLT_DATA", mlt_directory );
163                         free( mlt_directory );
164                 }
165                 mlt_directory = calloc( 1, size + strlen( directory ) + 1 );
166                 strcpy( mlt_directory, exedir );
167                 strcat( mlt_directory, directory );
168                 free( path2 );
169 #endif
170                 
171                 // Initialise the pool
172                 mlt_pool_init( );
173
174                 // Create and set up the events object
175                 event_object = mlt_properties_new( );
176                 mlt_events_init( event_object );
177                 mlt_events_register( event_object, "producer-create-request", ( mlt_transmitter )mlt_factory_create_request );
178                 mlt_events_register( event_object, "producer-create-done", ( mlt_transmitter )mlt_factory_create_done );
179                 mlt_events_register( event_object, "filter-create-request", ( mlt_transmitter )mlt_factory_create_request );
180                 mlt_events_register( event_object, "filter-create-done", ( mlt_transmitter )mlt_factory_create_done );
181                 mlt_events_register( event_object, "transition-create-request", ( mlt_transmitter )mlt_factory_create_request );
182                 mlt_events_register( event_object, "transition-create-done", ( mlt_transmitter )mlt_factory_create_done );
183                 mlt_events_register( event_object, "consumer-create-request", ( mlt_transmitter )mlt_factory_create_request );
184                 mlt_events_register( event_object, "consumer-create-done", ( mlt_transmitter )mlt_factory_create_done );
185
186                 // Create the repository of services
187                 repository = mlt_repository_init( mlt_directory );
188
189                 // Force a clean up when app closes
190                 atexit( mlt_factory_close );
191         }
192
193         return repository;
194 }
195
196 /** Fetch the events object.
197  *
198  * \return the global factory event object
199  */
200
201 mlt_properties mlt_factory_event_object( )
202 {
203         return event_object;
204 }
205
206 /** Fetch the module directory used in this instance.
207  *
208  * \return the full path to the module directory that this session is using
209  */
210
211 const char *mlt_factory_directory( )
212 {
213         return mlt_directory;
214 }
215
216 /** Get a value from the environment.
217  *
218  * \param name the name of a MLT (runtime configuration) environment variable
219  * \return the value of the variable
220  */
221
222 char *mlt_environment( const char *name )
223 {
224         if ( global_properties )
225                 return mlt_properties_get( global_properties, name );
226         else
227                 return NULL;
228 }
229
230 /** Set a value in the environment.
231  *
232  * \param name the name of a MLT environment variable
233  * \param value the value of the variable
234  * \return true on error
235  */
236
237 int mlt_environment_set( const char *name, const char *value )
238 {
239         if ( global_properties )
240                 return mlt_properties_set( global_properties, name, value );
241         else
242                 return -1;
243 }
244
245 /** Set some properties common to all services.
246  *
247  * This sets _unique_id, \p mlt_type, \p mlt_service (unless _mlt_service_hidden), and _profile.
248  *
249  * \param properties a service's properties list
250  * \param profile the \p mlt_profile supplied to the factory function
251  * \param type the MLT service class
252  * \param service the name of the service
253  */
254
255 static void set_common_properties( mlt_properties properties, mlt_profile profile, const char *type, const char *service )
256 {
257         mlt_properties_set_int( properties, "_unique_id", ++ unique_id );
258         mlt_properties_set( properties, "mlt_type", type );
259         if ( mlt_properties_get_int( properties, "_mlt_service_hidden" ) == 0 )
260                 mlt_properties_set( properties, "mlt_service", service );
261         if ( profile != NULL )
262                 mlt_properties_set_data( properties, "_profile", profile, 0, NULL, NULL );
263 }
264
265 /** Fetch a producer from the repository.
266  *
267  * \param profile the \p mlt_profile to use
268  * \param service the name of the producer (optional, defaults to MLT_PRODUCER)
269  * \param input an optional argument to the producer constructor, typically a string
270  * \return a new producer
271  */
272
273 mlt_producer mlt_factory_producer( mlt_profile profile, const char *service, const void *input )
274 {
275         mlt_producer obj = NULL;
276
277         // Pick up the default normalising producer if necessary
278         if ( service == NULL )
279                 service = mlt_environment( "MLT_PRODUCER" );
280
281         // Offer the application the chance to 'create'
282         mlt_events_fire( event_object, "producer-create-request", service, input, &obj, NULL );
283
284         // Try to instantiate via the specified service
285         if ( obj == NULL )
286         {
287                 obj = mlt_repository_create( repository, profile, producer_type, service, input );
288                 mlt_events_fire( event_object, "producer-create-done", service, input, obj, NULL );
289                 if ( obj != NULL )
290                 {
291                         mlt_properties properties = MLT_PRODUCER_PROPERTIES( obj );
292                         set_common_properties( properties, profile, "producer", service );
293                 }
294         }
295         return obj;
296 }
297
298 /** Fetch a filter from the repository.
299  *
300  * \param profile the \p mlt_profile to use
301  * \param service the name of the filter
302  * \param input an optional argument to the filter constructor, typically a string
303  * \return a new filter
304  */
305
306 mlt_filter mlt_factory_filter( mlt_profile profile, const char *service, const void *input )
307 {
308         mlt_filter obj = NULL;
309
310         // Offer the application the chance to 'create'
311         mlt_events_fire( event_object, "filter-create-request", service, input, &obj, NULL );
312
313         if ( obj == NULL )
314         {
315                 obj = mlt_repository_create( repository, profile, filter_type, service, input );
316                 mlt_events_fire( event_object, "filter-create-done", service, input, obj, NULL );
317         }
318
319         if ( obj != NULL )
320         {
321                 mlt_properties properties = MLT_FILTER_PROPERTIES( obj );
322                 set_common_properties( properties, profile, "filter", service );
323         }
324         return obj;
325 }
326
327 /** Fetch a transition from the repository.
328  *
329  * \param profile the \p mlt_profile to use
330  * \param service the name of the transition
331  * \param input an optional argument to the transition constructor, typically a string
332  * \return a new transition
333  */
334
335 mlt_transition mlt_factory_transition( mlt_profile profile, const char *service, const void *input )
336 {
337         mlt_transition obj = NULL;
338
339         // Offer the application the chance to 'create'
340         mlt_events_fire( event_object, "transition-create-request", service, input, &obj, NULL );
341
342         if ( obj == NULL )
343         {
344                 obj = mlt_repository_create( repository, profile, transition_type, service, input );
345                 mlt_events_fire( event_object, "transition-create-done", service, input, obj, NULL );
346         }
347
348         if ( obj != NULL )
349         {
350                 mlt_properties properties = MLT_TRANSITION_PROPERTIES( obj );
351                 set_common_properties( properties, profile, "transition", service );
352         }
353         return obj;
354 }
355
356 /** Fetch a consumer from the repository.
357  *
358  * \param profile the \p mlt_profile to use
359  * \param service the name of the consumer (optional, defaults to MLT_CONSUMER)
360  * \param input an optional argument to the consumer constructor, typically a string
361  * \return a new consumer
362  */
363
364 mlt_consumer mlt_factory_consumer( mlt_profile profile, const char *service, const void *input )
365 {
366         mlt_consumer obj = NULL;
367
368         if ( service == NULL )
369                 service = mlt_environment( "MLT_CONSUMER" );
370
371         // Offer the application the chance to 'create'
372         mlt_events_fire( event_object, "consumer-create-request", service, input, &obj, NULL );
373
374         if ( obj == NULL )
375         {
376                 obj = mlt_repository_create( repository, profile, consumer_type, service, input );
377                 mlt_events_fire( event_object, "consumer-create-done", service, input, obj, NULL );
378         }
379
380         if ( obj != NULL )
381         {
382                 mlt_properties properties = MLT_CONSUMER_PROPERTIES( obj );
383                 set_common_properties( properties, profile, "consumer", service );
384         }
385         return obj;
386 }
387
388 /** Register an object for clean up.
389  *
390  * \param ptr an opaque pointer to anything allocated on the heap
391  * \param destructor the function pointer of the deallocation subroutine (e.g., free or \p mlt_pool_release)
392  */
393
394 void mlt_factory_register_for_clean_up( void *ptr, mlt_destructor destructor )
395 {
396         char unique[ 256 ];
397         sprintf( unique, "%08d", mlt_properties_count( global_properties ) );
398         mlt_properties_set_data( global_properties, unique, ptr, 0, destructor, NULL );
399 }
400
401 /** Close the factory.
402  *
403  * Cleanup all resources for the session.
404  */
405
406 void mlt_factory_close( )
407 {
408         if ( mlt_directory != NULL )
409         {
410                 mlt_properties_close( event_object );
411                 event_object = NULL;
412                 mlt_properties_close( global_properties );
413                 global_properties = NULL;
414                 if ( repository )
415                 {
416                         mlt_repository_close( repository );
417                         repository = NULL;
418                 }
419                 free( mlt_directory );
420                 mlt_directory = NULL;
421                 mlt_pool_close( );
422         }
423 }
424
425 mlt_properties mlt_global_properties( )
426 {
427         return global_properties;
428 }