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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * item.c : Playlist item functions
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2004 VideoLAN
  5.  * $Id: item.c 8763 2004-09-22 09:20:12Z gbazin $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include <stdlib.h>                                      /* free(), strtol() */
  24. #include <stdio.h>                                              /* sprintf() */
  25. #include <string.h>                                            /* strerror() */
  26. #include <vlc/vlc.h>
  27. #include <vlc/input.h>
  28. #include "vlc_playlist.h"
  29. /**
  30.  * Create a new item, without adding it to the playlist
  31.  *
  32.  * param p_obj a vlc object (anyone will do)
  33.  * param psz_uri the mrl of the item
  34.  * param psz_name a text giving a name or description of the item
  35.  * return the new item or NULL on failure
  36.  */
  37. playlist_item_t * __playlist_ItemNew( vlc_object_t *p_obj,
  38.                                       const char *psz_uri,
  39.                                       const char *psz_name )
  40. {
  41.     playlist_item_t * p_item;
  42.     if( psz_uri == NULL ) return NULL;
  43.     p_item = malloc( sizeof( playlist_item_t ) );
  44.     if( p_item == NULL ) return NULL;
  45.     memset( p_item, 0, sizeof( playlist_item_t ) );
  46.     vlc_input_item_Init( p_obj, &p_item->input );
  47.     p_item->input.i_duration = -1;
  48.     p_item->input.psz_uri = strdup( psz_uri );
  49.     if( psz_name != NULL ) p_item->input.psz_name = strdup( psz_name );
  50.     else p_item->input.psz_name = strdup ( psz_uri );
  51.     p_item->b_enabled = VLC_TRUE;
  52.     p_item->i_group = PLAYLIST_TYPE_MANUAL;
  53.     playlist_ItemCreateCategory( p_item, _("General") );
  54.     return p_item;
  55. }
  56. /**
  57.  * Deletes a playlist item
  58.  *
  59.  * param p_item the item to delete
  60.  * return nothing
  61.  */
  62. void playlist_ItemDelete( playlist_item_t *p_item )
  63. {
  64.     vlc_input_item_Clean( &p_item->input );
  65.     free( p_item );
  66. }
  67. /**
  68.  * Add a playlist item into a playlist
  69.  *
  70.  * param p_playlist the playlist to insert into
  71.  * param p_item the playlist item to insert
  72.  * param i_mode the mode used when adding
  73.  * param i_pos the possition in the playlist where to add. If this is
  74.  *        PLAYLIST_END the item will be added at the end of the playlist
  75.  *        regardless of it's size
  76.  * return The id of the playlist item
  77.  */
  78. int playlist_AddItem( playlist_t *p_playlist, playlist_item_t *p_item,
  79.                       int i_mode, int i_pos)
  80. {
  81.     vlc_value_t val;
  82.     vlc_mutex_lock( &p_playlist->object_lock );
  83.     /*
  84.      * CHECK_INSERT : checks if the item is already enqued before
  85.      * enqueing it
  86.      */
  87.     if ( i_mode & PLAYLIST_CHECK_INSERT )
  88.     {
  89.          int j;
  90.          if ( p_playlist->pp_items )
  91.          {
  92.              for ( j = 0; j < p_playlist->i_size; j++ )
  93.              {
  94.                  if ( !strcmp( p_playlist->pp_items[j]->input.psz_uri,
  95.                                p_item->input.psz_uri ) )
  96.                  {
  97.                       if ( p_item->input.psz_name )
  98.                       {
  99.                           free( p_item->input.psz_name );
  100.                       }
  101.                       if ( p_item->input.psz_uri )
  102.                       {
  103.                           free ( p_item->input.psz_uri );
  104.                       }
  105.                       free( p_item );
  106.                       vlc_mutex_unlock( &p_playlist->object_lock );
  107.                       return -1;
  108.                  }
  109.              }
  110.          }
  111.          i_mode &= ~PLAYLIST_CHECK_INSERT;
  112.          i_mode |= PLAYLIST_APPEND;
  113.     }
  114.     msg_Dbg( p_playlist, "adding playlist item `%s' ( %s )",
  115.              p_item->input.psz_name, p_item->input.psz_uri );
  116.     p_item->i_id = ++p_playlist->i_last_id;
  117.     /* Do a few boundary checks and allocate space for the item */
  118.     if( i_pos == PLAYLIST_END )
  119.     {
  120.         if( i_mode & PLAYLIST_INSERT )
  121.         {
  122.             i_mode &= ~PLAYLIST_INSERT;
  123.             i_mode |= PLAYLIST_APPEND;
  124.         }
  125.         i_pos = p_playlist->i_size - 1;
  126.     }
  127.     if( !(i_mode & PLAYLIST_REPLACE)
  128.          || i_pos < 0 || i_pos >= p_playlist->i_size )
  129.     {
  130.         /* Additional boundary checks */
  131.         if( i_mode & PLAYLIST_APPEND )
  132.         {
  133.             i_pos++;
  134.         }
  135.         if( i_pos < 0 )
  136.         {
  137.             i_pos = 0;
  138.         }
  139.         else if( i_pos > p_playlist->i_size )
  140.         {
  141.             i_pos = p_playlist->i_size;
  142.         }
  143.         INSERT_ELEM( p_playlist->pp_items, p_playlist->i_size, i_pos, p_item );
  144.         p_playlist->i_enabled ++;
  145.         if( p_playlist->i_index >= i_pos )
  146.         {
  147.             p_playlist->i_index++;
  148.         }
  149.     }
  150.     else
  151.     {
  152.         /* i_mode == PLAYLIST_REPLACE and 0 <= i_pos < p_playlist->i_size */
  153.         if( p_playlist->pp_items[i_pos]->input.psz_name )
  154.         {
  155.             free( p_playlist->pp_items[i_pos]->input.psz_name );
  156.         }
  157.         if( p_playlist->pp_items[i_pos]->input.psz_uri )
  158.         {
  159.             free( p_playlist->pp_items[i_pos]->input.psz_uri );
  160.         }
  161.         /* XXX: what if the item is still in use? */
  162.         free( p_playlist->pp_items[i_pos] );
  163.         p_playlist->pp_items[i_pos] = p_item;
  164.     }
  165.     if( i_mode & PLAYLIST_GO )
  166.     {
  167.         p_playlist->i_index = i_pos;
  168.         if( p_playlist->p_input )
  169.         {
  170.             input_StopThread( p_playlist->p_input );
  171.         }
  172.         p_playlist->i_status = PLAYLIST_RUNNING;
  173.     }
  174.     vlc_mutex_unlock( &p_playlist->object_lock );
  175.     val.b_bool = VLC_TRUE;
  176.     var_Set( p_playlist, "intf-change", val );
  177.     return p_item->i_id;
  178. }
  179. /**
  180.  *  Add a option to one item ( no need for p_playlist )
  181.  *
  182.  * param p_item the item on which we want the info
  183.  * param psz_option the option
  184.  * return 0 on success
  185.  */
  186. int playlist_ItemAddOption( playlist_item_t *p_item, const char *psz_option )
  187. {
  188.     if( !psz_option ) return VLC_EGENERIC;
  189.     vlc_mutex_lock( &p_item->input.lock );
  190.     INSERT_ELEM( p_item->input.ppsz_options, p_item->input.i_options,
  191.                  p_item->input.i_options, strdup( psz_option ) );
  192.     vlc_mutex_unlock( &p_item->input.lock );
  193.     return VLC_SUCCESS;
  194. }