modules.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:68k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * modules.c : Builtin and plugin modules management functions
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2004 VideoLAN
  5.  * $Id: modules.c 9144 2004-11-04 22:54:17Z courmisch $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  25.  *****************************************************************************/
  26. /* Some faulty libcs have a broken struct dirent when _FILE_OFFSET_BITS
  27.  * is set to 64. Don't try to be cleverer. */
  28. #ifdef _FILE_OFFSET_BITS
  29. #undef _FILE_OFFSET_BITS
  30. #endif
  31. #include <stdlib.h>                                      /* free(), strtol() */
  32. #include <stdio.h>                                              /* sprintf() */
  33. #include <string.h>                                              /* strdup() */
  34. #include <vlc/vlc.h>
  35. #include <vlc/input.h>
  36. #ifdef HAVE_DIRENT_H
  37. #   include <dirent.h>
  38. #elif defined( UNDER_CE )
  39. #   include <windows.h>                               /* GetFileAttributes() */
  40. #else
  41. #   include "../extras/dirent.h"
  42. #endif
  43. #ifdef HAVE_SYS_TYPES_H
  44. #   include <sys/types.h>
  45. #endif
  46. #ifdef HAVE_SYS_STAT_H
  47. #   include <sys/stat.h>
  48. #endif
  49. #ifdef HAVE_UNISTD_H
  50. #   include <unistd.h>
  51. #endif
  52. #define HAVE_DYNAMIC_PLUGINS
  53. #if defined(HAVE_DL_DYLD)
  54. #   if defined(HAVE_MACH_O_DYLD_H)
  55. #       include <mach-o/dyld.h>
  56. #   endif
  57. #elif defined(HAVE_DL_BEOS)
  58. #   if defined(HAVE_IMAGE_H)
  59. #       include <image.h>
  60. #   endif
  61. #elif defined(HAVE_DL_WINDOWS)
  62. #   include <windows.h>
  63. #elif defined(HAVE_DL_DLOPEN)
  64. #   if defined(HAVE_DLFCN_H) /* Linux, BSD, Hurd */
  65. #       include <dlfcn.h>
  66. #   endif
  67. #   if defined(HAVE_SYS_DL_H)
  68. #       include <sys/dl.h>
  69. #   endif
  70. #elif defined(HAVE_DL_SHL_LOAD)
  71. #   if defined(HAVE_DL_H)
  72. #       include <dl.h>
  73. #   endif
  74. #else
  75. #   undef HAVE_DYNAMIC_PLUGINS
  76. #endif
  77. #include "vlc_error.h"
  78. #include "vlc_interface.h"
  79. #include "intf_eject.h"
  80. #include "vlc_playlist.h"
  81. #include "vlc_video.h"
  82. #include "video_output.h"
  83. #include "vout_synchro.h"
  84. #include "vlc_spu.h"
  85. #include "audio_output.h"
  86. #include "aout_internal.h"
  87. #include "stream_output.h"
  88. #include "osd.h"
  89. #include "vlc_httpd.h"
  90. #include "vlc_tls.h"
  91. #include "iso_lang.h"
  92. #include "charset.h"
  93. #include "vlc_block.h"
  94. #include "vlc_vlm.h"
  95. #ifdef HAVE_DYNAMIC_PLUGINS
  96. #   include "modules_plugin.h"
  97. #endif
  98. #if defined( UNDER_CE )
  99. #    include "modules_builtin_evc.h"
  100. #elif defined( _MSC_VER )
  101. #    include "modules_builtin_msvc.h"
  102. #else
  103. #    include "modules_builtin.h"
  104. #endif
  105. #include "network.h"
  106. #if defined( WIN32) || defined( UNDER_CE )
  107.     /* Avoid name collisions */
  108. #   define LoadModule(a,b,c) _LoadModule(a,b,c)
  109. #endif
  110. /*****************************************************************************
  111.  * Local prototypes
  112.  *****************************************************************************/
  113. #ifdef HAVE_DYNAMIC_PLUGINS
  114. static void AllocateAllPlugins  ( vlc_object_t * );
  115. static void AllocatePluginDir   ( vlc_object_t *, const char *, int );
  116. static int  AllocatePluginFile  ( vlc_object_t *, char *, int64_t, int64_t );
  117. static module_t * AllocatePlugin( vlc_object_t *, char * );
  118. #endif
  119. static int  AllocateBuiltinModule( vlc_object_t *, int ( * ) ( module_t * ) );
  120. static int  DeleteModule ( module_t * );
  121. #ifdef HAVE_DYNAMIC_PLUGINS
  122. static void   DupModule        ( module_t * );
  123. static void   UndupModule      ( module_t * );
  124. static int    CallEntry        ( module_t * );
  125. static int    LoadModule       ( vlc_object_t *, char *, module_handle_t * );
  126. static void   CloseModule      ( module_handle_t );
  127. static void * GetSymbol        ( module_handle_t, const char * );
  128. static void   CacheLoad        ( vlc_object_t * );
  129. static int    CacheLoadConfig  ( module_t *, FILE * );
  130. static void   CacheSave        ( vlc_object_t * );
  131. static void   CacheSaveConfig  ( module_t *, FILE * );
  132. static char * CacheName        ( void );
  133. static void   CacheMerge       ( vlc_object_t *, module_t *, module_t * );
  134. static module_cache_t * CacheFind( vlc_object_t *, char *, int64_t, int64_t );
  135. #if defined(HAVE_DL_WINDOWS)
  136. static char * GetWindowsError  ( void );
  137. #endif
  138. #endif
  139. /*****************************************************************************
  140.  * module_InitBank: create the module bank.
  141.  *****************************************************************************
  142.  * This function creates a module bank structure which will be filled later
  143.  * on with all the modules found.
  144.  *****************************************************************************/
  145. void __module_InitBank( vlc_object_t *p_this )
  146. {
  147.     module_bank_t *p_bank;
  148.     vlc_value_t  lockval;
  149.     var_Create( p_this->p_libvlc, "libvlc", VLC_VAR_MUTEX );
  150.     var_Get( p_this->p_libvlc, "libvlc", &lockval );
  151.     vlc_mutex_lock( lockval.p_address );
  152.     if( p_this->p_libvlc->p_module_bank )
  153.     {
  154.         p_this->p_libvlc->p_module_bank->i_usage++;
  155.         vlc_mutex_unlock( lockval.p_address );
  156.         var_Destroy( p_this->p_libvlc, "libvlc" );
  157.         return;
  158.     }
  159.     vlc_mutex_unlock( lockval.p_address );
  160.     var_Destroy( p_this->p_libvlc, "libvlc" );
  161.     p_bank = vlc_object_create( p_this, sizeof(module_bank_t) );
  162.     p_bank->psz_object_name = "module bank";
  163.     p_bank->i_usage = 1;
  164.     p_bank->i_cache = p_bank->i_loaded_cache = 0;
  165.     p_bank->pp_cache = p_bank->pp_loaded_cache = 0;
  166.     p_bank->b_cache = p_bank->b_cache_dirty =
  167.         p_bank->b_cache_delete = VLC_FALSE;
  168.     /*
  169.      * Store the symbols to be exported
  170.      */
  171. #ifdef HAVE_DYNAMIC_PLUGINS
  172.     STORE_SYMBOLS( &p_bank->symbols );
  173. #endif
  174.     /* Everything worked, attach the object */
  175.     p_this->p_libvlc->p_module_bank = p_bank;
  176.     vlc_object_attach( p_bank, p_this->p_libvlc );
  177.     module_LoadMain( p_this );
  178.     return;
  179. }
  180. /*****************************************************************************
  181.  * module_ResetBank: reset the module bank.
  182.  *****************************************************************************
  183.  * This function resets the module bank by unloading all unused plugin
  184.  * modules.
  185.  *****************************************************************************/
  186. void __module_ResetBank( vlc_object_t *p_this )
  187. {
  188.     msg_Err( p_this, "FIXME: module_ResetBank unimplemented" );
  189.     return;
  190. }
  191. /*****************************************************************************
  192.  * module_EndBank: empty the module bank.
  193.  *****************************************************************************
  194.  * This function unloads all unused plugin modules and empties the module
  195.  * bank in case of success.
  196.  *****************************************************************************/
  197. void __module_EndBank( vlc_object_t *p_this )
  198. {
  199.     module_t * p_next;
  200.     vlc_value_t lockval;
  201.     var_Create( p_this->p_libvlc, "libvlc", VLC_VAR_MUTEX );
  202.     var_Get( p_this->p_libvlc, "libvlc", &lockval );
  203.     vlc_mutex_lock( lockval.p_address );
  204.     if( !p_this->p_libvlc->p_module_bank )
  205.     {
  206.         vlc_mutex_unlock( lockval.p_address );
  207.         var_Destroy( p_this->p_libvlc, "libvlc" );
  208.         return;
  209.     }
  210.     if( --p_this->p_libvlc->p_module_bank->i_usage )
  211.     {
  212.         vlc_mutex_unlock( lockval.p_address );
  213.         var_Destroy( p_this->p_libvlc, "libvlc" );
  214.         return;
  215.     }
  216.     vlc_mutex_unlock( lockval.p_address );
  217.     var_Destroy( p_this->p_libvlc, "libvlc" );
  218. #ifdef HAVE_DYNAMIC_PLUGINS
  219. #define p_bank p_this->p_libvlc->p_module_bank
  220.     if( p_bank->b_cache ) CacheSave( p_this );
  221.     while( p_bank->i_loaded_cache-- )
  222.     {
  223.         free( p_bank->pp_loaded_cache[p_bank->i_loaded_cache]->psz_file );
  224.         free( p_bank->pp_loaded_cache[p_bank->i_loaded_cache] );
  225.         if( !p_bank->i_loaded_cache ) free( p_bank->pp_loaded_cache );
  226.     }
  227.     while( p_bank->i_cache-- )
  228.     {
  229.         free( p_bank->pp_cache[p_bank->i_cache]->psz_file );
  230.         free( p_bank->pp_cache[p_bank->i_cache] );
  231.         if( !p_bank->i_cache ) free( p_bank->pp_cache );
  232.     }
  233. #undef p_bank
  234. #endif
  235.     vlc_object_detach( p_this->p_libvlc->p_module_bank );
  236.     while( p_this->p_libvlc->p_module_bank->i_children )
  237.     {
  238.         p_next = (module_t *)p_this->p_libvlc->p_module_bank->pp_children[0];
  239.         if( DeleteModule( p_next ) )
  240.         {
  241.             /* Module deletion failed */
  242.             msg_Err( p_this, "module "%s" can't be removed, trying harder",
  243.                      p_next->psz_object_name );
  244.             /* We just free the module by hand. Niahahahahaha. */
  245.             vlc_object_detach( p_next );
  246.             vlc_object_destroy( p_next );
  247.         }
  248.     }
  249.     vlc_object_destroy( p_this->p_libvlc->p_module_bank );
  250.     return;
  251. }
  252. /*****************************************************************************
  253.  * module_LoadMain: load the main program info into the module bank.
  254.  *****************************************************************************
  255.  * This function fills the module bank structure with the main module infos.
  256.  * This is very useful as it will allow us to consider the main program just
  257.  * as another module, and for instance the configuration options of main will
  258.  * be available in the module bank structure just as for every other module.
  259.  *****************************************************************************/
  260. void __module_LoadMain( vlc_object_t *p_this )
  261. {
  262.     AllocateBuiltinModule( p_this, vlc_entry__main );
  263. }
  264. /*****************************************************************************
  265.  * module_LoadBuiltins: load all modules which we built with.
  266.  *****************************************************************************
  267.  * This function fills the module bank structure with the builtin modules.
  268.  *****************************************************************************/
  269. void __module_LoadBuiltins( vlc_object_t * p_this )
  270. {
  271.     msg_Dbg( p_this, "checking builtin modules" );
  272.     ALLOCATE_ALL_BUILTINS();
  273. }
  274. /*****************************************************************************
  275.  * module_LoadPlugins: load all plugin modules we can find.
  276.  *****************************************************************************
  277.  * This function fills the module bank structure with the plugin modules.
  278.  *****************************************************************************/
  279. void __module_LoadPlugins( vlc_object_t * p_this )
  280. {
  281. #ifdef HAVE_DYNAMIC_PLUGINS
  282.     msg_Dbg( p_this, "checking plugin modules" );
  283.     if( config_GetInt( p_this, "plugins-cache" ) )
  284.         p_this->p_libvlc->p_module_bank->b_cache = VLC_TRUE;
  285.     if( p_this->p_libvlc->p_module_bank->b_cache ||
  286.         p_this->p_libvlc->p_module_bank->b_cache_delete ) CacheLoad( p_this );
  287.     AllocateAllPlugins( p_this );
  288. #endif
  289. }
  290. /*****************************************************************************
  291.  * module_Need: return the best module function, given a capability list.
  292.  *****************************************************************************
  293.  * This function returns the module that best fits the asked capabilities.
  294.  *****************************************************************************/
  295. module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability,
  296.                           const char *psz_name, vlc_bool_t b_strict )
  297. {
  298.     typedef struct module_list_t module_list_t;
  299.     struct module_list_t
  300.     {
  301.         module_t *p_module;
  302.         int i_score;
  303.         vlc_bool_t b_force;
  304.         module_list_t *p_next;
  305.     };
  306.     module_list_t *p_list, *p_first, *p_tmp;
  307.     vlc_list_t *p_all;
  308.     int i_which_module, i_index = 0;
  309.     vlc_bool_t b_intf = VLC_FALSE;
  310.     module_t *p_module;
  311.     int   i_shortcuts = 0;
  312.     char *psz_shortcuts = NULL, *psz_var = NULL;
  313.     vlc_bool_t b_force_backup = p_this->b_force;
  314.     msg_Dbg( p_this, "looking for %s module", psz_capability );
  315.     /* Deal with variables */
  316.     if( psz_name && psz_name[0] == '$' )
  317.     {
  318.         vlc_value_t val;
  319.         var_Create( p_this, psz_name + 1, VLC_VAR_MODULE | VLC_VAR_DOINHERIT );
  320.         var_Get( p_this, psz_name + 1, &val );
  321.         psz_var = val.psz_string;
  322.         psz_name = psz_var;
  323.     }
  324.     /* Count how many different shortcuts were asked for */
  325.     if( psz_name && *psz_name )
  326.     {
  327.         char *psz_parser, *psz_last_shortcut;
  328.         /* If the user wants none, give him none. */
  329.         if( !strcmp( psz_name, "none" ) )
  330.         {
  331.             if( psz_var ) free( psz_var );
  332.             return NULL;
  333.         }
  334.         i_shortcuts++;
  335.         psz_shortcuts = psz_last_shortcut = strdup( psz_name );
  336.         for( psz_parser = psz_shortcuts; *psz_parser; psz_parser++ )
  337.         {
  338.             if( *psz_parser == ',' )
  339.             {
  340.                  *psz_parser = '';
  341.                  i_shortcuts++;
  342.                  psz_last_shortcut = psz_parser + 1;
  343.             }
  344.         }
  345.         /* Check if the user wants to override the "strict" mode */
  346.         if( psz_last_shortcut )
  347.         {
  348.             if( !strcmp(psz_last_shortcut, "none") )
  349.             {
  350.                 b_strict = VLC_TRUE;
  351.                 i_shortcuts--;
  352.             }
  353.             else if( !strcmp(psz_last_shortcut, "any") )
  354.             {
  355.                 b_strict = VLC_FALSE;
  356.                 i_shortcuts--;
  357.             }
  358.         }
  359.     }
  360.     /* Sort the modules and test them */
  361.     p_all = vlc_list_find( p_this, VLC_OBJECT_MODULE, FIND_ANYWHERE );
  362.     p_list = malloc( p_all->i_count * sizeof( module_list_t ) );
  363.     p_first = NULL;
  364.     /* Parse the module list for capabilities and probe each of them */
  365.     for( i_which_module = 0; i_which_module < p_all->i_count; i_which_module++ )
  366.     {
  367.         int i_shortcut_bonus = 0;
  368.         p_module = (module_t *)p_all->p_values[i_which_module].p_object;
  369.         /* Test that this module can do what we need */
  370.         if( strcmp( p_module->psz_capability, psz_capability ) )
  371.         {
  372.             /* Don't recurse through the sub-modules because vlc_list_find()
  373.              * will list them anyway. */
  374.             continue;
  375.         }
  376.         /* Test if we have the required CPU */
  377.         if( (p_module->i_cpu & p_this->p_libvlc->i_cpu) != p_module->i_cpu )
  378.         {
  379.             continue;
  380.         }
  381.         /* If we required a shortcut, check this plugin provides it. */
  382.         if( i_shortcuts > 0 )
  383.         {
  384.             vlc_bool_t b_trash;
  385.             int i_dummy, i_short = i_shortcuts;
  386.             char *psz_name = psz_shortcuts;
  387.             /* Let's drop modules with a <= 0 score (unless they are
  388.              * explicitly requested) */
  389.             b_trash = p_module->i_score <= 0;
  390.             while( i_short > 0 )
  391.             {
  392.                 for( i_dummy = 0; p_module->pp_shortcuts[i_dummy]; i_dummy++ )
  393.                 {
  394.                     if( !strcasecmp( psz_name,
  395.                                      p_module->pp_shortcuts[i_dummy] ) )
  396.                     {
  397.                         /* Found it */
  398.                         b_trash = VLC_FALSE;
  399.                         i_shortcut_bonus = i_short * 10000;
  400.                         break;
  401.                     }
  402.                 }
  403.                 if( i_shortcut_bonus )
  404.                 {
  405.                     /* We found it... remember ? */
  406.                     break;
  407.                 }
  408.                 /* Go to the next shortcut... This is so lame! */
  409.                 while( *psz_name )
  410.                 {
  411.                     psz_name++;
  412.                 }
  413.                 psz_name++;
  414.                 i_short--;
  415.             }
  416.             /* If we are in "strict" mode and we couldn't
  417.              * find the module in the list of provided shortcuts,
  418.              * then kick the bastard out of here!!! */
  419.             if( i_short == 0 && b_strict )
  420.             {
  421.                 b_trash = VLC_TRUE;
  422.             }
  423.             if( b_trash )
  424.             {
  425.                 continue;
  426.             }
  427.         }
  428.         /* If we didn't require a shortcut, trash <= 0 scored plugins */
  429.         else if( p_module->i_score <= 0 )
  430.         {
  431.             continue;
  432.         }
  433.         /* Special case: test if we requested a particular intf plugin */
  434.         if( !i_shortcuts && p_module->psz_program
  435.              && !strcmp( psz_capability, "interface" )
  436.              && !strcmp( p_module->psz_program,
  437.                          p_this->p_vlc->psz_object_name ) )
  438.         {
  439.             if( !b_intf )
  440.             {
  441.                 /* Remove previous non-matching plugins */
  442.                 i_index = 0;
  443.                 b_intf = VLC_TRUE;
  444.             }
  445.         }
  446.         else if( b_intf )
  447.         {
  448.             /* This one doesn't match */
  449.             continue;
  450.         }
  451.         /* Store this new module */
  452.         p_list[ i_index ].p_module = p_module;
  453.         p_list[ i_index ].i_score = p_module->i_score + i_shortcut_bonus;
  454.         p_list[ i_index ].b_force = !!i_shortcut_bonus;
  455.         /* Add it to the modules-to-probe list */
  456.         if( i_index == 0 )
  457.         {
  458.             p_list[ 0 ].p_next = NULL;
  459.             p_first = p_list;
  460.         }
  461.         else
  462.         {
  463.             /* Ok, so at school you learned that quicksort is quick, and
  464.              * bubble sort sucks raw eggs. But that's when dealing with
  465.              * thousands of items. Here we have barely 50. */
  466.             module_list_t *p_newlist = p_first;
  467.             if( p_first->i_score < p_list[ i_index ].i_score )
  468.             {
  469.                 p_list[ i_index ].p_next = p_first;
  470.                 p_first = &p_list[ i_index ];
  471.             }
  472.             else
  473.             {
  474.                 while( p_newlist->p_next != NULL &&
  475.                     p_newlist->p_next->i_score >= p_list[ i_index ].i_score )
  476.                 {
  477.                     p_newlist = p_newlist->p_next;
  478.                 }
  479.                 p_list[ i_index ].p_next = p_newlist->p_next;
  480.                 p_newlist->p_next = &p_list[ i_index ];
  481.             }
  482.         }
  483.         i_index++;
  484.     }
  485.     msg_Dbg( p_this, "probing %i candidate%s",
  486.                      i_index, i_index == 1 ? "" : "s" );
  487.     /* Lock all candidate modules */
  488.     p_tmp = p_first;
  489.     while( p_tmp != NULL )
  490.     {
  491.         vlc_object_yield( p_tmp->p_module );
  492.         p_tmp = p_tmp->p_next;
  493.     }
  494.     /* We can release the list, interesting modules were yielded */
  495.     vlc_list_release( p_all );
  496.     /* Parse the linked list and use the first successful module */
  497.     p_tmp = p_first;
  498.     while( p_tmp != NULL )
  499.     {
  500. #ifdef HAVE_DYNAMIC_PLUGINS
  501.         /* Make sure the module is loaded in mem */
  502.         module_t *p_module = p_tmp->p_module->b_submodule ?
  503.             (module_t *)p_tmp->p_module->p_parent : p_tmp->p_module;
  504.         if( !p_module->b_builtin && !p_module->b_loaded )
  505.         {
  506.             module_t *p_new_module =
  507.                 AllocatePlugin( p_this, p_module->psz_filename );
  508.             if( p_new_module )
  509.             {
  510.                 CacheMerge( p_this, p_module, p_new_module );
  511.                 vlc_object_attach( p_new_module, p_module );
  512.                 DeleteModule( p_new_module );
  513.             }
  514.         }
  515. #endif
  516.         p_this->b_force = p_tmp->b_force;
  517.         if( p_tmp->p_module->pf_activate
  518.              && p_tmp->p_module->pf_activate( p_this ) == VLC_SUCCESS )
  519.         {
  520.             break;
  521.         }
  522.         vlc_object_release( p_tmp->p_module );
  523.         p_tmp = p_tmp->p_next;
  524.     }
  525.     /* Store the locked module value */
  526.     if( p_tmp != NULL )
  527.     {
  528.         p_module = p_tmp->p_module;
  529.         p_tmp = p_tmp->p_next;
  530.     }
  531.     else
  532.     {
  533.         p_module = NULL;
  534.     }
  535.     /* Unlock the remaining modules */
  536.     while( p_tmp != NULL )
  537.     {
  538.         vlc_object_release( p_tmp->p_module );
  539.         p_tmp = p_tmp->p_next;
  540.     }
  541.     free( p_list );
  542.     p_this->b_force = b_force_backup;
  543.     if( p_module != NULL )
  544.     {
  545.         msg_Dbg( p_module, "using %s module "%s"",
  546.                  psz_capability, p_module->psz_object_name );
  547.     }
  548.     else if( p_first == NULL )
  549.     {
  550.         if( !strcmp( psz_capability, "access_demux" ) )
  551.         {
  552.             msg_Warn( p_this, "no %s module matched "%s"",
  553.                  psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
  554.         }
  555.         else
  556.         {  
  557.             msg_Err( p_this, "no %s module matched "%s"",
  558.                  psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
  559.         }
  560.     }
  561.     else if( psz_name != NULL && *psz_name )
  562.     {
  563.         msg_Warn( p_this, "no %s module matching "%s" could be loaded",
  564.                   psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
  565.     }
  566.     if( psz_shortcuts )
  567.     {
  568.         free( psz_shortcuts );
  569.     }
  570.     if( psz_var )
  571.     {
  572.         free( psz_var );
  573.     }
  574.     /* Don't forget that the module is still locked */
  575.     return p_module;
  576. }
  577. /*****************************************************************************
  578.  * module_Unneed: decrease the usage count of a module.
  579.  *****************************************************************************
  580.  * This function must be called by the thread that called module_Need, to
  581.  * decrease the reference count and allow for hiding of modules.
  582.  *****************************************************************************/
  583. void __module_Unneed( vlc_object_t * p_this, module_t * p_module )
  584. {
  585.     /* Use the close method */
  586.     if( p_module->pf_deactivate )
  587.     {
  588.         p_module->pf_deactivate( p_this );
  589.     }
  590.     msg_Dbg( p_module, "unlocking module "%s"", p_module->psz_object_name );
  591.     vlc_object_release( p_module );
  592.     return;
  593. }
  594. /*****************************************************************************
  595.  * Following functions are local.
  596.  *****************************************************************************/
  597. /*****************************************************************************
  598.  * AllocateAllPlugins: load all plugin modules we can find.
  599.  *****************************************************************************/
  600. #ifdef HAVE_DYNAMIC_PLUGINS
  601. static void AllocateAllPlugins( vlc_object_t *p_this )
  602. {
  603.     /* Yes, there are two NULLs because we replace one with "plugin-path". */
  604. #if defined( WIN32 ) || defined( UNDER_CE )
  605.     char *path[] = { "modules", "", "plugins", 0, 0 };
  606. #else
  607.     char *path[] = { "modules", PLUGIN_PATH, "plugins", 0, 0 };
  608. #endif
  609.     char **ppsz_path = path;
  610.     char *psz_fullpath;
  611.     /* If the user provided a plugin path, we add it to the list */
  612.     path[ sizeof(path)/sizeof(char*) - 2 ] =
  613.         config_GetPsz( p_this, "plugin-path" );
  614.     for( ; *ppsz_path != NULL ; ppsz_path++ )
  615.     {
  616.         if( !(*ppsz_path)[0] ) continue;
  617. #if defined( SYS_BEOS ) || defined( SYS_DARWIN ) || defined( WIN32 )
  618.         /* Handle relative as well as absolute paths */
  619. #ifdef WIN32
  620.         if( (*ppsz_path)[0] != '\' && (*ppsz_path)[0] != '/' &&
  621.             (*ppsz_path)[1] != ':' )
  622. #else
  623.         if( (*ppsz_path)[0] != '/' )
  624. #endif
  625.         {
  626.             int i_dirlen = strlen( *ppsz_path );
  627.             i_dirlen += strlen( p_this->p_libvlc->psz_vlcpath ) + 2;
  628.             psz_fullpath = malloc( i_dirlen );
  629.             if( psz_fullpath == NULL )
  630.             {
  631.                 continue;
  632.             }
  633. #ifdef WIN32
  634.             sprintf( psz_fullpath, "%s\%s",
  635.                      p_this->p_libvlc->psz_vlcpath, *ppsz_path );
  636. #else
  637.             sprintf( psz_fullpath, "%s/%s",
  638.                      p_this->p_libvlc->psz_vlcpath, *ppsz_path );
  639. #endif
  640.         }
  641.         else
  642. #endif
  643.         {
  644.             psz_fullpath = strdup( *ppsz_path );
  645.         }
  646.         msg_Dbg( p_this, "recursively browsing `%s'", psz_fullpath );
  647.         /* Don't go deeper than 5 subdirectories */
  648.         AllocatePluginDir( p_this, psz_fullpath, 5 );
  649.         free( psz_fullpath );
  650.     }
  651.     /* Free plugin-path */
  652.     if( path[ sizeof(path)/sizeof(char*) - 2 ] )
  653.         free( path[ sizeof(path)/sizeof(char*) - 2 ] );
  654.     path[ sizeof(path)/sizeof(char*) - 2 ] = NULL;
  655. }
  656. /*****************************************************************************
  657.  * AllocatePluginDir: recursively parse a directory to look for plugins
  658.  *****************************************************************************/
  659. static void AllocatePluginDir( vlc_object_t *p_this, const char *psz_dir,
  660.                                int i_maxdepth )
  661. {
  662. #if defined( UNDER_CE ) || defined( _MSC_VER )
  663. #ifdef UNDER_CE
  664.     wchar_t psz_wpath[MAX_PATH + 256];
  665.     wchar_t psz_wdir[MAX_PATH];
  666. #endif
  667.     char psz_path[MAX_PATH + 256];
  668.     WIN32_FIND_DATA finddata;
  669.     HANDLE handle;
  670.     unsigned int rc;
  671. #else
  672.     int    i_dirlen;
  673.     DIR *  dir;
  674.     struct dirent * file;
  675. #endif
  676.     char * psz_file;
  677.     if( p_this->p_vlc->b_die || i_maxdepth < 0 )
  678.     {
  679.         return;
  680.     }
  681. #if defined( UNDER_CE ) || defined( _MSC_VER )
  682. #ifdef UNDER_CE
  683.     MultiByteToWideChar( CP_ACP, 0, psz_dir, -1, psz_wdir, MAX_PATH );
  684.     rc = GetFileAttributes( psz_wdir );
  685.     if( !(rc & FILE_ATTRIBUTE_DIRECTORY) ) return; /* Not a directory */
  686.     /* Parse all files in the directory */
  687.     swprintf( psz_wpath, L"%ls\*", psz_wdir );
  688. #else
  689.     rc = GetFileAttributes( psz_dir );
  690.     if( !(rc & FILE_ATTRIBUTE_DIRECTORY) ) return; /* Not a directory */
  691. #endif
  692.     /* Parse all files in the directory */
  693.     sprintf( psz_path, "%s\*", psz_dir );
  694. #ifdef UNDER_CE
  695.     handle = FindFirstFile( psz_wpath, &finddata );
  696. #else
  697.     handle = FindFirstFile( psz_path, &finddata );
  698. #endif
  699.     if( handle == INVALID_HANDLE_VALUE )
  700.     {
  701.         /* Empty directory */
  702.         return;
  703.     }
  704.     /* Parse the directory and try to load all files it contains. */
  705.     do
  706.     {
  707. #ifdef UNDER_CE
  708.         unsigned int i_len = wcslen( finddata.cFileName );
  709.         swprintf( psz_wpath, L"%ls\%ls", psz_wdir, finddata.cFileName );
  710.         sprintf( psz_path, "%s\%ls", psz_dir, finddata.cFileName );
  711. #else
  712.         unsigned int i_len = strlen( finddata.cFileName );
  713.         sprintf( psz_path, "%s\%s", psz_dir, finddata.cFileName );
  714. #endif
  715.         /* Skip ".", ".." and anything starting with "." */
  716.         if( !*finddata.cFileName || *finddata.cFileName == '.' )
  717.         {
  718.             if( !FindNextFile( handle, &finddata ) ) break;
  719.             continue;
  720.         }
  721. #ifdef UNDER_CE
  722.         if( GetFileAttributes( psz_wpath ) & FILE_ATTRIBUTE_DIRECTORY )
  723. #else
  724.         if( GetFileAttributes( psz_path ) & FILE_ATTRIBUTE_DIRECTORY )
  725. #endif
  726.         {
  727.             AllocatePluginDir( p_this, psz_path, i_maxdepth - 1 );
  728.         }
  729.         else if( i_len > strlen( LIBEXT )
  730.                   /* We only load files ending with LIBEXT */
  731.                   && !strncasecmp( psz_path + strlen( psz_path)
  732.                                    - strlen( LIBEXT ),
  733.                                    LIBEXT, strlen( LIBEXT ) ) )
  734.         {
  735.             WIN32_FILE_ATTRIBUTE_DATA attrbuf;
  736.             int64_t i_time = 0, i_size = 0;
  737. #ifdef UNDER_CE
  738.             if( GetFileAttributesEx( psz_wpath, GetFileExInfoStandard,
  739.                                      &attrbuf ) )
  740. #else
  741.             if( GetFileAttributesEx( psz_path, GetFileExInfoStandard,
  742.                                      &attrbuf ) )
  743. #endif
  744.             {
  745.                 i_time = attrbuf.ftLastWriteTime.dwHighDateTime;
  746.                 i_time <<= 32;
  747.                 i_time |= attrbuf.ftLastWriteTime.dwLowDateTime;
  748.                 i_size = attrbuf.nFileSizeHigh;
  749.                 i_size <<= 32;
  750.                 i_size |= attrbuf.nFileSizeLow;
  751.             }
  752.             psz_file = psz_path;
  753.             AllocatePluginFile( p_this, psz_file, i_time, i_size );
  754.         }
  755.     }
  756.     while( !p_this->p_vlc->b_die && FindNextFile( handle, &finddata ) );
  757.     /* Close the directory */
  758.     FindClose( handle );
  759. #else
  760.     dir = opendir( psz_dir );
  761.     if( !dir )
  762.     {
  763.         return;
  764.     }
  765.     i_dirlen = strlen( psz_dir );
  766.     /* Parse the directory and try to load all files it contains. */
  767.     while( !p_this->p_vlc->b_die && (file = readdir( dir )) )
  768.     {
  769.         struct stat statbuf;
  770.         unsigned int i_len;
  771.         int i_stat;
  772.         /* Skip ".", ".." and anything starting with "." */
  773.         if( !*file->d_name || *file->d_name == '.' )
  774.         {
  775.             continue;
  776.         }
  777.         i_len = strlen( file->d_name );
  778.         psz_file = malloc( i_dirlen + 1 + i_len + 1 );
  779. #ifdef WIN32
  780.         sprintf( psz_file, "%s\%s", psz_dir, file->d_name );
  781. #else
  782.         sprintf( psz_file, "%s/%s", psz_dir, file->d_name );
  783. #endif
  784.         i_stat = stat( psz_file, &statbuf );
  785.         if( !i_stat && statbuf.st_mode & S_IFDIR )
  786.         {
  787.             AllocatePluginDir( p_this, psz_file, i_maxdepth - 1 );
  788.         }
  789.         else if( i_len > strlen( LIBEXT )
  790.                   /* We only load files ending with LIBEXT */
  791.                   && !strncasecmp( file->d_name + i_len - strlen( LIBEXT ),
  792.                                    LIBEXT, strlen( LIBEXT ) ) )
  793.         {
  794.             int64_t i_time = 0, i_size = 0;
  795.             if( !i_stat )
  796.             {
  797.                 i_time = statbuf.st_mtime;
  798.                 i_size = statbuf.st_size;
  799.             }
  800.             AllocatePluginFile( p_this, psz_file, i_time, i_size );
  801.         }
  802.         free( psz_file );
  803.     }
  804.     /* Close the directory */
  805.     closedir( dir );
  806. #endif
  807. }
  808. /*****************************************************************************
  809.  * AllocatePluginFile: load a module into memory and initialize it.
  810.  *****************************************************************************
  811.  * This function loads a dynamically loadable module and allocates a structure
  812.  * for its information data. The module can then be handled by module_Need
  813.  * and module_Unneed. It can be removed by DeleteModule.
  814.  *****************************************************************************/
  815. static int AllocatePluginFile( vlc_object_t * p_this, char * psz_file,
  816.                                int64_t i_file_time, int64_t i_file_size )
  817. {
  818.     module_t * p_module;
  819.     module_cache_t *p_cache_entry = NULL;
  820.     /*
  821.      * Check our plugins cache first then load plugin if needed
  822.      */
  823.     p_cache_entry =
  824.         CacheFind( p_this, psz_file, i_file_time, i_file_size );
  825.     if( !p_cache_entry )
  826.     {
  827.         p_module = AllocatePlugin( p_this, psz_file );
  828.     }
  829.     else
  830.     {
  831.         /* If junk dll, don't try to load it */
  832.         if( p_cache_entry->b_junk )
  833.         {
  834.             p_module = NULL;
  835.         }
  836.         else
  837.         {
  838.             module_config_t *p_item;
  839.             p_module = p_cache_entry->p_module;
  840.             p_module->b_loaded = VLC_FALSE;
  841.             /* For now we force loading if the module's config contains
  842.              * callbacks or actions.
  843.              * Could be optimized by adding an API call.*/
  844.             for( p_item = p_module->p_config;
  845.                  p_item->i_type != CONFIG_HINT_END; p_item++ )
  846.             {
  847.                 if( p_item->pf_callback || p_item->i_action )
  848.                     p_module = AllocatePlugin( p_this, psz_file );
  849.             }
  850.         }
  851.     }
  852.     if( p_module )
  853.     {
  854.         /* Everything worked fine !
  855.          * The module is ready to be added to the list. */
  856.         p_module->b_builtin = VLC_FALSE;
  857.         /* msg_Dbg( p_this, "plugin "%s", %s",
  858.                     p_module->psz_object_name, p_module->psz_longname ); */
  859.         vlc_object_attach( p_module, p_this->p_libvlc->p_module_bank );
  860.     }
  861.     if( !p_this->p_libvlc->p_module_bank->b_cache ) return 0;
  862.     /* Add entry to cache */
  863. #define p_bank p_this->p_libvlc->p_module_bank
  864.     p_bank->pp_cache =
  865.         realloc( p_bank->pp_cache, (p_bank->i_cache + 1) * sizeof(void *) );
  866.     p_bank->pp_cache[p_bank->i_cache] = malloc( sizeof(module_cache_t) );
  867.     p_bank->pp_cache[p_bank->i_cache]->psz_file = strdup( psz_file );
  868.     p_bank->pp_cache[p_bank->i_cache]->i_time = i_file_time;
  869.     p_bank->pp_cache[p_bank->i_cache]->i_size = i_file_size;
  870.     p_bank->pp_cache[p_bank->i_cache]->b_junk = p_module ? 0 : 1;
  871.     p_bank->pp_cache[p_bank->i_cache]->p_module = p_module;
  872.     p_bank->i_cache++;
  873.     return p_module ? 0 : -1;
  874. }
  875. /*****************************************************************************
  876.  * AllocatePlugin: load a module into memory and initialize it.
  877.  *****************************************************************************
  878.  * This function loads a dynamically loadable module and allocates a structure
  879.  * for its information data. The module can then be handled by module_Need
  880.  * and module_Unneed. It can be removed by DeleteModule.
  881.  *****************************************************************************/
  882. static module_t * AllocatePlugin( vlc_object_t * p_this, char * psz_file )
  883. {
  884.     module_t * p_module;
  885.     module_handle_t handle;
  886.     if( LoadModule( p_this, psz_file, &handle ) ) return NULL;
  887.     /* Now that we have successfully loaded the module, we can
  888.      * allocate a structure for it */
  889.     p_module = vlc_object_create( p_this, VLC_OBJECT_MODULE );
  890.     if( p_module == NULL )
  891.     {
  892.         msg_Err( p_this, "out of memory" );
  893.         CloseModule( handle );
  894.         return NULL;
  895.     }
  896.     /* We need to fill these since they may be needed by CallEntry() */
  897.     p_module->psz_filename = psz_file;
  898.     p_module->handle = handle;
  899.     p_module->p_symbols = &p_this->p_libvlc->p_module_bank->symbols;
  900.     p_module->b_loaded = VLC_TRUE;
  901.     /* Initialize the module: fill p_module, default config */
  902.     if( CallEntry( p_module ) != 0 )
  903.     {
  904.         /* We couldn't call module_init() */
  905.         vlc_object_destroy( p_module );
  906.         CloseModule( handle );
  907.         return NULL;
  908.     }
  909.     DupModule( p_module );
  910.     p_module->psz_filename = strdup( p_module->psz_filename );
  911.     /* Everything worked fine ! The module is ready to be added to the list. */
  912.     p_module->b_builtin = VLC_FALSE;
  913.     return p_module;
  914. }
  915. /*****************************************************************************
  916.  * DupModule: make a plugin module standalone.
  917.  *****************************************************************************
  918.  * This function duplicates all strings in the module, so that the dynamic
  919.  * object can be unloaded. It acts recursively on submodules.
  920.  *****************************************************************************/
  921. static void DupModule( module_t *p_module )
  922. {
  923.     char **pp_shortcut;
  924.     int i_submodule;
  925.     for( pp_shortcut = p_module->pp_shortcuts ; *pp_shortcut ; pp_shortcut++ )
  926.     {
  927.         *pp_shortcut = strdup( *pp_shortcut );
  928.     }
  929.     /* We strdup() these entries so that they are still valid when the
  930.      * module is unloaded. */
  931.     p_module->psz_object_name = strdup( p_module->psz_object_name );
  932.     p_module->psz_capability = strdup( p_module->psz_capability );
  933.     p_module->psz_shortname = strdup( p_module->psz_shortname );
  934.     p_module->psz_longname = strdup( p_module->psz_longname );
  935.     if( p_module->psz_program != NULL )
  936.     {
  937.         p_module->psz_program = strdup( p_module->psz_program );
  938.     }
  939.     for( i_submodule = 0; i_submodule < p_module->i_children; i_submodule++ )
  940.     {
  941.         DupModule( (module_t*)p_module->pp_children[ i_submodule ] );
  942.     }
  943. }
  944. /*****************************************************************************
  945.  * UndupModule: free a duplicated module.
  946.  *****************************************************************************
  947.  * This function frees the allocations done in DupModule().
  948.  *****************************************************************************/
  949. static void UndupModule( module_t *p_module )
  950. {
  951.     char **pp_shortcut;
  952.     int i_submodule;
  953.     for( i_submodule = 0; i_submodule < p_module->i_children; i_submodule++ )
  954.     {
  955.         UndupModule( (module_t*)p_module->pp_children[ i_submodule ] );
  956.     }
  957.     for( pp_shortcut = p_module->pp_shortcuts ; *pp_shortcut ; pp_shortcut++ )
  958.     {
  959.         free( *pp_shortcut );
  960.     }
  961.     free( p_module->psz_object_name );
  962.     free( p_module->psz_capability );
  963.     free( p_module->psz_shortname );
  964.     free( p_module->psz_longname );
  965.     if( p_module->psz_program != NULL )
  966.     {
  967.         free( p_module->psz_program );
  968.     }
  969. }
  970. #endif /* HAVE_DYNAMIC_PLUGINS */
  971. /*****************************************************************************
  972.  * AllocateBuiltinModule: initialize a builtin module.
  973.  *****************************************************************************
  974.  * This function registers a builtin module and allocates a structure
  975.  * for its information data. The module can then be handled by module_Need
  976.  * and module_Unneed. It can be removed by DeleteModule.
  977.  *****************************************************************************/
  978. static int AllocateBuiltinModule( vlc_object_t * p_this,
  979.                                   int ( *pf_entry ) ( module_t * ) )
  980. {
  981.     module_t * p_module;
  982.     /* Now that we have successfully loaded the module, we can
  983.      * allocate a structure for it */
  984.     p_module = vlc_object_create( p_this, VLC_OBJECT_MODULE );
  985.     if( p_module == NULL )
  986.     {
  987.         msg_Err( p_this, "out of memory" );
  988.         return -1;
  989.     }
  990.     /* Initialize the module : fill p_module->psz_object_name, etc. */
  991.     if( pf_entry( p_module ) != 0 )
  992.     {
  993.         /* With a well-written module we shouldn't have to print an
  994.          * additional error message here, but just make sure. */
  995.         msg_Err( p_this, "failed calling entry point in builtin module" );
  996.         vlc_object_destroy( p_module );
  997.         return -1;
  998.     }
  999.     /* Everything worked fine ! The module is ready to be added to the list. */
  1000.     p_module->b_builtin = VLC_TRUE;
  1001.     /* msg_Dbg( p_this, "builtin "%s", %s",
  1002.                 p_module->psz_object_name, p_module->psz_longname ); */
  1003.     vlc_object_attach( p_module, p_this->p_libvlc->p_module_bank );
  1004.     return 0;
  1005. }
  1006. /*****************************************************************************
  1007.  * DeleteModule: delete a module and its structure.
  1008.  *****************************************************************************
  1009.  * This function can only be called if the module isn't being used.
  1010.  *****************************************************************************/
  1011. static int DeleteModule( module_t * p_module )
  1012. {
  1013.     vlc_object_detach( p_module );
  1014.     /* We free the structures that we strdup()ed in Allocate*Module(). */
  1015. #ifdef HAVE_DYNAMIC_PLUGINS
  1016.     if( !p_module->b_builtin )
  1017.     {
  1018.         if( p_module->b_loaded && p_module->b_unloadable )
  1019.         {
  1020.             CloseModule( p_module->handle );
  1021.         }
  1022.         UndupModule( p_module );
  1023.         free( p_module->psz_filename );
  1024.     }
  1025. #endif
  1026.     /* Free and detach the object's children */
  1027.     while( p_module->i_children )
  1028.     {
  1029.         vlc_object_t *p_this = p_module->pp_children[0];
  1030.         vlc_object_detach( p_this );
  1031.         vlc_object_destroy( p_this );
  1032.     }
  1033.     config_Free( p_module );
  1034.     vlc_object_destroy( p_module );
  1035.     return 0;
  1036. }
  1037. #ifdef HAVE_DYNAMIC_PLUGINS
  1038. /*****************************************************************************
  1039.  * CallEntry: call an entry point.
  1040.  *****************************************************************************
  1041.  * This function calls a symbol given its name and a module structure. The
  1042.  * symbol MUST refer to a function returning int and taking a module_t* as
  1043.  * an argument.
  1044.  *****************************************************************************/
  1045. static int CallEntry( module_t * p_module )
  1046. {
  1047.     static char *psz_name = "vlc_entry" MODULE_SUFFIX;
  1048.     int (* pf_symbol) ( module_t * p_module );
  1049.     /* Try to resolve the symbol */
  1050.     pf_symbol = (int (*)(module_t *)) GetSymbol( p_module->handle, psz_name );
  1051.     if( pf_symbol == NULL )
  1052.     {
  1053. #if defined(HAVE_DL_DYLD) || defined(HAVE_DL_BEOS)
  1054.         msg_Warn( p_module, "cannot find symbol "%s" in file `%s'",
  1055.                             psz_name, p_module->psz_filename );
  1056. #elif defined(HAVE_DL_WINDOWS)
  1057.         char *psz_error = GetWindowsError();
  1058.         msg_Warn( p_module, "cannot find symbol "%s" in file `%s' (%s)",
  1059.                             psz_name, p_module->psz_filename, psz_error );
  1060.         free( psz_error );
  1061. #elif defined(HAVE_DL_DLOPEN)
  1062.         msg_Warn( p_module, "cannot find symbol "%s" in file `%s' (%s)",
  1063.                             psz_name, p_module->psz_filename, dlerror() );
  1064. #elif defined(HAVE_DL_SHL_LOAD)
  1065.         msg_Warn( p_module, "cannot find symbol "%s" in file `%s' (%s)",
  1066.                             psz_name, p_module->psz_filename, strerror(errno) );
  1067. #else
  1068. #   error "Something is wrong in modules.c"
  1069. #endif
  1070.         return -1;
  1071.     }
  1072.     /* We can now try to call the symbol */
  1073.     if( pf_symbol( p_module ) != 0 )
  1074.     {
  1075.         /* With a well-written module we shouldn't have to print an
  1076.          * additional error message here, but just make sure. */
  1077.         msg_Err( p_module, "failed calling symbol "%s" in file `%s'",
  1078.                            psz_name, p_module->psz_filename );
  1079.         return -1;
  1080.     }
  1081.     /* Everything worked fine, we can return */
  1082.     return 0;
  1083. }
  1084. /*****************************************************************************
  1085.  * LoadModule: loads a dynamic library
  1086.  *****************************************************************************
  1087.  * This function loads a dynamically linked library using a system dependant
  1088.  * method. Will return 0 on success as well as the module handle.
  1089.  *****************************************************************************/
  1090. static int LoadModule( vlc_object_t *p_this, char *psz_file,
  1091.                        module_handle_t *p_handle )
  1092. {
  1093.     module_handle_t handle;
  1094. #if defined(HAVE_DL_DYLD)
  1095.     NSObjectFileImage image;
  1096.     NSObjectFileImageReturnCode ret;
  1097.     ret = NSCreateObjectFileImageFromFile( psz_file, &image );
  1098.     if( ret != NSObjectFileImageSuccess )
  1099.     {
  1100.         msg_Warn( p_this, "cannot create image from `%s'", psz_file );
  1101.         return -1;
  1102.     }
  1103.     /* Open the dynamic module */
  1104.     handle = NSLinkModule( image, psz_file,
  1105.                            NSLINKMODULE_OPTION_RETURN_ON_ERROR );
  1106.     if( !handle )
  1107.     {
  1108.         NSLinkEditErrors errors;
  1109.         const char *psz_file, *psz_err;
  1110.         int i_errnum;
  1111.         NSLinkEditError( &errors, &i_errnum, &psz_file, &psz_err );
  1112.         msg_Warn( p_this, "cannot link module `%s' (%s)", psz_file, psz_err );
  1113.         NSDestroyObjectFileImage( image );
  1114.         return -1;
  1115.     }
  1116.     /* Destroy our image, we won't need it */
  1117.     NSDestroyObjectFileImage( image );
  1118. #elif defined(HAVE_DL_BEOS)
  1119.     handle = load_add_on( psz_file );
  1120.     if( handle < 0 )
  1121.     {
  1122.         msg_Warn( p_this, "cannot load module `%s'", psz_file );
  1123.         return -1;
  1124.     }
  1125. #elif defined(HAVE_DL_WINDOWS)
  1126. #ifdef UNDER_CE
  1127.     {
  1128.         wchar_t psz_wfile[MAX_PATH];
  1129.         MultiByteToWideChar( CP_ACP, 0, psz_file, -1, psz_wfile, MAX_PATH );
  1130.         handle = LoadLibrary( psz_wfile );
  1131.     }
  1132. #else
  1133.     handle = LoadLibrary( psz_file );
  1134. #endif
  1135.     if( handle == NULL )
  1136.     {
  1137.         char *psz_err = GetWindowsError();
  1138.         msg_Warn( p_this, "cannot load module `%s' (%s)", psz_file, psz_err );
  1139.         free( psz_err );
  1140.         return -1;
  1141.     }
  1142. #elif defined(HAVE_DL_DLOPEN) && defined(RTLD_NOW)
  1143.     /* static is OK, we are called atomically */
  1144.     static vlc_bool_t b_kde = VLC_FALSE;
  1145. #   if defined(SYS_LINUX)
  1146.     /* XXX HACK #1 - we should NOT open modules with RTLD_GLOBAL, or we
  1147.      * are going to get namespace collisions when two modules have common
  1148.      * public symbols, but ALSA is being a pest here. */
  1149.     if( strstr( psz_file, "alsa_plugin" ) )
  1150.     {
  1151.         handle = dlopen( psz_file, RTLD_NOW | RTLD_GLOBAL );
  1152.         if( handle == NULL )
  1153.         {
  1154.             msg_Warn( p_this, "cannot load module `%s' (%s)",
  1155.                               psz_file, dlerror() );
  1156.             return -1;
  1157.         }
  1158.     }
  1159. #   endif
  1160.     /* XXX HACK #2 - the ugly KDE workaround. It seems that libkdewhatever
  1161.      * causes dlopen() to segfault if libstdc++ is not loaded in the caller,
  1162.      * so we just load libstdc++. Bwahahaha! ph34r! -- Sam. */
  1163.     /* Update: FYI, this is Debian bug #180505, and seems to be fixed. */
  1164.     if( !b_kde && !strstr( psz_file, "kde" ) )
  1165.     {
  1166.         dlopen( "libstdc++.so.6", RTLD_NOW )
  1167.          || dlopen( "libstdc++.so.5", RTLD_NOW )
  1168.          || dlopen( "libstdc++.so.4", RTLD_NOW )
  1169.          || dlopen( "libstdc++.so.3", RTLD_NOW );
  1170.         b_kde = VLC_TRUE;
  1171.     }
  1172.     handle = dlopen( psz_file, RTLD_NOW );
  1173.     if( handle == NULL )
  1174.     {
  1175.         msg_Warn( p_this, "cannot load module `%s' (%s)",
  1176.                           psz_file, dlerror() );
  1177.         return -1;
  1178.     }
  1179. #elif defined(HAVE_DL_DLOPEN)
  1180. #   if defined(DL_LAZY)
  1181.     handle = dlopen( psz_file, DL_LAZY );
  1182. #   else
  1183.     handle = dlopen( psz_file, 0 );
  1184. #   endif
  1185.     if( handle == NULL )
  1186.     {
  1187.         msg_Warn( p_this, "cannot load module `%s' (%s)",
  1188.                           psz_file, dlerror() );
  1189.         return -1;
  1190.     }
  1191. #elif defined(HAVE_DL_SHL_LOAD)
  1192.     handle = shl_load( psz_file, BIND_IMMEDIATE | BIND_NONFATAL, NULL );
  1193.     if( handle == NULL )
  1194.     {
  1195.         msg_Warn( p_this, "cannot load module `%s' (%s)",
  1196.                           psz_file, strerror(errno) );
  1197.         return -1;
  1198.     }
  1199. #else
  1200. #   error "Something is wrong in modules.c"
  1201. #endif
  1202.     *p_handle = handle;
  1203.     return 0;
  1204. }
  1205. /*****************************************************************************
  1206.  * CloseModule: unload a dynamic library
  1207.  *****************************************************************************
  1208.  * This function unloads a previously opened dynamically linked library
  1209.  * using a system dependant method. No return value is taken in consideration,
  1210.  * since some libraries sometimes refuse to close properly.
  1211.  *****************************************************************************/
  1212. static void CloseModule( module_handle_t handle )
  1213. {
  1214. #if defined(HAVE_DL_DYLD)
  1215.     NSUnLinkModule( handle, FALSE );
  1216. #elif defined(HAVE_DL_BEOS)
  1217.     unload_add_on( handle );
  1218. #elif defined(HAVE_DL_WINDOWS)
  1219.     FreeLibrary( handle );
  1220. #elif defined(HAVE_DL_DLOPEN)
  1221.     dlclose( handle );
  1222. #elif defined(HAVE_DL_SHL_LOAD)
  1223.     shl_unload( handle );
  1224. #endif
  1225.     return;
  1226. }
  1227. /*****************************************************************************
  1228.  * GetSymbol: get a symbol from a dynamic library
  1229.  *****************************************************************************
  1230.  * This function queries a loaded library for a symbol specified in a
  1231.  * string, and returns a pointer to it. We don't check for dlerror() or
  1232.  * similar functions, since we want a non-NULL symbol anyway.
  1233.  *****************************************************************************/
  1234. static void * _module_getsymbol( module_handle_t, const char * );
  1235. static void * GetSymbol( module_handle_t handle, const char * psz_function )
  1236. {
  1237.     void * p_symbol = _module_getsymbol( handle, psz_function );
  1238.     /* MacOS X dl library expects symbols to begin with "_". So do
  1239.      * some other operating systems. That's really lame, but hey, what
  1240.      * can we do ? */
  1241.     if( p_symbol == NULL )
  1242.     {
  1243.         char *psz_call = malloc( strlen( psz_function ) + 2 );
  1244.         strcpy( psz_call + 1, psz_function );
  1245.         psz_call[ 0 ] = '_';
  1246.         p_symbol = _module_getsymbol( handle, psz_call );
  1247.         free( psz_call );
  1248.     }
  1249.     return p_symbol;
  1250. }
  1251. static void * _module_getsymbol( module_handle_t handle,
  1252.                                  const char * psz_function )
  1253. {
  1254. #if defined(HAVE_DL_DYLD)
  1255.     NSSymbol sym = NSLookupSymbolInModule( handle, psz_function );
  1256.     return NSAddressOfSymbol( sym );
  1257. #elif defined(HAVE_DL_BEOS)
  1258.     void * p_symbol;
  1259.     if( B_OK == get_image_symbol( handle, psz_function,
  1260.                                   B_SYMBOL_TYPE_TEXT, &p_symbol ) )
  1261.     {
  1262.         return p_symbol;
  1263.     }
  1264.     else
  1265.     {
  1266.         return NULL;
  1267.     }
  1268. #elif defined(HAVE_DL_WINDOWS) && defined(UNDER_CE)
  1269.     wchar_t psz_real[256];
  1270.     MultiByteToWideChar( CP_ACP, 0, psz_function, -1, psz_real, 256 );
  1271.     return (void *)GetProcAddress( handle, psz_real );
  1272. #elif defined(HAVE_DL_WINDOWS) && defined(WIN32)
  1273.     return (void *)GetProcAddress( handle, (char *)psz_function );
  1274. #elif defined(HAVE_DL_DLOPEN)
  1275.     return dlsym( handle, psz_function );
  1276. #elif defined(HAVE_DL_SHL_LOAD)
  1277.     void *p_sym;
  1278.     shl_findsym( &handle, psz_function, TYPE_UNDEFINED, &p_sym );
  1279.     return p_sym;
  1280. #endif
  1281. }
  1282. #if defined(HAVE_DL_WINDOWS)
  1283. static char * GetWindowsError( void )
  1284. {
  1285. #if defined(UNDER_CE)
  1286.     wchar_t psz_tmp[256];
  1287.     char * psz_buffer = malloc( 256 );
  1288. #else
  1289.     char * psz_tmp = malloc( 256 );
  1290. #endif
  1291.     int i = 0, i_error = GetLastError();
  1292.     FormatMessage( FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
  1293.                    NULL, i_error, MAKELANGID (LANG_NEUTRAL, SUBLANG_DEFAULT),
  1294.                    (LPTSTR) psz_tmp, 256, NULL );
  1295.     /* Go to the end of the string */
  1296. #if defined(UNDER_CE)
  1297.     while( psz_tmp[i] && psz_tmp[i] != L'r' && psz_tmp[i] != L'n' )
  1298. #else
  1299.     while( psz_tmp[i] && psz_tmp[i] != 'r' && psz_tmp[i] != 'n' )
  1300. #endif
  1301.     {
  1302.         i++;
  1303.     }
  1304.     if( psz_tmp[i] )
  1305.     {
  1306. #if defined(UNDER_CE)
  1307.         swprintf( psz_tmp + i, L" (error %i)", i_error );
  1308.         psz_tmp[ 255 ] = L'';
  1309. #else
  1310.         snprintf( psz_tmp + i, 256 - i, " (error %i)", i_error );
  1311.         psz_tmp[ 255 ] = '';
  1312. #endif
  1313.     }
  1314. #if defined(UNDER_CE)
  1315.     WideCharToMultiByte( CP_ACP, WC_DEFAULTCHAR, psz_tmp, -1,
  1316.                          psz_buffer, 256, NULL, NULL );
  1317.     return psz_buffer;
  1318. #else
  1319.     return psz_tmp;
  1320. #endif
  1321. }
  1322. #endif /* HAVE_DL_WINDOWS */
  1323. /*****************************************************************************
  1324.  * LoadPluginsCache: loads the plugins cache file
  1325.  *****************************************************************************
  1326.  * This function will load the plugin cache if present and valid. This cache
  1327.  * will in turn be queried by AllocateAllPlugins() to see if it needs to
  1328.  * actually load the dynamically loadable module.
  1329.  * This allows us to only fully load plugins when they are actually used.
  1330.  *****************************************************************************/
  1331. static void CacheLoad( vlc_object_t *p_this )
  1332. {
  1333.     char *psz_filename, *psz_homedir;
  1334.     FILE *file;
  1335.     int i, j, i_size, i_read;
  1336.     char p_cachestring[sizeof(PLUGINSCACHE_DIR COPYRIGHT_MESSAGE)];
  1337.     char p_cachelang[6], p_lang[6];
  1338.     int i_cache;
  1339.     module_cache_t **pp_cache = 0;
  1340.     int32_t i_file_size, i_marker;
  1341.     psz_homedir = p_this->p_vlc->psz_homedir;
  1342.     if( !psz_homedir )
  1343.     {
  1344.         msg_Err( p_this, "psz_homedir is null" );
  1345.         return;
  1346.     }
  1347.     i_size = asprintf( &psz_filename, "%s/%s/%s/%s", psz_homedir, CONFIG_DIR,
  1348.                        PLUGINSCACHE_DIR, CacheName() );
  1349.     if( i_size <= 0 )
  1350.     {
  1351.         msg_Err( p_this, "out of memory" );
  1352.         return;
  1353.     }
  1354.     if( p_this->p_libvlc->p_module_bank->b_cache_delete )
  1355.     {
  1356. #if !defined( UNDER_CE )
  1357.         unlink( psz_filename );
  1358. #else
  1359.         wchar_t psz_wf[MAX_PATH];
  1360.         MultiByteToWideChar( CP_ACP, 0, psz_filename, -1, psz_wf, MAX_PATH );
  1361.         DeleteFile( psz_wf );
  1362. #endif
  1363.         msg_Dbg( p_this, "removing plugins cache file %s", psz_filename );
  1364.         return;
  1365.     }
  1366.     msg_Dbg( p_this, "loading plugins cache file %s", psz_filename );
  1367.     file = fopen( psz_filename, "rb" );
  1368.     if( !file )
  1369.     {
  1370.         msg_Warn( p_this, "could not open plugins cache file %s for reading",
  1371.                   psz_filename );
  1372.         free( psz_filename );
  1373.         return;
  1374.     }
  1375.     free( psz_filename );
  1376.     /* Check the file size */
  1377.     i_read = fread( &i_file_size, sizeof(char), sizeof(i_file_size), file );
  1378.     if( i_read != sizeof(i_file_size) )
  1379.     {
  1380.         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
  1381.                   "(too short)" );
  1382.         fclose( file );
  1383.         return;
  1384.     }
  1385.     fseek( file, 0, SEEK_END );
  1386.     if( ftell( file ) != i_file_size )
  1387.     {
  1388.         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
  1389.                   "(corrupted size)" );
  1390.         fclose( file );
  1391.         return;
  1392.     }
  1393.     fseek( file, sizeof(i_file_size), SEEK_SET );
  1394.     /* Check the file is a plugins cache */
  1395.     i_size = sizeof(PLUGINSCACHE_DIR COPYRIGHT_MESSAGE) - 1;
  1396.     i_read = fread( p_cachestring, sizeof(char), i_size, file );
  1397.     if( i_read != i_size ||
  1398.         memcmp( p_cachestring, PLUGINSCACHE_DIR COPYRIGHT_MESSAGE, i_size ) )
  1399.     {
  1400.         msg_Warn( p_this, "This doesn't look like a valid plugins cache" );
  1401.         fclose( file );
  1402.         return;
  1403.     }
  1404.     /* Check the language hasn't changed */
  1405.     sprintf( p_lang, "%5.5s", _("C") ); i_size = 5;
  1406.     i_read = fread( p_cachelang, sizeof(char), i_size, file );
  1407.     if( i_read != i_size || memcmp( p_cachelang, p_lang, i_size ) )
  1408.     {
  1409.         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
  1410.                   "(language changed)" );
  1411.         fclose( file );
  1412.         return;
  1413.     }
  1414.     /* Check header marker */
  1415.     i_read = fread( &i_marker, sizeof(char), sizeof(i_marker), file );
  1416.     if( i_read != sizeof(i_marker) ||
  1417.         i_marker != ftell( file ) - (int)sizeof(i_marker) )
  1418.     {
  1419.         msg_Warn( p_this, "This doesn't look like a valid plugins cache "
  1420.                   "(corrupted header)" );
  1421.         fclose( file );
  1422.         return;
  1423.     }
  1424.     p_this->p_libvlc->p_module_bank->i_loaded_cache = 0;
  1425.     fread( &i_cache, sizeof(char), sizeof(i_cache), file );
  1426.     pp_cache = p_this->p_libvlc->p_module_bank->pp_loaded_cache =
  1427.         malloc( i_cache * sizeof(void *) );
  1428. #define LOAD_IMMEDIATE(a) 
  1429.     if( fread( &a, sizeof(char), sizeof(a), file ) != sizeof(a) ) goto error
  1430. #define LOAD_STRING(a) 
  1431.     { if( fread( &i_size, sizeof(char), sizeof(i_size), file ) 
  1432.           != sizeof(i_size) ) goto error; 
  1433.       if( i_size ) { 
  1434.           a = malloc( i_size ); 
  1435.           if( fread( a, sizeof(char), i_size, file ) != (size_t)i_size ) 
  1436.               goto error; 
  1437.       } else a = 0; 
  1438.     } while(0)
  1439.     for( i = 0; i < i_cache; i++ )
  1440.     {
  1441.         int16_t i_size;
  1442.         int i_submodules;
  1443.         pp_cache[i] = malloc( sizeof(module_cache_t) );
  1444.         p_this->p_libvlc->p_module_bank->i_loaded_cache++;
  1445.         /* Load common info */
  1446.         LOAD_STRING( pp_cache[i]->psz_file );
  1447.         LOAD_IMMEDIATE( pp_cache[i]->i_time );
  1448.         LOAD_IMMEDIATE( pp_cache[i]->i_size );
  1449.         LOAD_IMMEDIATE( pp_cache[i]->b_junk );
  1450.         if( pp_cache[i]->b_junk ) continue;
  1451.         pp_cache[i]->p_module = vlc_object_create( p_this, VLC_OBJECT_MODULE );
  1452.         /* Load additional infos */
  1453.         LOAD_STRING( pp_cache[i]->p_module->psz_object_name );
  1454.         LOAD_STRING( pp_cache[i]->p_module->psz_shortname );
  1455.         LOAD_STRING( pp_cache[i]->p_module->psz_longname );
  1456.         LOAD_STRING( pp_cache[i]->p_module->psz_program );
  1457.         for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
  1458.         {
  1459.             LOAD_STRING( pp_cache[i]->p_module->pp_shortcuts[j] ); // FIX
  1460.         }
  1461.         LOAD_STRING( pp_cache[i]->p_module->psz_capability );
  1462.         LOAD_IMMEDIATE( pp_cache[i]->p_module->i_score );
  1463.         LOAD_IMMEDIATE( pp_cache[i]->p_module->i_cpu );
  1464.         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_unloadable );
  1465.         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_reentrant );
  1466.         LOAD_IMMEDIATE( pp_cache[i]->p_module->b_submodule );
  1467.         /* Config stuff */
  1468.         if( CacheLoadConfig( pp_cache[i]->p_module, file ) != VLC_SUCCESS )
  1469.             goto error;
  1470.         LOAD_STRING( pp_cache[i]->p_module->psz_filename );
  1471.         LOAD_IMMEDIATE( i_submodules );
  1472.         while( i_submodules-- )
  1473.         {
  1474.             module_t *p_module = vlc_object_create( p_this, VLC_OBJECT_MODULE);
  1475.             vlc_object_attach( p_module, pp_cache[i]->p_module );
  1476.             p_module->b_submodule = VLC_TRUE;
  1477.             LOAD_STRING( p_module->psz_object_name );
  1478.             LOAD_STRING( p_module->psz_shortname );
  1479.             LOAD_STRING( p_module->psz_longname );
  1480.             LOAD_STRING( p_module->psz_program );
  1481.             for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
  1482.             {
  1483.                 LOAD_STRING( p_module->pp_shortcuts[j] ); // FIX
  1484.             }
  1485.             LOAD_STRING( p_module->psz_capability );
  1486.             LOAD_IMMEDIATE( p_module->i_score );
  1487.             LOAD_IMMEDIATE( p_module->i_cpu );
  1488.             LOAD_IMMEDIATE( p_module->b_unloadable );
  1489.             LOAD_IMMEDIATE( p_module->b_reentrant );
  1490.         }
  1491.     }
  1492.     fclose( file );
  1493.     return;
  1494.  error:
  1495.     msg_Warn( p_this, "plugins cache not loaded (corrupted)" );
  1496.     /* TODO: cleanup */
  1497.     p_this->p_libvlc->p_module_bank->i_loaded_cache = 0;
  1498.     fclose( file );
  1499.     return;
  1500. }
  1501. int CacheLoadConfig( module_t *p_module, FILE *file )
  1502. {
  1503.     int i, j, i_lines;
  1504.     int16_t i_size;
  1505.     /* Calculate the structure length */
  1506.     LOAD_IMMEDIATE( p_module->i_config_items );
  1507.     LOAD_IMMEDIATE( p_module->i_bool_items );
  1508.     LOAD_IMMEDIATE( i_lines );
  1509.     /* Allocate memory */
  1510.     p_module->p_config =
  1511.         (module_config_t *)malloc( sizeof(module_config_t) * (i_lines + 1));
  1512.     if( p_module->p_config == NULL )
  1513.     {
  1514.         msg_Err( p_module, "config error: can't duplicate p_config" );
  1515.         return VLC_ENOMEM;
  1516.     }
  1517.     /* Do the duplication job */
  1518.     for( i = 0; i < i_lines ; i++ )
  1519.     {
  1520.         LOAD_IMMEDIATE( p_module->p_config[i] );
  1521.         LOAD_STRING( p_module->p_config[i].psz_type );
  1522.         LOAD_STRING( p_module->p_config[i].psz_name );
  1523.         LOAD_STRING( p_module->p_config[i].psz_text );
  1524.         LOAD_STRING( p_module->p_config[i].psz_longtext );
  1525.         LOAD_STRING( p_module->p_config[i].psz_value_orig );
  1526.         p_module->p_config[i].psz_value =
  1527.             p_module->p_config[i].psz_value_orig ?
  1528.                 strdup( p_module->p_config[i].psz_value_orig ) : 0;
  1529.         p_module->p_config[i].i_value = p_module->p_config[i].i_value_orig;
  1530.         p_module->p_config[i].f_value = p_module->p_config[i].f_value_orig;
  1531.         p_module->p_config[i].p_lock = &p_module->object_lock;
  1532.         if( p_module->p_config[i].i_list )
  1533.         {
  1534.             if( p_module->p_config[i].ppsz_list )
  1535.             {
  1536.                 p_module->p_config[i].ppsz_list =
  1537.                     malloc( (p_module->p_config[i].i_list+1) * sizeof(char *));
  1538.                 if( p_module->p_config[i].ppsz_list )
  1539.                 {
  1540.                     for( j = 0; j < p_module->p_config[i].i_list; j++ )
  1541.                         LOAD_STRING( p_module->p_config[i].ppsz_list[j] );
  1542.                     p_module->p_config[i].ppsz_list[j] = NULL;
  1543.                 }
  1544.             }
  1545.             if( p_module->p_config[i].ppsz_list_text )
  1546.             {
  1547.                 p_module->p_config[i].ppsz_list_text =
  1548.                     malloc( (p_module->p_config[i].i_list+1) * sizeof(char *));
  1549.                 if( p_module->p_config[i].ppsz_list_text )
  1550.                 {
  1551.                   for( j = 0; j < p_module->p_config[i].i_list; j++ )
  1552.                       LOAD_STRING( p_module->p_config[i].ppsz_list_text[j] );
  1553.                   p_module->p_config[i].ppsz_list_text[j] = NULL;
  1554.                 }
  1555.             }
  1556.             if( p_module->p_config[i].pi_list )
  1557.             {
  1558.                 p_module->p_config[i].pi_list =
  1559.                     malloc( (p_module->p_config[i].i_list + 1) * sizeof(int) );
  1560.                 if( p_module->p_config[i].pi_list )
  1561.                 {
  1562.                     for( j = 0; j < p_module->p_config[i].i_list; j++ )
  1563.                         LOAD_IMMEDIATE( p_module->p_config[i].pi_list[j] );
  1564.                 }
  1565.             }
  1566.         }
  1567.         if( p_module->p_config[i].i_action )
  1568.         {
  1569.             p_module->p_config[i].ppf_action =
  1570.                 malloc( p_module->p_config[i].i_action * sizeof(void *) );
  1571.             p_module->p_config[i].ppsz_action_text =
  1572.                 malloc( p_module->p_config[i].i_action * sizeof(char *) );
  1573.             for( j = 0; j < p_module->p_config[i].i_action; j++ )
  1574.             {
  1575.                 p_module->p_config[i].ppf_action[j] = 0;
  1576.                 LOAD_STRING( p_module->p_config[i].ppsz_action_text[j] );
  1577.             }
  1578.         }
  1579.         LOAD_IMMEDIATE( p_module->p_config[i].pf_callback );
  1580.     }
  1581.     p_module->p_config[i].i_type = CONFIG_HINT_END;
  1582.     return VLC_SUCCESS;
  1583.  error:
  1584.     return VLC_EGENERIC;
  1585. }
  1586. /*****************************************************************************
  1587.  * SavePluginsCache: saves the plugins cache to a file
  1588.  *****************************************************************************/
  1589. static void CacheSave( vlc_object_t *p_this )
  1590. {
  1591.     static char const psz_tag[] =
  1592.         "Signature: 8a477f597d28d172789f06886806bc55rn"
  1593.         "# This file is a cache directory tag created by VLC.rn"
  1594.         "# For information about cache directory tags, see:rn"
  1595.         "#   http://www.brynosaurus.com/cachedir/rn";
  1596.     char *psz_filename, *psz_homedir;
  1597.     FILE *file;
  1598.     int i, j, i_cache;
  1599.     module_cache_t **pp_cache;
  1600.     int32_t i_file_size = 0;
  1601.     psz_homedir = p_this->p_vlc->psz_homedir;
  1602.     if( !psz_homedir )
  1603.     {
  1604.         msg_Err( p_this, "psz_homedir is null" );
  1605.         return;
  1606.     }
  1607.     psz_filename =
  1608.        (char *)malloc( sizeof("/" CONFIG_DIR "/" PLUGINSCACHE_DIR "/" ) +
  1609.                        strlen(psz_homedir) + strlen(CacheName()) );
  1610.     if( !psz_filename )
  1611.     {
  1612.         msg_Err( p_this, "out of memory" );
  1613.         return;
  1614.     }
  1615.     sprintf( psz_filename, "%s/%s", psz_homedir, CONFIG_DIR );
  1616.     config_CreateDir( p_this, psz_filename );
  1617.     strcat( psz_filename, "/" PLUGINSCACHE_DIR );
  1618.     config_CreateDir( p_this, psz_filename );
  1619.     strcat( psz_filename, "/CACHEDIR.TAG" );
  1620.     file = fopen( psz_filename, "wb" );
  1621.     if( file )
  1622.     {
  1623.         fwrite( psz_tag, 1, strlen(psz_tag), file );
  1624.         fclose( file );
  1625.     }
  1626.     sprintf( psz_filename, "%s/%s/%s/%s", psz_homedir, CONFIG_DIR,
  1627.              PLUGINSCACHE_DIR, CacheName() );
  1628.     msg_Dbg( p_this, "saving plugins cache file %s", psz_filename );
  1629.     file = fopen( psz_filename, "wb" );
  1630.     if( !file )
  1631.     {
  1632.         msg_Warn( p_this, "could not open plugins cache file %s for writing",
  1633.                   psz_filename );
  1634.         free( psz_filename );
  1635.         return;
  1636.     }
  1637.     free( psz_filename );
  1638.     /* Empty space for file size */
  1639.     fwrite( &i_file_size, sizeof(char), sizeof(i_file_size), file );
  1640.     /* Contains version number */
  1641.     fprintf( file, "%s", PLUGINSCACHE_DIR COPYRIGHT_MESSAGE );
  1642.     /* Language */
  1643.     fprintf( file, "%5.5s", _("C") );
  1644.     /* Header marker */
  1645.     i_file_size = ftell( file );
  1646.     fwrite( &i_file_size, sizeof(char), sizeof(i_file_size), file );
  1647.     i_cache = p_this->p_libvlc->p_module_bank->i_cache;
  1648.     pp_cache = p_this->p_libvlc->p_module_bank->pp_cache;
  1649.     fwrite( &i_cache, sizeof(char), sizeof(i_cache), file );
  1650. #define SAVE_IMMEDIATE(a) 
  1651.     fwrite( &a, sizeof(char), sizeof(a), file )
  1652. #define SAVE_STRING(a) 
  1653.     { i_size = a ? strlen( a ) + 1 : 0; 
  1654.       fwrite( &i_size, sizeof(char), sizeof(i_size), file ); 
  1655.       if( a ) fwrite( a, sizeof(char), i_size, file ); 
  1656.     } while(0)
  1657.     for( i = 0; i < i_cache; i++ )
  1658.     {
  1659.         int16_t i_size;
  1660.         int32_t i_submodule;
  1661.         /* Save common info */
  1662.         SAVE_STRING( pp_cache[i]->psz_file );
  1663.         SAVE_IMMEDIATE( pp_cache[i]->i_time );
  1664.         SAVE_IMMEDIATE( pp_cache[i]->i_size );
  1665.         SAVE_IMMEDIATE( pp_cache[i]->b_junk );
  1666.         if( pp_cache[i]->b_junk ) continue;
  1667.         /* Save additional infos */
  1668.         SAVE_STRING( pp_cache[i]->p_module->psz_object_name );
  1669.         SAVE_STRING( pp_cache[i]->p_module->psz_shortname );
  1670.         SAVE_STRING( pp_cache[i]->p_module->psz_longname );
  1671.         SAVE_STRING( pp_cache[i]->p_module->psz_program );
  1672.         for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
  1673.         {
  1674.             SAVE_STRING( pp_cache[i]->p_module->pp_shortcuts[j] ); // FIX
  1675.         }
  1676.         SAVE_STRING( pp_cache[i]->p_module->psz_capability );
  1677.         SAVE_IMMEDIATE( pp_cache[i]->p_module->i_score );
  1678.         SAVE_IMMEDIATE( pp_cache[i]->p_module->i_cpu );
  1679.         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_unloadable );
  1680.         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_reentrant );
  1681.         SAVE_IMMEDIATE( pp_cache[i]->p_module->b_submodule );
  1682.         /* Config stuff */
  1683.         CacheSaveConfig( pp_cache[i]->p_module, file );
  1684.         SAVE_STRING( pp_cache[i]->p_module->psz_filename );
  1685.         i_submodule = pp_cache[i]->p_module->i_children;
  1686.         SAVE_IMMEDIATE( i_submodule );
  1687.         for( i_submodule = 0; i_submodule < pp_cache[i]->p_module->i_children;
  1688.              i_submodule++ )
  1689.         {
  1690.             module_t *p_module =
  1691.                 (module_t *)pp_cache[i]->p_module->pp_children[i_submodule];
  1692.             SAVE_STRING( p_module->psz_object_name );
  1693.             SAVE_STRING( p_module->psz_shortname );
  1694.             SAVE_STRING( p_module->psz_longname );
  1695.             SAVE_STRING( p_module->psz_program );
  1696.             for( j = 0; j < MODULE_SHORTCUT_MAX; j++ )
  1697.             {
  1698.                 SAVE_STRING( p_module->pp_shortcuts[j] ); // FIX
  1699.             }
  1700.             SAVE_STRING( p_module->psz_capability );
  1701.             SAVE_IMMEDIATE( p_module->i_score );
  1702.             SAVE_IMMEDIATE( p_module->i_cpu );
  1703.             SAVE_IMMEDIATE( p_module->b_unloadable );
  1704.             SAVE_IMMEDIATE( p_module->b_reentrant );
  1705.         }
  1706.     }
  1707.     /* Fill-up file size */
  1708.     i_file_size = ftell( file );
  1709.     fseek( file, 0, SEEK_SET );
  1710.     fwrite( &i_file_size, sizeof(char), sizeof(i_file_size), file );
  1711.     fclose( file );
  1712.     return;
  1713. }
  1714. void CacheSaveConfig( module_t *p_module, FILE *file )
  1715. {
  1716.     int i, j, i_lines = 0;
  1717.     module_config_t *p_item;
  1718.     int16_t i_size;
  1719.     SAVE_IMMEDIATE( p_module->i_config_items );
  1720.     SAVE_IMMEDIATE( p_module->i_bool_items );
  1721.     for( p_item = p_module->p_config; p_item->i_type != CONFIG_HINT_END;
  1722.          p_item++ ) i_lines++;
  1723.     SAVE_IMMEDIATE( i_lines );
  1724.     for( i = 0; i < i_lines ; i++ )
  1725.     {
  1726.         SAVE_IMMEDIATE( p_module->p_config[i] );
  1727.         SAVE_STRING( p_module->p_config[i].psz_type );
  1728.         SAVE_STRING( p_module->p_config[i].psz_name );
  1729.         SAVE_STRING( p_module->p_config[i].psz_text );
  1730.         SAVE_STRING( p_module->p_config[i].psz_longtext );
  1731.         SAVE_STRING( p_module->p_config[i].psz_value_orig );
  1732.         if( p_module->p_config[i].i_list )
  1733.         {
  1734.             if( p_module->p_config[i].ppsz_list )
  1735.             {
  1736.                 for( j = 0; j < p_module->p_config[i].i_list; j++ )
  1737.                     SAVE_STRING( p_module->p_config[i].ppsz_list[j] );
  1738.             }
  1739.             if( p_module->p_config[i].ppsz_list_text )
  1740.             {
  1741.                 for( j = 0; j < p_module->p_config[i].i_list; j++ )
  1742.                     SAVE_STRING( p_module->p_config[i].ppsz_list_text[j] );
  1743.             }
  1744.             if( p_module->p_config[i].pi_list )
  1745.             {
  1746.                 for( j = 0; j < p_module->p_config[i].i_list; j++ )
  1747.                     SAVE_IMMEDIATE( p_module->p_config[i].pi_list[j] );
  1748.             }
  1749.         }
  1750.         for( j = 0; j < p_module->p_config[i].i_action; j++ )
  1751.             SAVE_STRING( p_module->p_config[i].ppsz_action_text[j] );
  1752.         SAVE_IMMEDIATE( p_module->p_config[i].pf_callback );
  1753.     }
  1754. }
  1755. /*****************************************************************************
  1756.  * CacheName: Return the cache file name for this platform.
  1757.  *****************************************************************************/
  1758. static char *CacheName( void )
  1759. {
  1760.     static char psz_cachename[32];
  1761.     static vlc_bool_t b_initialised = VLC_FALSE;
  1762.     if( !b_initialised )
  1763.     {
  1764.         /* Code int size, pointer size and endianness in the filename */
  1765.         int32_t x = 0xbe00001e;
  1766.         sprintf( psz_cachename, "plugins-%.2x%.2x%.2x.dat", sizeof(int),
  1767.                  sizeof(void *), (unsigned int)((unsigned char *)&x)[0] );
  1768.         b_initialised = VLC_TRUE;
  1769.     }
  1770.     return psz_cachename;
  1771. }
  1772. /*****************************************************************************
  1773.  * CacheMerge: Merge a cache module descriptor with a full module descriptor.
  1774.  *****************************************************************************/
  1775. static void CacheMerge( vlc_object_t *p_this, module_t *p_cache,
  1776.                         module_t *p_module )
  1777. {
  1778.     int i_submodule;
  1779.     p_cache->pf_activate = p_module->pf_activate;
  1780.     p_cache->pf_deactivate = p_module->pf_deactivate;
  1781.     p_cache->p_symbols = p_module->p_symbols;
  1782.     p_cache->handle = p_module->handle;
  1783.     for( i_submodule = 0; i_submodule < p_module->i_children; i_submodule++ )
  1784.     {
  1785.         module_t *p_child = (module_t*)p_module->pp_children[i_submodule];
  1786.         module_t *p_cchild = (module_t*)p_cache->pp_children[i_submodule];
  1787.         p_cchild->pf_activate = p_child->pf_activate;
  1788.         p_cchild->pf_deactivate = p_child->pf_deactivate;
  1789.         p_cchild->p_symbols = p_child->p_symbols;
  1790.     }
  1791.     p_cache->b_loaded = VLC_TRUE;
  1792.     p_module->b_loaded = VLC_FALSE;
  1793. }
  1794. /*****************************************************************************
  1795.  * FindPluginCache: finds the cache entry corresponding to a file
  1796.  *****************************************************************************/
  1797. static module_cache_t *CacheFind( vlc_object_t *p_this, char *psz_file,
  1798.                                   int64_t i_time, int64_t i_size )
  1799. {
  1800.     module_cache_t **pp_cache;
  1801.     int i_cache, i;
  1802.     pp_cache = p_this->p_libvlc->p_module_bank->pp_loaded_cache;
  1803.     i_cache = p_this->p_libvlc->p_module_bank->i_loaded_cache;
  1804.     for( i = 0; i < i_cache; i++ )
  1805.     {
  1806.         if( !strcmp( pp_cache[i]->psz_file, psz_file ) &&
  1807.             pp_cache[i]->i_time == i_time &&
  1808.             pp_cache[i]->i_size == i_size ) return pp_cache[i];
  1809.     }
  1810.     return NULL;
  1811. }
  1812. #endif /* HAVE_DYNAMIC_PLUGINS */