]> git.sesse.net Git - vlc/blob - src/input/access.c
Implement access_GetParentInput and demux_GetParentInput and use.
[vlc] / src / input / access.c
1 /*****************************************************************************
2  * access.c
3  *****************************************************************************
4  * Copyright (C) 1999-2008 the VideoLAN team
5  * $Id$
6  *
7  * Author: Laurent Aimar <fenrir _AT_ videolan _DOT_ 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
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include "access.h"
29 #include <libvlc.h>
30
31 /*****************************************************************************
32  * access_New:
33  *****************************************************************************/
34 access_t *__access_New( vlc_object_t *p_obj, input_thread_t *p_parent_input,
35                         const char *psz_access, const char *psz_demux,
36                         const char *psz_path )
37 {
38     access_t *p_access = vlc_custom_create( p_obj, sizeof (*p_access),
39                                             VLC_OBJECT_GENERIC, "access" );
40
41     if( p_access == NULL )
42         return NULL;
43
44     /* */
45     msg_Dbg( p_obj, "creating access '%s' path='%s'",
46              psz_access, psz_path );
47
48     p_access->p_input = p_parent_input;
49
50     p_access->psz_path   = strdup( psz_path );
51     p_access->psz_access = strdup( psz_access );
52     p_access->psz_demux  = strdup( psz_demux );
53
54     p_access->pf_read    = NULL;
55     p_access->pf_block   = NULL;
56     p_access->pf_seek    = NULL;
57     p_access->pf_control = NULL;
58     p_access->p_sys      = NULL;
59
60     access_InitFields( p_access );
61
62     /* Before module_need (for var_Create...) */
63     vlc_object_attach( p_access, p_obj );
64
65     p_access->p_module = module_need( p_access, "access", psz_access, true );
66
67     if( p_access->p_module == NULL )
68     {
69         vlc_object_detach( p_access );
70         free( p_access->psz_access );
71         free( p_access->psz_path );
72         free( p_access->psz_demux );
73         vlc_object_release( p_access );
74         return NULL;
75     }
76
77     return p_access;
78 }
79
80 /*****************************************************************************
81  * access_Delete:
82  *****************************************************************************/
83 void access_Delete( access_t *p_access )
84 {
85     module_unneed( p_access, p_access->p_module );
86     vlc_object_detach( p_access );
87
88     free( p_access->psz_access );
89     free( p_access->psz_path );
90     free( p_access->psz_demux );
91
92     vlc_object_release( p_access );
93 }
94
95
96 /*****************************************************************************
97  * access_GetParentInput:
98  *****************************************************************************/
99 input_thread_t * access_GetParentInput( access_t *p_access )
100 {
101     return p_access->p_input ? vlc_object_hold((vlc_object_t *)p_access->p_input) : NULL;
102 }
103