]> git.sesse.net Git - vlc/blob - src/modules/cache.c
Save plugins cache into corresponding plugins directory
[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 #include "config/configuration.h"
47
48 #include "vlc_charset.h"
49
50 #include "modules/modules.h"
51
52
53 /*****************************************************************************
54  * Local prototypes
55  *****************************************************************************/
56 #ifdef HAVE_DYNAMIC_PLUGINS
57 static int    CacheLoadConfig  ( module_t *, FILE * );
58
59 /* Sub-version number
60  * (only used to avoid breakage in dev version when cache structure changes) */
61 #define CACHE_SUBVERSION_NUM 11
62
63 /* Format string for the cache filename */
64 #define CACHENAME_FORMAT \
65     "plugins-%.2zx%.2zx%.2"PRIx8"-%x.dat"
66 /* Magic for the cache filename */
67 #define CACHENAME_VALUES \
68     sizeof(int), sizeof(void *), *(uint8_t *)&(uint16_t){ 0xbe1e }, vlc_CPU()
69
70
71 void CacheDelete( vlc_object_t *obj, const char *dir )
72 {
73     char *path;
74
75     assert( dir != NULL );
76
77     if( asprintf( &path, "%s"DIR_SEP CACHENAME_FORMAT,
78                   dir, CACHENAME_VALUES ) == -1 )
79         return;
80     msg_Dbg( obj, "removing plugins cache file %s", path );
81     utf8_unlink( path );
82     free( path );
83 }
84
85 /*****************************************************************************
86  * LoadPluginsCache: loads the plugins cache file
87  *****************************************************************************
88  * This function will load the plugin cache if present and valid. This cache
89  * will in turn be queried by AllocateAllPlugins() to see if it needs to
90  * actually load the dynamically loadable module.
91  * This allows us to only fully load plugins when they are actually used.
92  *****************************************************************************/
93 void CacheLoad( vlc_object_t *p_this, module_bank_t *p_bank, const char *dir )
94 {
95     char *psz_filename;
96     FILE *file;
97     int j, i_size, i_read;
98     char p_cachestring[sizeof("cache " COPYRIGHT_MESSAGE)];
99     size_t i_cache;
100     module_cache_t **pp_cache = NULL;
101     int32_t i_file_size, i_marker;
102
103     assert( dir != NULL );
104
105     if( !p_bank->b_cache )
106         return;
107
108     if( asprintf( &psz_filename, "%s"DIR_SEP CACHENAME_FORMAT,
109                   dir, CACHENAME_VALUES ) == -1 )
110         return;
111
112     msg_Dbg( p_this, "loading plugins cache file %s", psz_filename );
113
114     file = utf8_fopen( psz_filename, "rb" );
115     if( !file )
116     {
117         msg_Warn( p_this, "cannot read %s (%m)",
118                   psz_filename );
119         free( psz_filename );
120         return;
121     }
122     free( psz_filename );
123
124     /* Check the file size */
125     i_read = fread( &i_file_size, 1, sizeof(i_file_size), file );
126     if( i_read != sizeof(i_file_size) )
127     {
128         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
129                   "(too short)" );
130         fclose( file );
131         return;
132     }
133
134     fseek( file, 0, SEEK_END );
135     if( ftell( file ) != i_file_size )
136     {
137         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
138                   "(corrupted size)" );
139         fclose( file );
140         return;
141     }
142     fseek( file, sizeof(i_file_size), SEEK_SET );
143
144     /* Check the file is a plugins cache */
145     i_size = sizeof("cache " COPYRIGHT_MESSAGE) - 1;
146     i_read = fread( p_cachestring, 1, i_size, file );
147     if( i_read != i_size ||
148         memcmp( p_cachestring, "cache " COPYRIGHT_MESSAGE, i_size ) )
149     {
150         msg_Warn( p_this, "This doesn't look like a valid plugins cache" );
151         fclose( file );
152         return;
153     }
154
155 #ifdef DISTRO_VERSION
156     /* Check for distribution specific version */
157     char p_distrostring[sizeof( DISTRO_VERSION )];
158     i_size = sizeof( DISTRO_VERSION ) - 1;
159     i_read = fread( p_distrostring, 1, i_size, file );
160     if( i_read != i_size ||
161         memcmp( p_distrostring, DISTRO_VERSION, i_size ) )
162     {
163         msg_Warn( p_this, "This doesn't look like a valid plugins cache" );
164         fclose( file );
165         return;
166     }
167 #endif
168
169     /* Check Sub-version number */
170     i_read = fread( &i_marker, 1, sizeof(i_marker), file );
171     if( i_read != sizeof(i_marker) || i_marker != CACHE_SUBVERSION_NUM )
172     {
173         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
174                   "(corrupted header)" );
175         fclose( file );
176         return;
177     }
178
179     /* Check header marker */
180     i_read = fread( &i_marker, 1, sizeof(i_marker), file );
181     if( i_read != sizeof(i_marker) ||
182         i_marker != ftell( file ) - (int)sizeof(i_marker) )
183     {
184         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
185                   "(corrupted header)" );
186         fclose( file );
187         return;
188     }
189
190     if (fread( &i_cache, 1, sizeof(i_cache), file ) != sizeof(i_cache) )
191     {
192         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
193                   "(file too short)" );
194         fclose( file );
195         return;
196     }
197
198     if( i_cache )
199     {
200         size_t i_already = p_bank->i_loaded_cache;
201         pp_cache = realloc( p_bank->pp_loaded_cache,
202                             (i_already + i_cache) * sizeof(*pp_cache) );
203         if( unlikely(pp_cache == NULL) )
204             i_cache = 0; /* don't load */
205         else
206         {
207             p_bank->pp_loaded_cache = pp_cache;
208             pp_cache += i_already;
209         }
210    }
211
212 #define LOAD_IMMEDIATE(a) \
213     if( fread( (void *)&a, sizeof(char), sizeof(a), file ) != sizeof(a) ) goto error
214 #define LOAD_STRING(a) \
215 { \
216     a = NULL; \
217     if( ( fread( &i_size, sizeof(i_size), 1, file ) != 1 ) \
218      || ( i_size > 16384 ) ) \
219         goto error; \
220     if( i_size ) { \
221         char *psz = xmalloc( i_size ); \
222         if( fread( psz, i_size, 1, file ) != 1 ) { \
223             free( psz ); \
224             goto error; \
225         } \
226         if( psz[i_size-1] ) { \
227             free( psz ); \
228             goto error; \
229         } \
230         a = psz; \
231     } \
232 }
233
234     for( size_t i = 0; i < i_cache; i++ )
235     {
236         uint16_t i_size;
237         int i_submodules;
238
239         pp_cache[i] = xmalloc( sizeof(module_cache_t) );
240
241         /* Load common info */
242         LOAD_STRING( pp_cache[i]->psz_file );
243         LOAD_IMMEDIATE( pp_cache[i]->i_time );
244         LOAD_IMMEDIATE( pp_cache[i]->i_size );
245
246         pp_cache[i]->p_module = vlc_module_create( p_this );
247
248         /* Load additional infos */
249         free( pp_cache[i]->p_module->psz_object_name );
250         LOAD_STRING( pp_cache[i]->p_module->psz_object_name );
251         LOAD_STRING( pp_cache[i]->p_module->psz_shortname );
252         LOAD_STRING( pp_cache[i]->p_module->psz_longname );
253         LOAD_STRING( pp_cache[i]->p_module->psz_help );
254         for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
255         {
256             LOAD_STRING( pp_cache[i]->p_module->pp_shortcuts[j] ); // FIX
257         }
258         LOAD_STRING( pp_cache[i]->p_module->psz_capability );
259         LOAD_IMMEDIATE( pp_cache[i]->p_module->i_score );
260         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_unloadable );
261         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_submodule );
262
263         /* Config stuff */
264         if( CacheLoadConfig( pp_cache[i]->p_module, file ) != VLC_SUCCESS )
265             goto error;
266
267         LOAD_STRING( pp_cache[i]->p_module->psz_filename );
268         LOAD_STRING( pp_cache[i]->p_module->domain );
269         if( pp_cache[i]->p_module->domain != NULL )
270             vlc_bindtextdomain( pp_cache[i]->p_module->domain );
271
272         LOAD_IMMEDIATE( i_submodules );
273
274         while( i_submodules-- )
275         {
276             module_t *p_module = vlc_submodule_create( pp_cache[i]->p_module );
277             free( p_module->psz_object_name );
278             LOAD_STRING( p_module->psz_object_name );
279             LOAD_STRING( p_module->psz_shortname );
280             LOAD_STRING( p_module->psz_longname );
281             LOAD_STRING( p_module->psz_help );
282             for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
283             {
284                 LOAD_STRING( p_module->pp_shortcuts[j] ); // FIX
285             }
286             LOAD_STRING( p_module->psz_capability );
287             LOAD_IMMEDIATE( p_module->i_score );
288             LOAD_IMMEDIATE( p_module->b_unloadable );
289             LOAD_STRING( p_module->domain );
290         }
291     }
292     p_bank->i_loaded_cache += i_cache;
293
294     fclose( file );
295     return;
296
297  error:
298
299     msg_Warn( p_this, "plugins cache not loaded (corrupted)" );
300
301     /* TODO: cleanup */
302     fclose( file );
303     return;
304 }
305
306
307 /* This function should never be called.
308  * It is only used as a non-NULL vlc_callback_t value for comparison. */
309 static int dummy_callback (vlc_object_t *obj, const char *name,
310                            vlc_value_t oldval, vlc_value_t newval, void *data)
311 {
312     (void) obj; (void)name; (void)oldval; (void)newval; (void)data;
313     assert (0);
314 }
315
316
317 static int CacheLoadConfig( module_t *p_module, FILE *file )
318 {
319     uint32_t i_lines;
320     uint16_t i_size;
321
322     /* Calculate the structure length */
323     LOAD_IMMEDIATE( p_module->i_config_items );
324     LOAD_IMMEDIATE( p_module->i_bool_items );
325
326     LOAD_IMMEDIATE( i_lines );
327
328     /* Allocate memory */
329     if (i_lines)
330     {
331         p_module->p_config =
332             (module_config_t *)calloc( i_lines, sizeof(module_config_t) );
333         if( p_module->p_config == NULL )
334         {
335             p_module->confsize = 0;
336             return VLC_ENOMEM;
337         }
338     }
339     p_module->confsize = i_lines;
340
341     /* Do the duplication job */
342     for (size_t i = 0; i < i_lines; i++ )
343     {
344         LOAD_IMMEDIATE( p_module->p_config[i] );
345
346         LOAD_STRING( p_module->p_config[i].psz_type );
347         LOAD_STRING( p_module->p_config[i].psz_name );
348         LOAD_STRING( p_module->p_config[i].psz_text );
349         LOAD_STRING( p_module->p_config[i].psz_longtext );
350         LOAD_STRING( p_module->p_config[i].psz_oldname );
351         LOAD_IMMEDIATE( p_module->p_config[i].b_removed );
352
353         if (IsConfigStringType (p_module->p_config[i].i_type))
354         {
355             LOAD_STRING (p_module->p_config[i].orig.psz);
356             p_module->p_config[i].value.psz =
357                     (p_module->p_config[i].orig.psz != NULL)
358                         ? strdup (p_module->p_config[i].orig.psz) : NULL;
359             p_module->p_config[i].saved.psz = NULL;
360         }
361         else
362         {
363             memcpy (&p_module->p_config[i].value, &p_module->p_config[i].orig,
364                     sizeof (p_module->p_config[i].value));
365             memcpy (&p_module->p_config[i].saved, &p_module->p_config[i].orig,
366                     sizeof (p_module->p_config[i].saved));
367         }
368
369         p_module->p_config[i].b_dirty = false;
370
371         if( p_module->p_config[i].i_list )
372         {
373             if( p_module->p_config[i].ppsz_list )
374             {
375                 int j;
376                 p_module->p_config[i].ppsz_list =
377                     xmalloc( (p_module->p_config[i].i_list+1) * sizeof(char *));
378                 if( p_module->p_config[i].ppsz_list )
379                 {
380                     for( j = 0; j < p_module->p_config[i].i_list; j++ )
381                         LOAD_STRING( p_module->p_config[i].ppsz_list[j] );
382                     p_module->p_config[i].ppsz_list[j] = NULL;
383                 }
384             }
385             if( p_module->p_config[i].ppsz_list_text )
386             {
387                 int j;
388                 p_module->p_config[i].ppsz_list_text =
389                     xmalloc( (p_module->p_config[i].i_list+1) * sizeof(char *));
390                 if( p_module->p_config[i].ppsz_list_text )
391                 {
392                   for( j = 0; j < p_module->p_config[i].i_list; j++ )
393                       LOAD_STRING( p_module->p_config[i].ppsz_list_text[j] );
394                   p_module->p_config[i].ppsz_list_text[j] = NULL;
395                 }
396             }
397             if( p_module->p_config[i].pi_list )
398             {
399                 p_module->p_config[i].pi_list =
400                     xmalloc( (p_module->p_config[i].i_list + 1) * sizeof(int) );
401                 if( p_module->p_config[i].pi_list )
402                 {
403                     for (int j = 0; j < p_module->p_config[i].i_list; j++)
404                         LOAD_IMMEDIATE( p_module->p_config[i].pi_list[j] );
405                 }
406             }
407         }
408
409         if( p_module->p_config[i].i_action )
410         {
411             p_module->p_config[i].ppf_action =
412                 xmalloc( p_module->p_config[i].i_action * sizeof(void *) );
413             p_module->p_config[i].ppsz_action_text =
414                 xmalloc( p_module->p_config[i].i_action * sizeof(char *) );
415
416             for (int j = 0; j < p_module->p_config[i].i_action; j++)
417             {
418                 p_module->p_config[i].ppf_action[j] = NULL;
419                 LOAD_STRING( p_module->p_config[i].ppsz_action_text[j] );
420             }
421         }
422
423         bool has_callback;
424         LOAD_IMMEDIATE( has_callback );
425         if (has_callback)
426             p_module->p_config[i].pf_callback = dummy_callback;
427     }
428
429     return VLC_SUCCESS;
430
431  error:
432
433     return VLC_EGENERIC;
434 }
435
436 static int CacheSaveBank( FILE *file, module_cache_t *const *, size_t );
437
438 /*****************************************************************************
439  * SavePluginsCache: saves the plugins cache to a file
440  *****************************************************************************/
441 void CacheSave (vlc_object_t *p_this, const char *dir,
442                 module_cache_t *const *pp_cache, size_t n)
443 {
444     char *filename, *tmpname;
445
446     config_CreateDir( p_this, dir );
447     if (asprintf (&filename, "%s"DIR_SEP CACHENAME_FORMAT, dir,
448                   CACHENAME_VALUES ) == -1)
449         return;
450
451     if (asprintf (&tmpname, "%s.%"PRIu32, filename, (uint32_t)getpid ()) == -1)
452     {
453         free (filename);
454         return;
455     }
456
457     FILE *file = utf8_fopen (tmpname, "wb");
458     if (file == NULL)
459         goto error;
460
461     msg_Dbg (p_this, "saving plugins cache %s", tmpname);
462     if (CacheSaveBank (file, pp_cache, n))
463         goto error;
464
465 #ifndef WIN32
466     utf8_rename (tmpname, filename); /* atomically replace old cache */
467     fclose (file);
468 #else
469     utf8_unlink (filename);
470     fclose (file);
471     utf8_rename (tmpname, filename);
472 #endif
473     return; /* success! */
474
475 error:
476     msg_Warn (p_this, "cannot write %s (%m)", tmpname);
477     free (filename);
478     free (tmpname);
479     if (file != NULL)
480     {
481         clearerr (file);
482         fclose (file);
483     }
484 }
485
486 static int CacheSaveConfig (FILE *, const module_t *);
487 static int CacheSaveSubmodule (FILE *, const module_t *);
488
489 static int CacheSaveBank (FILE *file, module_cache_t *const *pp_cache,
490                           size_t i_cache)
491 {
492     uint32_t i_file_size = 0;
493
494     /* Empty space for file size */
495     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1)
496         goto error;
497
498     /* Contains version number */
499     if (fputs ("cache "COPYRIGHT_MESSAGE, file) == EOF)
500         goto error;
501 #ifdef DISTRO_VERSION
502     /* Allow binary maintaner to pass a string to detect new binary version*/
503     if (fputs( DISTRO_VERSION, file ) == EOF)
504         goto error;
505 #endif
506     /* Sub-version number (to avoid breakage in the dev version when cache
507      * structure changes) */
508     i_file_size = CACHE_SUBVERSION_NUM;
509     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1 )
510         goto error;
511
512     /* Header marker */
513     i_file_size = ftell( file );
514     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1)
515         goto error;
516
517     if (fwrite( &i_cache, sizeof (i_cache), 1, file) != 1)
518         goto error;
519
520 #define SAVE_IMMEDIATE( a ) \
521     if (fwrite (&a, sizeof(a), 1, file) != 1) \
522         goto error
523 #define SAVE_STRING( a ) \
524     { \
525         uint16_t i_size = (a != NULL) ? (strlen (a) + 1) : 0; \
526         if ((fwrite (&i_size, sizeof (i_size), 1, file) != 1) \
527          || (a && (fwrite (a, 1, i_size, file) != i_size))) \
528             goto error; \
529     } while(0)
530
531     for (unsigned i = 0; i < i_cache; i++)
532     {
533         uint32_t i_submodule;
534
535         /* Save common info */
536         SAVE_STRING( pp_cache[i]->psz_file );
537         SAVE_IMMEDIATE( pp_cache[i]->i_time );
538         SAVE_IMMEDIATE( pp_cache[i]->i_size );
539
540         /* Save additional infos */
541         SAVE_STRING( pp_cache[i]->p_module->psz_object_name );
542         SAVE_STRING( pp_cache[i]->p_module->psz_shortname );
543         SAVE_STRING( pp_cache[i]->p_module->psz_longname );
544         SAVE_STRING( pp_cache[i]->p_module->psz_help );
545         for (unsigned j = 0; j < MODULE_SHORTCUT_MAX; j++)
546         {
547             SAVE_STRING( pp_cache[i]->p_module->pp_shortcuts[j] ); // FIX
548         }
549         SAVE_STRING( pp_cache[i]->p_module->psz_capability );
550         SAVE_IMMEDIATE( pp_cache[i]->p_module->i_score );
551         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_unloadable );
552         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_submodule );
553
554         /* Config stuff */
555         if (CacheSaveConfig (file, pp_cache[i]->p_module))
556             goto error;
557
558         SAVE_STRING( pp_cache[i]->p_module->psz_filename );
559         SAVE_STRING( pp_cache[i]->p_module->domain );
560
561         i_submodule = pp_cache[i]->p_module->submodule_count;
562         SAVE_IMMEDIATE( i_submodule );
563         if( CacheSaveSubmodule( file, pp_cache[i]->p_module->submodule ) )
564             goto error;
565     }
566
567     /* Fill-up file size */
568     i_file_size = ftell( file );
569     fseek( file, 0, SEEK_SET );
570     if (fwrite (&i_file_size, sizeof (i_file_size), 1, file) != 1
571      || fflush (file)) /* flush libc buffers */
572         goto error;
573     return 0; /* success! */
574
575 error:
576     return -1;
577 }
578
579 static int CacheSaveSubmodule( FILE *file, const module_t *p_module )
580 {
581     if( !p_module )
582         return 0;
583     if( CacheSaveSubmodule( file, p_module->next ) )
584         goto error;
585
586     SAVE_STRING( p_module->psz_object_name );
587     SAVE_STRING( p_module->psz_shortname );
588     SAVE_STRING( p_module->psz_longname );
589     SAVE_STRING( p_module->psz_help );
590     for( unsigned j = 0; j < MODULE_SHORTCUT_MAX; j++ )
591          SAVE_STRING( p_module->pp_shortcuts[j] ); // FIXME
592
593     SAVE_STRING( p_module->psz_capability );
594     SAVE_IMMEDIATE( p_module->i_score );
595     SAVE_IMMEDIATE( p_module->b_unloadable );
596     SAVE_STRING( p_module->domain );
597     return 0;
598
599 error:
600     return -1;
601 }
602
603
604 static int CacheSaveConfig (FILE *file, const module_t *p_module)
605 {
606     uint32_t i_lines = p_module->confsize;
607
608     SAVE_IMMEDIATE( p_module->i_config_items );
609     SAVE_IMMEDIATE( p_module->i_bool_items );
610     SAVE_IMMEDIATE( i_lines );
611
612     for (size_t i = 0; i < i_lines ; i++)
613     {
614         SAVE_IMMEDIATE( p_module->p_config[i] );
615
616         SAVE_STRING( p_module->p_config[i].psz_type );
617         SAVE_STRING( p_module->p_config[i].psz_name );
618         SAVE_STRING( p_module->p_config[i].psz_text );
619         SAVE_STRING( p_module->p_config[i].psz_longtext );
620         SAVE_STRING( p_module->p_config[i].psz_oldname );
621         SAVE_IMMEDIATE( p_module->p_config[i].b_removed );
622
623         if (IsConfigStringType (p_module->p_config[i].i_type))
624             SAVE_STRING( p_module->p_config[i].orig.psz );
625
626         if( p_module->p_config[i].i_list )
627         {
628             if( p_module->p_config[i].ppsz_list )
629             {
630                 for (int j = 0; j < p_module->p_config[i].i_list; j++)
631                     SAVE_STRING( p_module->p_config[i].ppsz_list[j] );
632             }
633
634             if( p_module->p_config[i].ppsz_list_text )
635             {
636                 for (int j = 0; j < p_module->p_config[i].i_list; j++)
637                     SAVE_STRING( p_module->p_config[i].ppsz_list_text[j] );
638             }
639             if( p_module->p_config[i].pi_list )
640             {
641                 for (int j = 0; j < p_module->p_config[i].i_list; j++)
642                     SAVE_IMMEDIATE( p_module->p_config[i].pi_list[j] );
643             }
644         }
645
646         for (int j = 0; j < p_module->p_config[i].i_action; j++)
647             SAVE_STRING( p_module->p_config[i].ppsz_action_text[j] );
648
649         bool has_callback = p_module->p_config[i].pf_callback != NULL;
650         SAVE_IMMEDIATE( has_callback );
651     }
652     return 0;
653
654 error:
655     return -1;
656 }
657
658 /*****************************************************************************
659  * CacheMerge: Merge a cache module descriptor with a full module descriptor.
660  *****************************************************************************/
661 void CacheMerge( vlc_object_t *p_this, module_t *p_cache, module_t *p_module )
662 {
663     (void)p_this;
664
665     p_cache->pf_activate = p_module->pf_activate;
666     p_cache->pf_deactivate = p_module->pf_deactivate;
667     p_cache->handle = p_module->handle;
668
669     /* FIXME: This looks too simplistic an algorithm to me. What if the module
670      * file was altered such that the number of order of submodules was
671      * altered... after VLC started -- Courmisch, 09/2008 */
672     module_t *p_child = p_module->submodule,
673              *p_cchild = p_cache->submodule;
674     while( p_child && p_cchild )
675     {
676         p_cchild->pf_activate = p_child->pf_activate;
677         p_cchild->pf_deactivate = p_child->pf_deactivate;
678         p_child = p_child->next;
679         p_cchild = p_cchild->next;
680     }
681
682     p_cache->b_loaded = true;
683     p_module->b_loaded = false;
684 }
685
686 /*****************************************************************************
687  * CacheFind: finds the cache entry corresponding to a file
688  *****************************************************************************/
689 module_cache_t *CacheFind( module_bank_t *p_bank, const char *psz_file,
690                            int64_t i_time, int64_t i_size )
691 {
692     module_cache_t **pp_cache;
693     int i_cache, i;
694
695     pp_cache = p_bank->pp_loaded_cache;
696     i_cache = p_bank->i_loaded_cache;
697
698     for( i = 0; i < i_cache; i++ )
699     {
700         if( !strcmp( pp_cache[i]->psz_file, psz_file ) &&
701             pp_cache[i]->i_time == i_time &&
702             pp_cache[i]->i_size == i_size ) return pp_cache[i];
703     }
704
705     return NULL;
706 }
707
708 #endif /* HAVE_DYNAMIC_PLUGINS */