loadsave.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:8k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * loadsave.c : Playlist loading / saving functions
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2004 the VideoLAN team
  5.  * $Id: 34378730761e03e6e9bf0046f938d27a3f89b2df $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifdef HAVE_CONFIG_H
  24. # include "config.h"
  25. #endif
  26. #include <vlc_common.h>
  27. #include <vlc_playlist.h>
  28. #include <vlc_events.h>
  29. #include "playlist_internal.h"
  30. #include "config/configuration.h"
  31. #include <vlc_charset.h>
  32. #include <vlc_url.h>
  33. #include <sys/types.h>
  34. #include <sys/stat.h>
  35. #include <unistd.h>
  36. #include <errno.h>
  37. int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
  38.                      playlist_item_t *p_export_root,const char *psz_type )
  39. {
  40.     module_t *p_module;
  41.     playlist_export_t export;
  42.     if( p_export_root == NULL ) return VLC_EGENERIC;
  43.     msg_Dbg( p_playlist, "saving %s to file %s",
  44.                     p_export_root->p_input->psz_name, psz_filename );
  45.     /* Prepare the playlist_export_t structure */
  46.     export.psz_filename = psz_filename ? strdup( psz_filename ) : NULL;
  47.     export.p_file = utf8_fopen( psz_filename, "wt" );
  48.     if( export.p_file == NULL )
  49.     {
  50.         msg_Err( p_playlist , "could not create playlist file %s (%m)",
  51.                  psz_filename );
  52.         free( export.psz_filename );
  53.         return VLC_EGENERIC;
  54.     }
  55.     export.p_root = p_export_root;
  56.     playlist_Lock( p_playlist );
  57.     p_playlist->p_private = (void *)&export;
  58.     /* And call the module ! All work is done now */
  59.     p_module = module_need( p_playlist, "playlist export", psz_type, true);
  60.     if( !p_module )
  61.         msg_Warn( p_playlist, "exporting playlist failed" );
  62.     else
  63.         module_unneed( p_playlist , p_module );
  64.     p_playlist->p_private = NULL;
  65.     playlist_Unlock( p_playlist );
  66.     /* Clean up */
  67.     fclose( export.p_file );
  68.     free( export.psz_filename );
  69.     return p_module ? VLC_SUCCESS : VLC_ENOOBJ;
  70. }
  71. int playlist_Import( playlist_t *p_playlist, const char *psz_file )
  72. {
  73.     input_item_t *p_input;
  74.     const char *const psz_option = "meta-file";
  75.     char *psz_uri = make_URI( psz_file );
  76.     if( psz_uri == NULL )
  77.         return VLC_EGENERIC;
  78.     p_input = input_item_NewExt( p_playlist, psz_uri, psz_file,
  79.                                  1, &psz_option, VLC_INPUT_OPTION_TRUSTED, -1 );
  80.     free( psz_uri );
  81.     playlist_AddInput( p_playlist, p_input, PLAYLIST_APPEND, PLAYLIST_END,
  82.                        true, false );
  83.     return input_Read( p_playlist, p_input, true );
  84. }
  85. /*****************************************************************************
  86.  * A subitem has been added to the Media Library (Event Callback)
  87.  *****************************************************************************/
  88. static void input_item_subitem_added( const vlc_event_t * p_event,
  89.                                       void * user_data )
  90. {
  91.     playlist_t *p_playlist = user_data;
  92.     input_item_t *p_item = p_event->u.input_item_subitem_added.p_new_child;
  93.     /* playlist_AddInput() can fail, but we have no way to report that ..
  94.      * Any way when it has failed, either the playlist is dying, either OOM */
  95.     playlist_AddInput( p_playlist, p_item, PLAYLIST_APPEND, PLAYLIST_END,
  96.             false, pl_Unlocked );
  97. }
  98. int playlist_MLLoad( playlist_t *p_playlist )
  99. {
  100.     char *psz_datadir;
  101.     char *psz_uri = NULL;
  102.     input_item_t *p_input;
  103.     if( !config_GetInt( p_playlist, "media-library") )
  104.         return VLC_SUCCESS;
  105.     psz_datadir = config_GetUserDataDir();
  106.     if( !psz_datadir ) /* XXX: This should never happen */
  107.     {
  108.         msg_Err( p_playlist, "no data directory, cannot load media library") ;
  109.         return VLC_EGENERIC;
  110.     }
  111.     if( asprintf( &psz_uri, "%s" DIR_SEP "ml.xspf", psz_datadir ) != -1 )
  112.     {   /* loosy check for media library file */
  113.         struct stat st;
  114.         int ret = utf8_stat( psz_uri , &st );
  115.         free( psz_uri );
  116.         if( ret )
  117.         {
  118.             free( psz_datadir );
  119.             return VLC_EGENERIC;
  120.         }
  121.     }
  122.     psz_uri = make_URI( psz_datadir );
  123.     free( psz_datadir );
  124.     psz_datadir = psz_uri;
  125.     if( psz_datadir == NULL )
  126.         return VLC_EGENERIC;
  127.     /* Force XSPF demux (psz_datadir was a path, now it is a file URI) */
  128.     if( asprintf( &psz_uri, "file/xspf-open%s/ml.xspf", psz_datadir+4 ) == -1 )
  129.         psz_uri = NULL;
  130.     free( psz_datadir );
  131.     psz_datadir = NULL;
  132.     if( psz_uri == NULL )
  133.         return VLC_ENOMEM;
  134.     const char *const options[1] = { "meta-file", };
  135.     /* that option has to be cleaned in input_item_subitem_added() */
  136.     /* vlc_gc_decref() in the same function */
  137.     p_input = input_item_NewExt( p_playlist, psz_uri, _("Media Library"),
  138.                                  1, options, VLC_INPUT_OPTION_TRUSTED, -1 );
  139.     free( psz_uri );
  140.     if( p_input == NULL )
  141.         return VLC_EGENERIC;
  142.     PL_LOCK;
  143.     if( p_playlist->p_ml_onelevel->p_input )
  144.         vlc_gc_decref( p_playlist->p_ml_onelevel->p_input );
  145.     if( p_playlist->p_ml_category->p_input )
  146.         vlc_gc_decref( p_playlist->p_ml_category->p_input );
  147.     p_playlist->p_ml_onelevel->p_input =
  148.     p_playlist->p_ml_category->p_input = p_input;
  149.     /* We save the input at two different place, incref */
  150.     vlc_gc_incref( p_input );
  151.     vlc_gc_incref( p_input );
  152.     vlc_event_attach( &p_input->event_manager, vlc_InputItemSubItemAdded,
  153.                         input_item_subitem_added, p_playlist );
  154.     pl_priv(p_playlist)->b_doing_ml = true;
  155.     PL_UNLOCK;
  156.     stats_TimerStart( p_playlist, "ML Load", STATS_TIMER_ML_LOAD );
  157.     input_Read( p_playlist, p_input, true );
  158.     stats_TimerStop( p_playlist,STATS_TIMER_ML_LOAD );
  159.     PL_LOCK;
  160.     pl_priv(p_playlist)->b_doing_ml = false;
  161.     PL_UNLOCK;
  162.     vlc_event_detach( &p_input->event_manager, vlc_InputItemSubItemAdded,
  163.                         input_item_subitem_added, p_playlist );
  164.     vlc_gc_decref( p_input );
  165.     return VLC_SUCCESS;
  166. }
  167. int playlist_MLDump( playlist_t *p_playlist )
  168. {
  169.     char *psz_datadir;
  170.     if( !config_GetInt( p_playlist, "media-library") )
  171.         return VLC_SUCCESS;
  172.     psz_datadir = config_GetUserDataDir();
  173.     if( !psz_datadir ) /* XXX: This should never happen */
  174.     {
  175.         msg_Err( p_playlist, "no data directory, cannot save media library") ;
  176.         return VLC_EGENERIC;
  177.     }
  178.     char psz_dirname[ strlen( psz_datadir ) + sizeof( DIR_SEP "ml.xspf")];
  179.     strcpy( psz_dirname, psz_datadir );
  180.     free( psz_datadir );
  181.     if( config_CreateDir( (vlc_object_t *)p_playlist, psz_dirname ) )
  182.     {
  183.         return VLC_EGENERIC;
  184.     }
  185.     strcat( psz_dirname, DIR_SEP "ml.xspf" );
  186.     stats_TimerStart( p_playlist, "ML Dump", STATS_TIMER_ML_DUMP );
  187.     playlist_Export( p_playlist, psz_dirname, p_playlist->p_ml_category,
  188.                      "export-xspf" );
  189.     stats_TimerStop( p_playlist, STATS_TIMER_ML_DUMP );
  190.     return VLC_SUCCESS;
  191. }