]> git.sesse.net Git - vlc/blob - src/input/access.c
* include: removed a few deprecated functions.
[vlc] / src / input / access.c
1 /*****************************************************************************
2  * access.c
3  *****************************************************************************
4  * Copyright (C) 1999-2004 VideoLAN
5  * $Id: demux.c 7546 2004-04-29 13:53:29Z gbazin $
6  *
7  * Author: Laurent Aimar <fenrir@via.ecp.fr>
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
24 #include <stdlib.h>
25 #include <vlc/vlc.h>
26 #include <vlc/input.h>
27
28 #include "ninput.h"
29
30 int access_vaControl( input_thread_t *p_input, int i_query, va_list args )
31 {
32     if( p_input->pf_access_control )
33     {
34         return p_input->pf_access_control( p_input, i_query, args );
35     }
36     return VLC_EGENERIC;
37 }
38
39 int access_Control( input_thread_t *p_input, int i_query, ...  )
40 {
41     va_list args;
42     int     i_result;
43
44     va_start( args, i_query );
45     i_result = access_vaControl( p_input, i_query, args );
46     va_end( args );
47
48     return i_result;
49 }
50
51 int access_vaControlDefault( input_thread_t *p_input, int i_query, va_list args )
52 {
53     return VLC_EGENERIC;
54 }
55
56 /*****************************************************************************
57  * access2_New:
58  *****************************************************************************/
59 access_t *__access2_New( vlc_object_t *p_obj,
60                          char *psz_access, char *psz_demux, char *psz_path )
61 {
62     access_t *p_access = vlc_object_create( p_obj, VLC_OBJECT_ACCESS );
63
64     if( p_access == NULL )
65     {
66         msg_Err( p_obj, "vlc_object_create( p_obj, VLC_OBJECT_ACCESS ) failed" );
67         return NULL;
68     }
69
70     /* Parse URL */
71     p_access->psz_access = strdup( psz_access );
72     p_access->psz_path   = strdup( psz_path );
73     p_access->psz_demux  = strdup( "" );
74
75     msg_Dbg( p_obj, "access2_New: access='%s' path='%s'",
76              p_access->psz_access, p_access->psz_path );
77
78     p_access->pf_read    = NULL;
79     p_access->pf_block   = NULL;
80     p_access->pf_seek    = NULL;
81     p_access->pf_control = NULL;
82     p_access->p_sys      = NULL;
83     p_access->info.i_update = 0;
84     p_access->info.i_size   = 0;
85     p_access->info.i_pos    = 0;
86     p_access->info.b_eof    = VLC_FALSE;
87     p_access->info.i_title  = 0;
88     p_access->info.i_seekpoint = 0;
89
90
91     /* Before module_Need (for var_Create...) */
92     vlc_object_attach( p_access, p_obj );
93
94     p_access->p_module =
95         module_Need( p_access, "access2", p_access->psz_access, VLC_FALSE );
96
97     if( p_access->p_module == NULL )
98     {
99         vlc_object_detach( p_access );
100         free( p_access->psz_access );
101         free( p_access->psz_path );
102         free( p_access->psz_demux );
103         vlc_object_destroy( p_access );
104         return NULL;
105     }
106
107     return p_access;
108 }
109
110 /*****************************************************************************
111  * demux2_Delete:
112  *****************************************************************************/
113 void access2_Delete( access_t *p_access )
114 {
115     module_Unneed( p_access, p_access->p_module );
116     vlc_object_detach( p_access );
117
118     free( p_access->psz_access );
119     free( p_access->psz_path );
120     free( p_access->psz_demux );
121
122     vlc_object_destroy( p_access );
123 }