]> git.sesse.net Git - vlc/blob - src/modules/cache.c
Remove the old module config lock
[vlc] / src / modules / cache.c
1 /*****************************************************************************
2  * cache.c: Plugins cache
3  *****************************************************************************
4  * Copyright (C) 2001-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sam Hocevar <sam@zoy.org>
8  *          Ethan C. Baldridge <BaldridgeE@cadmus.com>
9  *          Hans-Peter Jansen <hpj@urpla.net>
10  *          Gildas Bazin <gbazin@videolan.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include "libvlc.h"
33
34 #include <stdlib.h>                                      /* free(), strtol() */
35 #include <stdio.h>                                              /* sprintf() */
36 #include <string.h>                                              /* strdup() */
37 #include <vlc_plugin.h>
38 #include <vlc_cpu.h>
39
40 #include <sys/types.h>
41 #ifdef HAVE_UNISTD_H
42 #   include <unistd.h>
43 #endif
44 #include <assert.h>
45
46 #if !defined(HAVE_DYNAMIC_PLUGINS)
47     /* no support for plugins */
48 #elif defined(HAVE_DL_DYLD)
49 #   if defined(HAVE_MACH_O_DYLD_H)
50 #       include <mach-o/dyld.h>
51 #   endif
52 #elif defined(HAVE_DL_BEOS)
53 #   if defined(HAVE_IMAGE_H)
54 #       include <image.h>
55 #   endif
56 #elif defined(HAVE_DL_WINDOWS)
57 #   include <windows.h>
58 #elif defined(HAVE_DL_DLOPEN)
59 #   if defined(HAVE_DLFCN_H) /* Linux, BSD, Hurd */
60 #       include <dlfcn.h>
61 #   endif
62 #   if defined(HAVE_SYS_DL_H)
63 #       include <sys/dl.h>
64 #   endif
65 #elif defined(HAVE_DL_SHL_LOAD)
66 #   if defined(HAVE_DL_H)
67 #       include <dl.h>
68 #   endif
69 #endif
70
71 #include "config/configuration.h"
72
73 #include "vlc_charset.h"
74
75 #include "modules/modules.h"
76
77
78 /*****************************************************************************
79  * Local prototypes
80  *****************************************************************************/
81 #ifdef HAVE_DYNAMIC_PLUGINS
82 static int    CacheLoadConfig  ( module_t *, FILE * );
83 static int    CacheSaveConfig  ( module_t *, FILE * );
84
85 /* Sub-version number
86  * (only used to avoid breakage in dev version when cache structure changes) */
87 #define CACHE_SUBVERSION_NUM 8
88
89 /* Format string for the cache filename */
90 #define CACHENAME_FORMAT \
91     "plugins-%.2zx%.2zx%.2"PRIx8"-%x.dat"
92 /* Magic for the cache filename */
93 #define CACHENAME_VALUES \
94     sizeof(int), sizeof(void *), *(uint8_t *)&(uint16_t){ 0xbe1e }, vlc_CPU()
95
96
97 /*****************************************************************************
98  * LoadPluginsCache: loads the plugins cache file
99  *****************************************************************************
100  * This function will load the plugin cache if present and valid. This cache
101  * will in turn be queried by AllocateAllPlugins() to see if it needs to
102  * actually load the dynamically loadable module.
103  * This allows us to only fully load plugins when they are actually used.
104  *****************************************************************************/
105 void CacheLoad( vlc_object_t *p_this, module_bank_t *p_bank, bool b_delete )
106 {
107     char *psz_filename, *psz_cachedir = config_GetUserDir(VLC_CACHE_DIR);
108     FILE *file;
109     int i, j, i_size, i_read;
110     char p_cachestring[sizeof("cache " COPYRIGHT_MESSAGE)];
111     int i_cache;
112     module_cache_t **pp_cache = 0;
113     int32_t i_file_size, i_marker;
114
115     if( !psz_cachedir ) /* XXX: this should never happen */
116     {
117         msg_Err( p_this, "Unable to get cache directory" );
118         return;
119     }
120
121     if( asprintf( &psz_filename, "%s"DIR_SEP CACHENAME_FORMAT,
122                   psz_cachedir, CACHENAME_VALUES ) == -1 )
123     {
124         free( psz_cachedir );
125         return;
126     }
127     free( psz_cachedir );
128
129     if( b_delete )
130     {
131 #if !defined( UNDER_CE )
132         unlink( psz_filename );
133 #else
134         wchar_t psz_wf[MAX_PATH];
135         MultiByteToWideChar( CP_ACP, 0, psz_filename, -1, psz_wf, MAX_PATH );
136         DeleteFile( psz_wf );
137 #endif
138         msg_Dbg( p_this, "removing plugins cache file %s", psz_filename );
139         free( psz_filename );
140         return;
141     }
142
143     msg_Dbg( p_this, "loading plugins cache file %s", psz_filename );
144
145     file = utf8_fopen( psz_filename, "rb" );
146     if( !file )
147     {
148         msg_Warn( p_this, "could not open plugins cache file %s for reading",
149                   psz_filename );
150         free( psz_filename );
151         return;
152     }
153     free( psz_filename );
154
155     /* Check the file size */
156     i_read = fread( &i_file_size, 1, sizeof(i_file_size), file );
157     if( i_read != sizeof(i_file_size) )
158     {
159         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
160                   "(too short)" );
161         fclose( file );
162         return;
163     }
164
165     fseek( file, 0, SEEK_END );
166     if( ftell( file ) != i_file_size )
167     {
168         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
169                   "(corrupted size)" );
170         fclose( file );
171         return;
172     }
173     fseek( file, sizeof(i_file_size), SEEK_SET );
174
175     /* Check the file is a plugins cache */
176     i_size = sizeof("cache " COPYRIGHT_MESSAGE) - 1;
177     i_read = fread( p_cachestring, 1, i_size, file );
178     if( i_read != i_size ||
179         memcmp( p_cachestring, "cache " COPYRIGHT_MESSAGE, i_size ) )
180     {
181         msg_Warn( p_this, "This doesn't look like a valid plugins cache" );
182         fclose( file );
183         return;
184     }
185
186 #ifdef DISTRO_VERSION
187     /* Check for distribution specific version */
188     char p_distrostring[sizeof( DISTRO_VERSION )];
189     i_size = sizeof( DISTRO_VERSION ) - 1;
190     i_read = fread( p_distrostring, 1, i_size, file );
191     if( i_read != i_size ||
192         memcmp( p_distrostring, DISTRO_VERSION, i_size ) )
193     {
194         msg_Warn( p_this, "This doesn't look like a valid plugins cache" );
195         fclose( file );
196         return;
197     }
198 #endif
199
200     /* Check Sub-version number */
201     i_read = fread( &i_marker, 1, sizeof(i_marker), file );
202     if( i_read != sizeof(i_marker) || i_marker != CACHE_SUBVERSION_NUM )
203     {
204         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
205                   "(corrupted header)" );
206         fclose( file );
207         return;
208     }
209
210     /* Check header marker */
211     i_read = fread( &i_marker, 1, sizeof(i_marker), file );
212     if( i_read != sizeof(i_marker) ||
213         i_marker != ftell( file ) - (int)sizeof(i_marker) )
214     {
215         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
216                   "(corrupted header)" );
217         fclose( file );
218         return;
219     }
220
221     p_bank->i_loaded_cache = 0;
222     if (fread( &i_cache, 1, sizeof(i_cache), file ) != sizeof(i_cache) )
223     {
224         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
225                   "(file too short)" );
226         fclose( file );
227         return;
228     }
229
230     if( i_cache )
231         pp_cache = p_bank->pp_loaded_cache =
232                    xmalloc( i_cache * sizeof(void *) );
233
234 #define LOAD_IMMEDIATE(a) \
235     if( fread( (void *)&a, sizeof(char), sizeof(a), file ) != sizeof(a) ) goto error
236 #define LOAD_STRING(a) \
237 { \
238     a = NULL; \
239     if( ( fread( &i_size, sizeof(i_size), 1, file ) != 1 ) \
240      || ( i_size > 16384 ) ) \
241         goto error; \
242     if( i_size ) { \
243         char *psz = xmalloc( i_size ); \
244         if( fread( psz, i_size, 1, file ) != 1 ) { \
245             free( psz ); \
246             goto error; \
247         } \
248         if( psz[i_size-1] ) { \
249             free( psz ); \
250             goto error; \
251         } \
252         a = psz; \
253     } \
254 }
255
256     for( i = 0; i < i_cache; i++ )
257     {
258         uint16_t i_size;
259         int i_submodules;
260
261         pp_cache[i] = xmalloc( sizeof(module_cache_t) );
262         p_bank->i_loaded_cache++;
263
264         /* Load common info */
265         LOAD_STRING( pp_cache[i]->psz_file );
266         LOAD_IMMEDIATE( pp_cache[i]->i_time );
267         LOAD_IMMEDIATE( pp_cache[i]->i_size );
268         LOAD_IMMEDIATE( pp_cache[i]->b_junk );
269         pp_cache[i]->b_used = false;
270
271         if( pp_cache[i]->b_junk ) continue;
272
273         pp_cache[i]->p_module = vlc_module_create( p_this );
274
275         /* Load additional infos */
276         free( pp_cache[i]->p_module->psz_object_name );
277         LOAD_STRING( pp_cache[i]->p_module->psz_object_name );
278         LOAD_STRING( pp_cache[i]->p_module->psz_shortname );
279         LOAD_STRING( pp_cache[i]->p_module->psz_longname );
280         LOAD_STRING( pp_cache[i]->p_module->psz_help );
281         for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
282         {
283             LOAD_STRING( pp_cache[i]->p_module->pp_shortcuts[j] ); // FIX
284         }
285         LOAD_STRING( pp_cache[i]->p_module->psz_capability );
286         LOAD_IMMEDIATE( pp_cache[i]->p_module->i_score );
287         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_unloadable );
288         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_submodule );
289
290         /* Config stuff */
291         if( CacheLoadConfig( pp_cache[i]->p_module, file ) != VLC_SUCCESS )
292             goto error;
293
294         LOAD_STRING( pp_cache[i]->p_module->psz_filename );
295
296         LOAD_IMMEDIATE( i_submodules );
297
298         while( i_submodules-- )
299         {
300             module_t *p_module = vlc_submodule_create( pp_cache[i]->p_module );
301             free( p_module->psz_object_name );
302             LOAD_STRING( p_module->psz_object_name );
303             LOAD_STRING( p_module->psz_shortname );
304             LOAD_STRING( p_module->psz_longname );
305             LOAD_STRING( p_module->psz_help );
306             for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
307             {
308                 LOAD_STRING( p_module->pp_shortcuts[j] ); // FIX
309             }
310             LOAD_STRING( p_module->psz_capability );
311             LOAD_IMMEDIATE( p_module->i_score );
312             LOAD_IMMEDIATE( p_module->b_unloadable );
313         }
314     }
315
316     fclose( file );
317     return;
318
319  error:
320
321     msg_Warn( p_this, "plugins cache not loaded (corrupted)" );
322
323     /* TODO: cleanup */
324     p_bank->i_loaded_cache = 0;
325
326     fclose( file );
327     return;
328 }
329
330
331 /* This function should never be called.
332  * It is only used as a non-NULL vlc_callback_t value for comparison. */
333 static int dummy_callback (vlc_object_t *obj, const char *name,
334                            vlc_value_t oldval, vlc_value_t newval, void *data)
335 {
336     (void) obj; (void)name; (void)oldval; (void)newval; (void)data;
337     assert (0);
338 }
339
340
341 static int CacheLoadConfig( module_t *p_module, FILE *file )
342 {
343     uint32_t i_lines;
344     uint16_t i_size;
345
346     /* Calculate the structure length */
347     LOAD_IMMEDIATE( p_module->i_config_items );
348     LOAD_IMMEDIATE( p_module->i_bool_items );
349
350     LOAD_IMMEDIATE( i_lines );
351
352     /* Allocate memory */
353     if (i_lines)
354     {
355         p_module->p_config =
356             (module_config_t *)calloc( i_lines, sizeof(module_config_t) );
357         if( p_module->p_config == NULL )
358         {
359             p_module->confsize = 0;
360             return VLC_ENOMEM;
361         }
362     }
363     p_module->confsize = i_lines;
364
365     /* Do the duplication job */
366     for (size_t i = 0; i < i_lines; i++ )
367     {
368         LOAD_IMMEDIATE( p_module->p_config[i] );
369
370         LOAD_STRING( p_module->p_config[i].psz_type );
371         LOAD_STRING( p_module->p_config[i].psz_name );
372         LOAD_STRING( p_module->p_config[i].psz_text );
373         LOAD_STRING( p_module->p_config[i].psz_longtext );
374         LOAD_STRING( p_module->p_config[i].psz_oldname );
375         LOAD_IMMEDIATE( p_module->p_config[i].b_removed );
376
377         if (IsConfigStringType (p_module->p_config[i].i_type))
378         {
379             LOAD_STRING (p_module->p_config[i].orig.psz);
380             p_module->p_config[i].value.psz =
381                     (p_module->p_config[i].orig.psz != NULL)
382                         ? strdup (p_module->p_config[i].orig.psz) : NULL;
383             p_module->p_config[i].saved.psz = NULL;
384         }
385         else
386         {
387             memcpy (&p_module->p_config[i].value, &p_module->p_config[i].orig,
388                     sizeof (p_module->p_config[i].value));
389             memcpy (&p_module->p_config[i].saved, &p_module->p_config[i].orig,
390                     sizeof (p_module->p_config[i].saved));
391         }
392
393         p_module->p_config[i].b_dirty = false;
394
395         if( p_module->p_config[i].i_list )
396         {
397             if( p_module->p_config[i].ppsz_list )
398             {
399                 int j;
400                 p_module->p_config[i].ppsz_list =
401                     xmalloc( (p_module->p_config[i].i_list+1) * sizeof(char *));
402                 if( p_module->p_config[i].ppsz_list )
403                 {
404                     for( j = 0; j < p_module->p_config[i].i_list; j++ )
405                         LOAD_STRING( p_module->p_config[i].ppsz_list[j] );
406                     p_module->p_config[i].ppsz_list[j] = NULL;
407                 }
408             }
409             if( p_module->p_config[i].ppsz_list_text )
410             {
411                 int j;
412                 p_module->p_config[i].ppsz_list_text =
413                     xmalloc( (p_module->p_config[i].i_list+1) * sizeof(char *));
414                 if( p_module->p_config[i].ppsz_list_text )
415                 {
416                   for( j = 0; j < p_module->p_config[i].i_list; j++ )
417                       LOAD_STRING( p_module->p_config[i].ppsz_list_text[j] );
418                   p_module->p_config[i].ppsz_list_text[j] = NULL;
419                 }
420             }
421             if( p_module->p_config[i].pi_list )
422             {
423                 p_module->p_config[i].pi_list =
424                     xmalloc( (p_module->p_config[i].i_list + 1) * sizeof(int) );
425                 if( p_module->p_config[i].pi_list )
426                 {
427                     for (int j = 0; j < p_module->p_config[i].i_list; j++)
428                         LOAD_IMMEDIATE( p_module->p_config[i].pi_list[j] );
429                 }
430             }
431         }
432
433         if( p_module->p_config[i].i_action )
434         {
435             p_module->p_config[i].ppf_action =
436                 xmalloc( p_module->p_config[i].i_action * sizeof(void *) );
437             p_module->p_config[i].ppsz_action_text =
438                 xmalloc( p_module->p_config[i].i_action * sizeof(char *) );
439
440             for (int j = 0; j < p_module->p_config[i].i_action; j++)
441             {
442                 p_module->p_config[i].ppf_action[j] = NULL;
443                 LOAD_STRING( p_module->p_config[i].ppsz_action_text[j] );
444             }
445         }
446
447         bool has_callback;
448         LOAD_IMMEDIATE( has_callback );
449         if (has_callback)
450             p_module->p_config[i].pf_callback = dummy_callback;
451     }
452
453     return VLC_SUCCESS;
454
455  error:
456
457     return VLC_EGENERIC;
458 }
459
460 static int CacheSaveSubmodule( FILE *file, module_t *p_module );
461
462 /*****************************************************************************
463  * SavePluginsCache: saves the plugins cache to a file
464  *****************************************************************************/
465 void CacheSave( vlc_object_t *p_this, module_bank_t *p_bank )
466 {
467     static char const psz_tag[] =
468         "Signature: 8a477f597d28d172789f06886806bc55\r\n"
469         "# This file is a cache directory tag created by VLC.\r\n"
470         "# For information about cache directory tags, see:\r\n"
471         "#   http://www.brynosaurus.com/cachedir/\r\n";
472
473     char *psz_cachedir = config_GetUserDir(VLC_CACHE_DIR);
474     FILE *file;
475     int i, j, i_cache;
476     module_cache_t **pp_cache;
477     uint32_t i_file_size = 0;
478
479     if( !psz_cachedir ) /* XXX: this should never happen */
480     {
481         msg_Err( p_this, "unable to get cache directory" );
482         return;
483     }
484
485     char psz_filename[sizeof(DIR_SEP) + 32 + strlen(psz_cachedir)];
486     config_CreateDir( p_this, psz_cachedir );
487
488     snprintf( psz_filename, sizeof( psz_filename ),
489               "%s"DIR_SEP"CACHEDIR.TAG", psz_cachedir );
490     file = utf8_fopen( psz_filename, "wb" );
491     if (file != NULL)
492     {
493         if (fwrite (psz_tag, 1, sizeof (psz_tag) - 1, file) != 1)
494             clearerr (file); /* what else can we do? */
495         fclose( file );
496     }
497
498     snprintf( psz_filename, sizeof( psz_filename ),
499               "%s"DIR_SEP CACHENAME_FORMAT, psz_cachedir,
500               CACHENAME_VALUES );
501     free( psz_cachedir );
502     msg_Dbg( p_this, "writing plugins cache %s", psz_filename );
503
504     char psz_tmpname[sizeof (psz_filename) + 12];
505     snprintf (psz_tmpname, sizeof (psz_tmpname), "%s.%"PRIu32, psz_filename,
506               (uint32_t)getpid ());
507     file = utf8_fopen( psz_tmpname, "wb" );
508     if (file == NULL)
509         goto error;
510
511     /* Empty space for file size */
512     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1)
513         goto error;
514
515     /* Contains version number */
516     if (fputs ("cache "COPYRIGHT_MESSAGE, file) == EOF)
517         goto error;
518 #ifdef DISTRO_VERSION
519     /* Allow binary maintaner to pass a string to detect new binary version*/
520     if (fputs( DISTRO_VERSION, file ) == EOF)
521         goto error;
522 #endif
523     /* Sub-version number (to avoid breakage in the dev version when cache
524      * structure changes) */
525     i_file_size = CACHE_SUBVERSION_NUM;
526     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1 )
527         goto error;
528
529     /* Header marker */
530     i_file_size = ftell( file );
531     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1)
532         goto error;
533
534     i_cache = p_bank->i_cache;
535     pp_cache = p_bank->pp_cache;
536
537     if (fwrite( &i_cache, sizeof (i_cache), 1, file) != 1)
538         goto error;
539
540 #define SAVE_IMMEDIATE( a ) \
541     if (fwrite (&a, sizeof(a), 1, file) != 1) \
542         goto error
543 #define SAVE_STRING( a ) \
544     { \
545         uint16_t i_size = (a != NULL) ? (strlen (a) + 1) : 0; \
546         if ((fwrite (&i_size, sizeof (i_size), 1, file) != 1) \
547          || (a && (fwrite (a, 1, i_size, file) != i_size))) \
548             goto error; \
549     } while(0)
550
551     for( i = 0; i < i_cache; i++ )
552     {
553         uint32_t i_submodule;
554
555         /* Save common info */
556         SAVE_STRING( pp_cache[i]->psz_file );
557         SAVE_IMMEDIATE( pp_cache[i]->i_time );
558         SAVE_IMMEDIATE( pp_cache[i]->i_size );
559         SAVE_IMMEDIATE( pp_cache[i]->b_junk );
560
561         if( pp_cache[i]->b_junk ) continue;
562
563         /* Save additional infos */
564         SAVE_STRING( pp_cache[i]->p_module->psz_object_name );
565         SAVE_STRING( pp_cache[i]->p_module->psz_shortname );
566         SAVE_STRING( pp_cache[i]->p_module->psz_longname );
567         SAVE_STRING( pp_cache[i]->p_module->psz_help );
568         for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
569         {
570             SAVE_STRING( pp_cache[i]->p_module->pp_shortcuts[j] ); // FIX
571         }
572         SAVE_STRING( pp_cache[i]->p_module->psz_capability );
573         SAVE_IMMEDIATE( pp_cache[i]->p_module->i_score );
574         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_unloadable );
575         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_submodule );
576
577         /* Config stuff */
578         if (CacheSaveConfig (pp_cache[i]->p_module, file))
579             goto error;
580
581         SAVE_STRING( pp_cache[i]->p_module->psz_filename );
582
583         i_submodule = pp_cache[i]->p_module->submodule_count;
584         SAVE_IMMEDIATE( i_submodule );
585         if( CacheSaveSubmodule( file, pp_cache[i]->p_module->submodule ) )
586             goto error;
587     }
588
589     /* Fill-up file size */
590     i_file_size = ftell( file );
591     fseek( file, 0, SEEK_SET );
592     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1
593      || fflush (file)) /* flush libc buffers */
594         goto error;
595
596 #ifndef WIN32
597     utf8_rename (psz_tmpname, psz_filename); /* atomically replace old cache */
598     fclose (file);
599 #else
600     utf8_unlink (psz_filename);
601     fclose (file);
602     utf8_rename (psz_tmpname, psz_filename);
603 #endif
604     return; /* success! */
605
606 error:
607     msg_Warn (p_this, "could not write plugins cache %s (%m)",
608               psz_filename);
609     if (file != NULL)
610     {
611         clearerr (file);
612         fclose (file);
613     }
614 }
615
616 static int CacheSaveSubmodule( FILE *file, module_t *p_module )
617 {
618     if( !p_module )
619         return 0;
620     if( CacheSaveSubmodule( file, p_module->next ) )
621         goto error;
622
623     SAVE_STRING( p_module->psz_object_name );
624     SAVE_STRING( p_module->psz_shortname );
625     SAVE_STRING( p_module->psz_longname );
626     SAVE_STRING( p_module->psz_help );
627     for( unsigned j = 0; j < MODULE_SHORTCUT_MAX; j++ )
628          SAVE_STRING( p_module->pp_shortcuts[j] ); // FIXME
629
630     SAVE_STRING( p_module->psz_capability );
631     SAVE_IMMEDIATE( p_module->i_score );
632     SAVE_IMMEDIATE( p_module->b_unloadable );
633     return 0;
634
635 error:
636     return -1;
637 }
638
639
640 static int CacheSaveConfig( module_t *p_module, FILE *file )
641 {
642     uint32_t i_lines = p_module->confsize;
643
644     SAVE_IMMEDIATE( p_module->i_config_items );
645     SAVE_IMMEDIATE( p_module->i_bool_items );
646     SAVE_IMMEDIATE( i_lines );
647
648     for (size_t i = 0; i < i_lines ; i++)
649     {
650         SAVE_IMMEDIATE( p_module->p_config[i] );
651
652         SAVE_STRING( p_module->p_config[i].psz_type );
653         SAVE_STRING( p_module->p_config[i].psz_name );
654         SAVE_STRING( p_module->p_config[i].psz_text );
655         SAVE_STRING( p_module->p_config[i].psz_longtext );
656         SAVE_STRING( p_module->p_config[i].psz_oldname );
657         SAVE_IMMEDIATE( p_module->p_config[i].b_removed );
658
659         if (IsConfigStringType (p_module->p_config[i].i_type))
660             SAVE_STRING( p_module->p_config[i].orig.psz );
661
662         if( p_module->p_config[i].i_list )
663         {
664             if( p_module->p_config[i].ppsz_list )
665             {
666                 for (int j = 0; j < p_module->p_config[i].i_list; j++)
667                     SAVE_STRING( p_module->p_config[i].ppsz_list[j] );
668             }
669
670             if( p_module->p_config[i].ppsz_list_text )
671             {
672                 for (int j = 0; j < p_module->p_config[i].i_list; j++)
673                     SAVE_STRING( p_module->p_config[i].ppsz_list_text[j] );
674             }
675             if( p_module->p_config[i].pi_list )
676             {
677                 for (int j = 0; j < p_module->p_config[i].i_list; j++)
678                     SAVE_IMMEDIATE( p_module->p_config[i].pi_list[j] );
679             }
680         }
681
682         for (int j = 0; j < p_module->p_config[i].i_action; j++)
683             SAVE_STRING( p_module->p_config[i].ppsz_action_text[j] );
684
685         bool has_callback = p_module->p_config[i].pf_callback != NULL;
686         SAVE_IMMEDIATE( has_callback );
687     }
688     return 0;
689
690 error:
691     return -1;
692 }
693
694 /*****************************************************************************
695  * CacheMerge: Merge a cache module descriptor with a full module descriptor.
696  *****************************************************************************/
697 void CacheMerge( vlc_object_t *p_this, module_t *p_cache, module_t *p_module )
698 {
699     (void)p_this;
700
701     p_cache->pf_activate = p_module->pf_activate;
702     p_cache->pf_deactivate = p_module->pf_deactivate;
703     p_cache->handle = p_module->handle;
704
705     /* FIXME: This looks too simplistic an algorithm to me. What if the module
706      * file was altered such that the number of order of submodules was
707      * altered... after VLC started -- Courmisch, 09/2008 */
708     module_t *p_child = p_module->submodule,
709              *p_cchild = p_cache->submodule;
710     while( p_child && p_cchild )
711     {
712         p_cchild->pf_activate = p_child->pf_activate;
713         p_cchild->pf_deactivate = p_child->pf_deactivate;
714         p_child = p_child->next;
715         p_cchild = p_cchild->next;
716     }
717
718     p_cache->b_loaded = true;
719     p_module->b_loaded = false;
720 }
721
722 /*****************************************************************************
723  * CacheFind: finds the cache entry corresponding to a file
724  *****************************************************************************/
725 module_cache_t *CacheFind( module_bank_t *p_bank, const char *psz_file,
726                            int64_t i_time, int64_t i_size )
727 {
728     module_cache_t **pp_cache;
729     int i_cache, i;
730
731     pp_cache = p_bank->pp_loaded_cache;
732     i_cache = p_bank->i_loaded_cache;
733
734     for( i = 0; i < i_cache; i++ )
735     {
736         if( !strcmp( pp_cache[i]->psz_file, psz_file ) &&
737             pp_cache[i]->i_time == i_time &&
738             pp_cache[i]->i_size == i_size ) return pp_cache[i];
739     }
740
741     return NULL;
742 }
743
744 #endif /* HAVE_DYNAMIC_PLUGINS */