]> git.sesse.net Git - vlc/blob - plugins/dummy/intf_dummy.c
* Fixed the BeOS compile typo.
[vlc] / plugins / dummy / intf_dummy.c
1 /*****************************************************************************
2  * intf_dummy.c: dummy interface plugin
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 VideoLAN
5  * $Id: intf_dummy.c,v 1.8 2001/05/30 17:03:12 sam Exp $
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
24 #define MODULE_NAME dummy
25 #include "modules_inner.h"
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include "defs.h"
31
32 #include <stdlib.h>                                      /* malloc(), free() */
33
34 #include "config.h"
35 #include "common.h"
36 #include "threads.h"
37 #include "mtime.h"
38 #include "tests.h"
39
40 #include "intf_msg.h"
41 #include "interface.h"
42
43 #include "modules.h"
44
45 #include "main.h"
46 #include "modules_export.h"
47
48 /*****************************************************************************
49  * intf_sys_t: description and status of FB interface
50  *****************************************************************************/
51 typedef struct intf_sys_s
52 {
53
54 } intf_sys_t;
55
56 /*****************************************************************************
57  * Local prototypes.
58  *****************************************************************************/
59 static int  intf_Probe     ( probedata_t *p_data );
60 static int  intf_Open      ( intf_thread_t *p_intf );
61 static void intf_Close     ( intf_thread_t *p_intf );
62 static void intf_Run       ( intf_thread_t *p_intf );
63
64 /*****************************************************************************
65  * Functions exported as capabilities. They are declared as static so that
66  * we don't pollute the namespace too much.
67  *****************************************************************************/
68 void _M( intf_getfunctions )( function_list_t * p_function_list )
69 {
70     p_function_list->pf_probe = intf_Probe;
71     p_function_list->functions.intf.pf_open  = intf_Open;
72     p_function_list->functions.intf.pf_close = intf_Close;
73     p_function_list->functions.intf.pf_run   = intf_Run;
74 }
75
76 /*****************************************************************************
77  * intf_Probe: probe the interface and return a score
78  *****************************************************************************
79  * This function tries to initialize Gnome and returns a score to the
80  * plugin manager so that it can select the best plugin.
81  *****************************************************************************/
82 static int intf_Probe( probedata_t *p_data )
83 {
84     if( TestMethod( INTF_METHOD_VAR, "dummy" ) )
85     {
86         return( 999 );
87     }
88
89     return( 1 );
90 }
91
92 /*****************************************************************************
93  * intf_Open: initialize dummy interface
94  *****************************************************************************/
95 static int intf_Open( intf_thread_t *p_intf )
96 {
97     /* Allocate instance and initialize some members */
98     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
99     if( p_intf->p_sys == NULL )
100     {
101         return( 1 );
102     };
103
104     return( 0 );
105 }
106
107 /*****************************************************************************
108  * intf_Close: destroy dummy interface
109  *****************************************************************************/
110 static void intf_Close( intf_thread_t *p_intf )
111 {
112     /* Destroy structure */
113     free( p_intf->p_sys );
114 }
115
116
117 /*****************************************************************************
118  * intf_Run: main loop
119  *****************************************************************************/
120 static void intf_Run( intf_thread_t *p_intf )
121 {
122     while( !p_intf->b_die )
123     {
124         /* Manage core vlc functions through the callback */
125         p_intf->pf_manage( p_intf );
126
127         /* Wait a bit */
128         msleep( INTF_IDLE_SLEEP );
129     }
130 }
131