]> git.sesse.net Git - vlc/blob - src/misc/beos_specific.cpp
226725b42b39412db04807f50ea37d57e5a96db1
[vlc] / src / misc / beos_specific.cpp
1 /*****************************************************************************
2  * beos_init.cpp: Initialization for BeOS specific features
3  *****************************************************************************
4  * Copyright (C) 1999-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Marc Dressler <polux@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 #include <Application.h>
24 #include <Roster.h>
25 #include <Path.h>
26 #include <Alert.h>
27 #include <Message.h>
28 #include <Window.h>
29
30 #include <stdio.h>
31 #include <string.h> /* strdup() */
32 #include <malloc.h> /* free() */
33
34 extern "C"
35 {
36 #ifdef HAVE_CONFIG_H
37 # include "config.h"
38 #endif
39
40 #include <vlc_common.h>
41 #include "../libvlc.h"
42 }
43
44 /*****************************************************************************
45  * The VlcApplication class
46  *****************************************************************************/
47 class VlcApplication : public BApplication
48 {
49 public:
50     vlc_object_t *p_this;
51
52     VlcApplication(char* );
53     ~VlcApplication();
54
55     virtual void ReadyToRun();
56     virtual void AboutRequested();
57     virtual void RefsReceived(BMessage* message);
58     virtual void MessageReceived(BMessage* message);
59     virtual bool QuitRequested();
60
61 private:
62     BWindow*     fInterfaceWindow;
63     BMessage*    fRefsMessage;
64     bool         fReadyToQuit;
65 };
66
67 /*****************************************************************************
68  * Static vars
69  *****************************************************************************/
70
71 #include "../../modules/gui/beos/MsgVals.h"
72 #define REALLY_QUIT 'requ'
73
74 static vlc_object_t *p_appthread;
75
76 extern "C"
77 {
78
79 /*****************************************************************************
80  * Local prototypes.
81  *****************************************************************************/
82 static void* AppThread( vlc_object_t *p_appthread );
83
84 /*****************************************************************************
85  * system_Init: create a BApplication object and fill in program path.
86  *****************************************************************************/
87 void system_Init( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv[] )
88 {
89     p_appthread =
90             (vlc_object_t *)vlc_object_create( p_this, sizeof(vlc_object_t) );
91
92     /* Create the BApplication thread and wait for initialization */
93     vlc_thread_create( p_appthread, "app thread", AppThread,
94                        VLC_THREAD_PRIORITY_LOW, true );
95 }
96
97 /*****************************************************************************
98  * system_Configure: check for system specific configuration options.
99  *****************************************************************************/
100 void system_Configure( libvlc_int_t *, int *pi_argc, const char *ppsz_argv[] )
101 {
102 }
103
104 /*****************************************************************************
105  * system_End: destroy the BApplication object.
106  *****************************************************************************/
107 void system_End( libvlc_int_t *p_this )
108 {
109     /* Tell the BApplication to die */
110     be_app->PostMessage( REALLY_QUIT );
111
112     vlc_thread_join( p_appthread );
113     vlc_object_release( p_appthread );
114
115     free( vlc_global()->psz_vlcpath );
116 }
117
118 /* following functions are local */
119
120 /*****************************************************************************
121  * AppThread: the BApplication thread.
122  *****************************************************************************/
123 static void* AppThread( vlc_object_t * p_this )
124 {
125     VlcApplication * BeApp =
126         new VlcApplication("application/x-vnd.videolan-vlc");
127     vlc_object_attach( p_this, p_this->p_libvlc );
128     BeApp->p_this = p_this;
129     BeApp->Run();
130     vlc_object_detach( p_this );
131     delete BeApp;
132     return NULL;
133 }
134
135 } /* extern "C" */
136
137 /*****************************************************************************
138  * VlcApplication: application constructor
139  *****************************************************************************/
140 VlcApplication::VlcApplication( char * psz_mimetype )
141                :BApplication( psz_mimetype ),
142                 fInterfaceWindow( NULL ),
143                 fRefsMessage( NULL ),
144                 fReadyToQuit( false )
145 {
146     /* Nothing to do, we use the default constructor */
147 }
148
149 /*****************************************************************************
150  * ~VlcApplication: application destructor
151  *****************************************************************************/
152 VlcApplication::~VlcApplication( )
153 {
154     /* Nothing to do, we use the default destructor */
155     delete fRefsMessage;
156 }
157
158 /*****************************************************************************
159  * AboutRequested: called by the system on B_ABOUT_REQUESTED
160  *****************************************************************************/
161 void VlcApplication::AboutRequested( )
162 {
163     BAlert *alert;
164     alert = new BAlert( "VLC " PACKAGE_VERSION,
165                         "VLC " PACKAGE_VERSION " for BeOS\n\n"
166                                         "<www.videolan.org>", "OK");
167     alert->Go( NULL );
168 }
169
170 /*****************************************************************************
171  * ReadyToRun: called when the BApplication is initialized
172  *****************************************************************************/
173 void VlcApplication::ReadyToRun( )
174 {
175     BPath path;
176     app_info info;
177
178     /* Get the program path */
179     be_app->GetAppInfo( &info );
180     BEntry entry( &info.ref );
181     entry.GetPath( &path );
182     path.GetParent( &path );
183     vlc_global()->psz_vlcpath = strdup( path.Path() );
184
185     /* Tell the main thread we are finished initializing the BApplication */
186     vlc_thread_ready( p_this );
187 }
188
189 /*****************************************************************************
190  * RefsReceived: called when files are sent to our application
191  *               (for example when the user drops fils onto our icon)
192  *****************************************************************************/
193 void VlcApplication::RefsReceived(BMessage* message)
194 {
195     if (fInterfaceWindow)
196         fInterfaceWindow->PostMessage(message);
197     else {
198         delete fRefsMessage;
199         fRefsMessage = new BMessage(*message);
200     }
201 }
202
203 /*****************************************************************************
204  * MessageReceived: a BeOS applications main message loop
205  *                  Since VlcApplication and interface are separated
206  *                  in the vlc binary and the interface plugin,
207  *                  we use this method to "stick" them together.
208  *                  The interface will post a message to the global
209  *                  "be_app" pointer when the interface is created
210  *                  containing a pointer to the interface window.
211  *                  In this way, we can keep a B_REFS_RECEIVED message
212  *                  in store for the interface window to handle later.
213  *****************************************************************************/
214 void VlcApplication::MessageReceived(BMessage* message)
215 {
216     switch (message->what) {
217         case INTERFACE_CREATED: {
218             BWindow* interfaceWindow;
219             if (message->FindPointer("window", (void**)&interfaceWindow) == B_OK) {
220                 fInterfaceWindow = interfaceWindow;
221                 if (fRefsMessage) {
222                     fInterfaceWindow->PostMessage(fRefsMessage);
223                     delete fRefsMessage;
224                     fRefsMessage = NULL;
225                 }
226             }
227             break;
228         }
229
230         case REALLY_QUIT:
231             fReadyToQuit = true;
232             PostMessage( B_QUIT_REQUESTED );
233             break;
234
235         default:
236             BApplication::MessageReceived(message);
237     }
238 }
239
240 bool VlcApplication::QuitRequested()
241 {
242     if( !fReadyToQuit )
243     {
244         vlc_object_kill( p_this->p_libvlc );
245         return false;
246     }
247
248     BApplication::QuitRequested();
249     return true;
250 }