]> git.sesse.net Git - vlc/blobdiff - src/input/access.c
Remove VLC_OBJECT_(ACCESS|DEMUX|STREAM) types
[vlc] / src / input / access.c
index b2e1c57b9d05725b34c5ce13edc0240502d8b5cd..6b6f0f0ed54f2cc33c4592958393d5c88b8d0db1 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * access.c
  *****************************************************************************
- * Copyright (C) 1999-2004 VideoLAN
- * $Id: demux.c 7546 2004-04-29 13:53:29Z gbazin $
+ * Copyright (C) 1999-2004 the VideoLAN team
+ * $Id$
  *
  * Author: Laurent Aimar <fenrir@via.ecp.fr>
  *
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#include <stdlib.h>
-#include <vlc/vlc.h>
-#include <vlc/input.h>
-
-#include "ninput.h"
-
-int access_vaControl( input_thread_t *p_input, int i_query, va_list args )
-{
-    if( p_input->pf_access_control )
-    {
-        return p_input->pf_access_control( p_input, i_query, args );
-    }
-    return VLC_EGENERIC;
-}
-
-int access_Control( input_thread_t *p_input, int i_query, ...  )
-{
-    va_list args;
-    int     i_result;
-
-    va_start( args, i_query );
-    i_result = access_vaControl( p_input, i_query, args );
-    va_end( args );
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
-    return i_result;
-}
+#include <vlc_common.h>
 
-int access_vaControlDefault( input_thread_t *p_input, int i_query, va_list args )
-{
-    return VLC_EGENERIC;
-}
+#include "input_internal.h"
 
 /*****************************************************************************
- * access2_New:
+ * access_InternalNew:
  *****************************************************************************/
-access_t *__access2_New( vlc_object_t *p_obj, char *psz_mrl )
+static access_t *access_InternalNew( vlc_object_t *p_obj, const char *psz_access,
+                                      const char *psz_demux, const char *psz_path,
+                                      access_t *p_source )
 {
-    msg_Err( p_obj, "access2_New not yet implemented" );
-    return NULL;
-#if 0
-    access_t *p_access = vlc_object_create( p_obj, VLC_OBJECT_ACCESS );
-
-    char    *psz_dup = strdup( psz_mrl ? psz_mrl : "" );
-    char    *psz = strchr( psz_dup, ':' );
-    char    *psz_module;
+    static const char typename[] = "access";
+    access_t *p_access = vlc_custom_create( p_obj, sizeof (*p_access),
+                                            VLC_OBJECT_GENERIC, typename );
 
-    if( p_demux == NULL )
-    {
-        free( psz_dup );
+    if( p_access == NULL )
         return NULL;
-    }
 
     /* Parse URL */
-    p_demux->psz_access = NULL;
-    p_demux->psz_demux  = NULL;
-    p_demux->psz_path   = NULL;
-
-    if( psz )
+    p_access->p_source = p_source;
+    if( p_source )
     {
-        *psz++ = '\0';
-
-        if( psz[0] == '/' && psz[1] == '/' )
-        {
-            psz += 2;
-        }
-        p_demux->psz_path = strdup( psz );
-
-        psz = strchr( psz_dup, '/' );
-        if( psz )
-        {
-            *psz++ = '\0';
-            p_demux->psz_access = strdup( psz_dup );
-            p_demux->psz_demux  = strdup( psz );
-        }
+        msg_Dbg( p_obj, "creating access filter '%s'", psz_access );
+        p_access->psz_access = strdup( p_source->psz_access );
     }
     else
     {
-        p_demux->psz_path = strdup( psz_mrl );
-    }
-    free( psz_dup );
-
-
-    if( p_demux->psz_access == NULL )
-    {
-        p_demux->psz_access = strdup( "" );
-    }
-    if( p_demux->psz_demux == NULL )
-    {
-        p_demux->psz_demux = strdup( "" );
-    }
-    if( p_demux->psz_path == NULL )
-    {
-        p_demux->psz_path = strdup( "" );
+        msg_Dbg( p_obj, "creating access '%s' path='%s'",
+                 psz_access, psz_path );
+        p_access->psz_path   = strdup( psz_path );
     }
-    msg_Dbg( p_obj, "demux2_New: '%s' -> access='%s' demux='%s' path='%s'",
-             psz_mrl,
-             p_demux->psz_access, p_demux->psz_demux, p_demux->psz_path );
+    p_access->psz_access = strdup( psz_access );
+    p_access->psz_demux  = strdup( psz_demux );
+
+    p_access->pf_read    = NULL;
+    p_access->pf_block   = NULL;
+    p_access->pf_seek    = NULL;
+    p_access->pf_control = NULL;
+    p_access->p_sys      = NULL;
+    p_access->info.i_update = 0;
+    p_access->info.i_size   = 0;
+    p_access->info.i_pos    = 0;
+    p_access->info.b_eof    = false;
+    p_access->info.b_prebuffered = false;
+    p_access->info.i_title  = 0;
+    p_access->info.i_seekpoint = 0;
 
-    p_demux->s          = s;
-    p_demux->out        = out;
-
-    p_demux->pf_demux   = NULL;
-    p_demux->pf_control = NULL;
-    p_demux->p_sys      = NULL;
-
-    psz_module = p_demux->psz_demux;
-    if( *psz_module == '\0' && strrchr( p_demux->psz_path, '.' ) )
-    {
-        /* XXX: add only file without any problem here and with strong detection.
-         *  - no .mp3, .a52, ... (aac is added as it works only by file ext anyway
-         *  - wav can't be added 'cause of a52 and dts in them as raw audio
-         */
-        static struct { char *ext; char *demux; } exttodemux[] =
-        {
-            { "aac",  "aac" },
-            { "aiff", "aiff" },
-            { "asf",  "asf" }, { "wmv",  "asf" }, { "wma",  "asf" },
-            { "avi",  "avi" },
-            { "au",   "au" },
-            { "flac", "flac" },
-            { "dv",   "dv" },
-            { "m3u",  "m3u" },
-            { "mkv",  "mkv" }, { "mka",  "mkv" }, { "mks",  "mkv" },
-            { "mp4",  "mp4" }, { "m4a",  "mp4" }, { "mov",  "mp4" }, { "moov", "mp4" },
-            { "mod",  "mod" }, { "xm",   "mod" },
-            { "nsv",  "nsv" },
-            { "ogg",  "ogg" }, { "ogm",  "ogg" },
-            { "pva",  "pva" },
-            { "rm",   "rm" },
-            { "",  "" },
-        };
-
-        char *psz_ext = strrchr( p_demux->psz_path, '.' ) + 1;
-        int  i;
-
-        for( i = 0; exttodemux[i].ext != NULL; i++ )
-        {
-            if( !strcasecmp( psz_ext, exttodemux[i].ext ) )
-            {
-                psz_module = exttodemux[i].demux;
-                break;
-            }
-        }
-    }
 
     /* Before module_Need (for var_Create...) */
-    vlc_object_attach( p_demux, p_obj );
+    vlc_object_attach( p_access, p_obj );
 
-    p_demux->p_module =
-        module_Need( p_demux, "demux2", psz_module,
-                     !strcmp( psz_module, p_demux->psz_demux ) ? VLC_TRUE : VLC_FALSE );
+    p_access->p_module =
+         module_Need( p_access, p_source ? "access_filter" : "access",
+                      psz_access, true );
 
-    if( p_demux->p_module == NULL )
+    if( p_access->p_module == NULL )
     {
-        vlc_object_detach( p_demux );
-        free( p_demux->psz_path );
-        free( p_demux->psz_demux );
-        free( p_demux->psz_access );
-        vlc_object_destroy( p_demux );
+        msg_StackAdd( "could not create access" );
+        vlc_object_detach( p_access );
+        free( p_access->psz_access );
+        free( p_access->psz_path );
+        free( p_access->psz_demux );
+        vlc_object_release( p_access );
         return NULL;
     }
 
-    return p_demux;
-#endif
+    return p_access;
+}
+
+/*****************************************************************************
+ * access_New:
+ *****************************************************************************/
+access_t *__access_New( vlc_object_t *p_obj, const char *psz_access,
+                         const char *psz_demux, const char *psz_path )
+{
+    return access_InternalNew( p_obj, psz_access, psz_demux,
+                                psz_path, NULL );
 }
 
 /*****************************************************************************
- * demux2_Delete:
+ * access_FilterNew:
  *****************************************************************************/
-void access2_Delete( access_t *p_access )
+access_t *access_FilterNew( access_t *p_source, const char *psz_access_filter )
+{
+    return access_InternalNew( VLC_OBJECT(p_source), psz_access_filter,
+                                p_source->psz_demux, p_source->psz_path,
+                                p_source );
+}
+
+/*****************************************************************************
+ * access_Delete:
+ *****************************************************************************/
+void access_Delete( access_t *p_access )
 {
     module_Unneed( p_access, p_access->p_module );
     vlc_object_detach( p_access );
@@ -199,5 +126,11 @@ void access2_Delete( access_t *p_access )
     free( p_access->psz_path );
     free( p_access->psz_demux );
 
-    vlc_object_destroy( p_access );
+    if( p_access->p_source )
+    {
+        access_Delete( p_access->p_source );
+    }
+
+    vlc_object_release( p_access );
 }
+