]> git.sesse.net Git - vlc/blob - share/lua/intf/modules/host.lua
Remove dead code.
[vlc] / share / lua / intf / modules / host.lua
1 --[==========================================================================[
2  host.lua: VLC Lua interface command line host module
3 --[==========================================================================[
4  Copyright (C) 2007 the VideoLAN team
5  $Id$
6
7  Authors: Antoine Cellerier <dionoea 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 --[==========================================================================[
25 Example use:
26
27     require "host"
28     h = host.host()
29
30     -- Bypass any authentification
31     function on_password( client )
32         client:switch_status( host.status.read )
33     end
34     h.status_callbacks[host.status.password] = on_password
35
36     h:listen( "localhost:4212" )
37     h:listen( "*console" )
38     --or h:listen( { "localhost:4212", "*console" } )
39
40     -- The main loop
41     while not vlc.misc.should_die() do
42         -- accept new connections and select active clients
43         local write, read = h:accept_and_select()
44
45         -- handle clients in write mode
46         for _, client in pairs(write) do
47             client:send()
48             client.buffer = ""
49             client:switch_status( host.status.read )
50         end
51
52         -- handle clients in read mode
53         for _, client in pairs(read) do
54             local str = client:recv(1000)
55             str = string.gsub(str,"\r?\n$","")
56             client.buffer = "Got `"..str.."'.\r\n"
57             client:switch_status( host.status.write )
58         end
59     end
60
61 For complete examples see existing VLC Lua interface modules (ie telnet.lua)
62 --]==========================================================================]
63
64 module("host",package.seeall)
65
66 status = { init = 0, read = 1, write = 2, password = 3 }
67 client_type = { net = 1, stdio = 2, fifo = 3 }
68
69 function host()
70     -- private data
71     local clients = {}
72     local listeners = {}
73     local status_callbacks = {}
74
75     -- private data
76     local fds_read = vlc.net.fd_set_new()
77     local fds_write = vlc.net.fd_set_new()
78
79     -- private methods
80     local function fd_client( client )
81         if client.status == status.read then
82             return client.rfd
83         else -- status.write
84             return client.wfd
85         end
86     end
87
88     local function send( client, data, len )
89         if len then
90             return vlc.net.send( client.wfd, data, len )
91         else
92             return vlc.net.send( client.wfd, data or client.buffer )
93         end
94     end
95
96     local function recv( client, len )
97         if len then
98             return vlc.net.recv( client.rfd, len )
99         else
100             return vlc.net.recv( client.rfd )
101         end
102     end
103
104     local function write( client, data )
105         return vlc.net.write( client.wfd, data or client.buffer )
106     end
107
108     local function read( client, len )
109         if len then
110             return vlc.net.read( client.rfd, len )
111         else
112             return vlc.net.read( client.rfd )
113         end
114     end
115
116     local function del_client( client )
117         if client.type == client_type.stdio then
118             client:send( "Cannot delete stdin/stdout client.\n" )
119             return
120         end
121         for i, c in pairs(clients) do
122             if c == client then
123                 if client.type == client_type.net then
124                     if client.wfd ~= client.rfd then
125                         vlc.net.close( client.rfd )
126                     end
127                     vlc.net.close( client.wfd )
128                 end
129                 clients[i] = nil
130                 return
131             end
132         end
133         vlc.msg.err("couldn't find client to remove.")
134     end
135     
136     local function switch_status( client, s )
137         if client.status == s then return end
138         client.status = s
139         if status_callbacks[s] then
140             status_callbacks[s]( client )
141         end
142     end
143
144     -- append a line to a client's (output) buffer
145     local function append( client, string )
146         client.buffer = client.buffer .. string .. "\r\n"
147     end
148
149     local function new_client( h, fd, wfd, t )
150         if fd < 0 then return end
151         local w, r
152         if t == client_type.net then
153             w = send
154             r = recv
155         else if t == client_type.stdio or t == client_type.fifo then
156             w = write
157             r = read
158         else
159             error("Unknown client type", t )
160         end end
161         local client = { -- data
162                          rfd = fd,
163                          wfd = wfd or fd,
164                          status = status.init,
165                          buffer = "",
166                          type = t,
167                          -- methods
168                          fd = fd_client,
169                          send = w,
170                          recv = r,
171                          del = del_client,
172                          switch_status = switch_status,
173                          append = append,
174                        }
175         client:send( "VLC media player "..vlc.misc.version().."\n" )
176         table.insert(clients, client)
177         client:switch_status(status.password)
178     end
179
180     function filter_client( fd, status, status2 )
181         local l = 0
182         fd:zero()
183         for _, client in pairs(clients) do
184             if client.status == status or client.status == status2 then
185                 fd:set( client:fd() )
186                 l = math.max( l, client:fd() )
187             end
188         end
189         return l
190     end
191
192     -- public methods
193     local function _listen_tcp( h, host, port )
194         if listeners.tcp and listeners.tcp[host]
195                          and listeners.tcp[host][port] then
196             error("Already listening on tcp host `"..host..":"..tostring(port).."'")
197         end
198         if not listeners.tcp then
199             listeners.tcp = {}
200         end
201         if not listeners.tcp[host] then
202             listeners.tcp[host] = {}
203         end
204         local listener = vlc.net.listen_tcp( host, port )
205         listeners.tcp[host][port] = listener
206         if not listeners.tcp.list then
207             -- FIXME: if host == "list" we'll have a problem
208             listeners.tcp.list = {}
209             local m = { __mode = "v" } -- week values
210             setmetatable( listeners.tcp.list, m )
211         end
212         table.insert( listeners.tcp.list, listener )
213     end
214
215     local function _listen_stdio( h )
216         
217         if listeners.stdio then
218             error("Already listening on stdio")
219         end
220         new_client( h, 0, 1, client_type.stdio )
221         listeners.stdio = true
222     end
223
224     local function _listen( h, url )
225         if type(url)==type({}) then
226             for _,u in pairs(url) do
227                 h:listen( u )
228             end
229         else
230             vlc.msg.info( "Listening on host \""..url.."\"." )
231             if url == "*console" then
232                 h:listen_stdio()
233             else
234                 u = vlc.net.url_parse( url )
235                 h:listen_tcp( u.host, u.port )
236             end
237         end
238     end
239
240     local function _accept_and_select( h, timeout )
241         local nfds = math.max( filter_client( fds_read, status.read, status.password ),
242                                filter_client( fds_write, status.write ) ) + 1
243         if listeners.tcp then
244             for _, listener in pairs(listeners.tcp.list) do
245                 for _, fd in pairs({listener:fds()}) do
246                     fds_read:set(fd)
247                     if fd >= nfds then
248                         nfds = fd + 1
249                     end
250                 end
251             end
252         end
253
254         local ret = vlc.net.select( nfds, fds_read, fds_write,
255                                     timeout or -1 )
256         local wclients = {}
257         local rclients = {}
258         if ret > 0 then
259             for _, client in pairs(clients) do
260                 if fds_write:isset( client:fd() ) then
261                     table.insert(wclients,client)
262                 end
263                 if fds_read:isset( client:fd() ) then
264                     table.insert(rclients,client)
265                 end
266             end
267             if listeners.tcp then
268                 for _, listener in pairs(listeners.tcp.list) do
269                     for _, fd in pairs({listener:fds()}) do
270                         if fds_read:isset(fd) then
271                             local afd = listener:accept(0)
272                             new_client( h, afd, afd, client_type.net )
273                             break
274                         end
275                     end
276                 end
277             end
278         end
279         return wclients, rclients
280     end
281
282     local function destructor( h )
283         print "destructor"
284         for _,client in pairs(clients) do
285             client:send("Shutting down.")
286             if client.type == client_type.tcp then
287                 if client.wfd ~= client.rfd then
288                     vlc.net.close(client.rfd)
289                 end
290                 vlc.net.close(client.wfd)
291             end
292         end
293     end
294
295     local function _broadcast( h, msg )
296         for _,client in pairs(clients) do
297             client:send( msg )
298         end
299     end
300
301     -- the instance
302     local h = { -- data
303                 status_callbacks = status_callbacks,
304                 -- methods
305                 listen = _listen,
306                 listen_tcp = _listen_tcp,
307                 listen_stdio = _listen_stdio,
308                 accept_and_select = _accept_and_select,
309                 broadcast = _broadcast,
310               }
311
312     -- the metatable
313     local m = { -- data
314                 __metatable = "Nothing to see here. Move along.",
315                 -- methods
316                 __gc = destructor,
317               }
318
319     setmetatable( h, m )
320
321     return h
322 end