]> git.sesse.net Git - vlc/blob - src/input/access.c
a9ee12900435e4db4695fc2d21198372ef44daea
[vlc] / src / input / access.c
1 /*****************************************************************************
2  * access.c
3  *****************************************************************************
4  * Copyright (C) 1999-2004 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include "access.h"
29 #include <libvlc.h>
30
31 /*****************************************************************************
32  * access_InternalNew:
33  *****************************************************************************/
34 static access_t *access_InternalNew( vlc_object_t *p_obj, const char *psz_access,
35                                       const char *psz_demux, const char *psz_path,
36                                       access_t *p_source )
37 {
38     static const char typename[] = "access";
39     access_t *p_access = vlc_custom_create( p_obj, sizeof (*p_access),
40                                             VLC_OBJECT_GENERIC, typename );
41
42     if( p_access == NULL )
43         return NULL;
44
45     /* Parse URL */
46     p_access->p_source = p_source;
47     if( p_source )
48     {
49         msg_Dbg( p_obj, "creating access filter '%s'", psz_access );
50     }
51     else
52     {
53         msg_Dbg( p_obj, "creating access '%s' path='%s'",
54                  psz_access, psz_path );
55         p_access->psz_path   = strdup( psz_path );
56     }
57     p_access->psz_access = strdup( psz_access );
58     p_access->psz_demux  = strdup( psz_demux );
59
60     p_access->pf_read    = NULL;
61     p_access->pf_block   = NULL;
62     p_access->pf_seek    = NULL;
63     p_access->pf_control = NULL;
64     p_access->p_sys      = NULL;
65     p_access->info.i_update = 0;
66     p_access->info.i_size   = 0;
67     p_access->info.i_pos    = 0;
68     p_access->info.b_eof    = false;
69     p_access->info.i_title  = 0;
70     p_access->info.i_seekpoint = 0;
71
72
73     /* Before module_need (for var_Create...) */
74     vlc_object_attach( p_access, p_obj );
75
76     p_access->p_module =
77          module_need( p_access, p_source ? "access_filter" : "access",
78                       psz_access, true );
79
80     if( p_access->p_module == NULL )
81     {
82         vlc_object_detach( p_access );
83         free( p_access->psz_access );
84         free( p_access->psz_path );
85         free( p_access->psz_demux );
86         vlc_object_release( p_access );
87         return NULL;
88     }
89
90     return p_access;
91 }
92
93 /*****************************************************************************
94  * access_New:
95  *****************************************************************************/
96 access_t *__access_New( vlc_object_t *p_obj, const char *psz_access,
97                          const char *psz_demux, const char *psz_path )
98 {
99     return access_InternalNew( p_obj, psz_access, psz_demux,
100                                 psz_path, NULL );
101 }
102
103 /*****************************************************************************
104  * access_FilterNew:
105  *****************************************************************************/
106 access_t *access_FilterNew( access_t *p_source, const char *psz_access_filter )
107 {
108     return access_InternalNew( VLC_OBJECT(p_source), psz_access_filter,
109                                 p_source->psz_demux, p_source->psz_path,
110                                 p_source );
111 }
112
113 /*****************************************************************************
114  * access_Delete:
115  *****************************************************************************/
116 void access_Delete( access_t *p_access )
117 {
118     module_unneed( p_access, p_access->p_module );
119     vlc_object_detach( p_access );
120
121     free( p_access->psz_access );
122     free( p_access->psz_path );
123     free( p_access->psz_demux );
124
125     if( p_access->p_source )
126     {
127         access_Delete( p_access->p_source );
128     }
129
130     vlc_object_release( p_access );
131 }
132