]> git.sesse.net Git - vlc/blob - modules/misc/lua/libs/misc.c
Implement Lua objects in the C code directly. Fix most type checks. Move every thing...
[vlc] / modules / misc / lua / libs / misc.c
1 /*****************************************************************************
2  * misc.c
3  *****************************************************************************
4  * Copyright (C) 2007-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea at videolan tod org>
8  *          Pierre d'Herbemont <pdherbemont # videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifndef  _GNU_SOURCE
29 #   define  _GNU_SOURCE
30 #endif
31
32 #ifdef HAVE_CONFIG_H
33 # include "config.h"
34 #endif
35
36 #include <vlc_common.h>
37 #include <vlc_plugin.h>
38 #include <vlc_meta.h>
39 #include <vlc_charset.h>
40 #include <vlc_aout.h>
41 #include <vlc_interface.h>
42
43 #include <lua.h>        /* Low level lua C API */
44 #include <lauxlib.h>    /* Higher level C API */
45 #include <lualib.h>     /* Lua libs */
46
47 #include "../vlc.h"
48 #include "../libs.h"
49
50 /*****************************************************************************
51  * Internal lua<->vlc utils
52  *****************************************************************************/
53 vlc_object_t * vlclua_get_this( lua_State *L )
54 {
55     vlc_object_t * p_this;
56     lua_getglobal( L, "vlc" );
57     lua_getfield( L, -1, "private" );
58     p_this = (vlc_object_t*)lua_topointer( L, lua_gettop( L ) );
59     lua_pop( L, 2 );
60     return p_this;
61 }
62
63 /*****************************************************************************
64  * VLC error code translation
65  *****************************************************************************/
66 int vlclua_push_ret( lua_State *L, int i_error )
67 {
68     lua_pushnumber( L, i_error );
69     lua_pushstring( L, vlc_error( i_error ) );
70     return 2;
71 }
72
73 /*****************************************************************************
74  * Get the VLC version string
75  *****************************************************************************/
76 static int vlclua_version( lua_State *L )
77 {
78     lua_pushstring( L, VLC_Version() );
79     return 1;
80 }
81
82 /*****************************************************************************
83  * Get the VLC copyright
84  *****************************************************************************/
85 static int vlclua_copyright( lua_State *L )
86 {
87     lua_pushstring( L, COPYRIGHT_MESSAGE );
88     return 1;
89 }
90
91 /*****************************************************************************
92  * Get the VLC license msg/disclaimer
93  *****************************************************************************/
94 static int vlclua_license( lua_State *L )
95 {
96     lua_pushstring( L, LICENSE_MSG );
97     return 1;
98 }
99
100 /*****************************************************************************
101  * Quit VLC
102  *****************************************************************************/
103 static int vlclua_quit( lua_State *L )
104 {
105     vlc_object_t *p_this = vlclua_get_this( L );
106     /* The rc.c code also stops the playlist ... not sure if this is needed
107      * though. */
108     vlc_object_kill( p_this->p_libvlc );
109     return 0;
110 }
111
112 /*****************************************************************************
113  * Global properties getters
114  *****************************************************************************/
115 static int vlclua_datadir( lua_State *L )
116 {
117     lua_pushstring( L, config_GetDataDir() );
118     return 1;
119 }
120
121 static int vlclua_homedir( lua_State *L )
122 {
123     lua_pushstring( L, config_GetHomeDir() );
124     return 1;
125 }
126
127 static int vlclua_configdir( lua_State *L )
128 {
129     char *dir = config_GetUserConfDir();
130     lua_pushstring( L, dir );
131     free( dir );
132     return 1;
133 }
134
135 static int vlclua_cachedir( lua_State *L )
136 {
137     char *dir = config_GetCacheDir();
138     lua_pushstring( L, dir );
139     free( dir );
140     return 1;
141 }
142
143 static int vlclua_datadir_list( lua_State *L )
144 {
145     const char *psz_dirname = luaL_checkstring( L, 1 );
146     char  *ppsz_dir_list[] = { NULL, NULL, NULL, NULL };
147     char **ppsz_dir = ppsz_dir_list;
148     int i = 1;
149
150     if( vlclua_dir_list( psz_dirname, ppsz_dir_list ) != VLC_SUCCESS )
151         return 0;
152     lua_newtable( L );
153     for( ; *ppsz_dir; ppsz_dir++ )
154     {
155         lua_pushstring( L, *ppsz_dir );
156         lua_rawseti( L, -2, i );
157         i ++;
158     }
159     return 1;
160 }
161 /*****************************************************************************
162  *
163  *****************************************************************************/
164 static int vlclua_lock_and_wait( lua_State *L )
165 {
166     vlc_object_t *p_this = vlclua_get_this( L );
167     int b_quit = vlc_object_lock_and_wait( p_this );
168     lua_pushboolean( L, b_quit );
169     return 1;
170 }
171
172 static int vlclua_signal( lua_State *L )
173 {
174     vlc_object_t *p_this = vlclua_get_this( L );
175     vlc_object_signal( p_this );
176     return 0;
177 }
178
179 static int vlclua_mdate( lua_State *L )
180 {
181     lua_pushnumber( L, mdate() );
182     return 1;
183 }
184
185 static int vlclua_intf_should_die( lua_State *L )
186 {
187     intf_thread_t *p_intf = (intf_thread_t*)vlclua_get_this( L );
188     lua_pushboolean( L, intf_ShouldDie( p_intf ) );
189     return 1;
190 }
191
192 /*****************************************************************************
193  *
194  *****************************************************************************/
195 static const luaL_Reg vlclua_misc_reg[] = {
196     { "version", vlclua_version },
197     { "copyright", vlclua_copyright },
198     { "license", vlclua_license },
199
200     { "datadir", vlclua_datadir },
201     { "homedir", vlclua_homedir },
202     { "configdir", vlclua_configdir },
203     { "cachedir", vlclua_cachedir },
204     { "datadir_list", vlclua_datadir_list },
205
206     { "mdate", vlclua_mdate },
207
208     { "lock_and_wait", vlclua_lock_and_wait },
209     { "signal", vlclua_signal },
210
211     { "should_die", vlclua_intf_should_die },
212     { "quit", vlclua_quit },
213
214     { NULL, NULL }
215 };
216
217 void luaopen_misc( lua_State *L )
218 {
219     lua_newtable( L );
220     luaL_register( L, NULL, vlclua_misc_reg );
221     lua_setfield( L, -2, "misc" );
222 }