rc.lua
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:24k
源码类别:

midi

开发平台:

Unix_Linux

  1. --[==========================================================================[
  2.  rc.lua: remote control module for VLC
  3. --[==========================================================================[
  4.  Copyright (C) 2007-2009 the VideoLAN team
  5.  $Id$
  6.  Authors: Antoine Cellerier <dionoea at videolan dot org>
  7.  This program is free software; you can redistribute it and/or modify
  8.  it under the terms of the GNU General Public License as published by
  9.  the Free Software Foundation; either version 2 of the License, or
  10.  (at your option) any later version.
  11.  This program is distributed in the hope that it will be useful,
  12.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  GNU General Public License for more details.
  15.  You should have received a copy of the GNU General Public License
  16.  along with this program; if not, write to the Free Software
  17.  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  18. --]==========================================================================]
  19. description=
  20. [============================================================================[
  21.  Remote control interface for VLC
  22.  This is a modules/control/rc.c look alike (with a bunch of new features)
  23.  Use on local term:
  24.     vlc -I luarc
  25.  Use on tcp connection:
  26.     vlc -I luarc --lua-config "rc={host='localhost:4212'}"
  27.  Use on multiple hosts (term + 2 tcp ports):
  28.     vlc -I luarc --lua-config "rc={hosts={'*console','localhost:4212','localhost:5678'}}"
  29.  Note:
  30.     -I luarc is an alias for -I lua --lua-intf rc
  31.  Configuration options setable throught the --lua-config option are:
  32.     * hosts: A list of hosts to listen on.
  33.     * host: A host to listen on. (won't be used if `hosts' is set)
  34.  The following can be set using the --lua-config option or in the interface
  35.  itself using the `set' command:
  36.     * prompt: The prompt.
  37.     * welcome: The welcome message.
  38.     * width: The default terminal width (used to format text).
  39.     * autocompletion: When issuing an unknown command, print a list of
  40.                       possible commands to autocomplete with. (0 to disable,
  41.                       1 to enable).
  42.     * autoalias: If autocompletion returns only one possibility, use it
  43.                  (0 to disable, 1 to enable).
  44.     * flatplaylist: 0 to disable, 1 to enable.
  45. ]============================================================================]
  46. require("common")
  47. skip = common.skip
  48. skip2 = function(foo) return skip(skip(foo)) end
  49. setarg = common.setarg
  50. strip = common.strip
  51. --[[ Setup default environement ]]
  52. env = { prompt = "> ";
  53.         width = 70;
  54.         autocompletion = 1;
  55.         autoalias = 1;
  56.         welcome = "Remote control interface initialized. Type `help' for help.";
  57.         flatplaylist = 0;
  58.       }
  59. --[[ Import custom environement variables from the command line config (if possible) ]]
  60. for k,v in pairs(env) do
  61.     if config[k] then
  62.         if type(env[k]) == type(config[k]) then
  63.             env[k] = config[k]
  64.             vlc.msg.dbg("set environement variable `"..k.."' to "..tostring(env[k]))
  65.         else
  66.             vlc.msg.err("environement variable `"..k.."' should be of type "..type(env[k])..". config value will be discarded.")
  67.         end
  68.     end
  69. end
  70. --[[ Command functions ]]
  71. function set_env(name,client,value)
  72.     if value then
  73.         local var,val = split_input(value)
  74.         if val then
  75.             s = string.gsub(val,""(.*)"","%1")
  76.             if type(client.env[var])==type(1) then
  77.                 client.env[var] = tonumber(s)
  78.             else
  79.                 client.env[var] = s
  80.             end
  81.         else
  82.             client:append( tostring(client.env[var]) )
  83.         end
  84.     else
  85.         for e,v in common.pairs_sorted(client.env) do
  86.             client:append(e.."="..v)
  87.         end
  88.     end
  89. end
  90. function save_env(name,client,value)
  91.     env = common.table_copy(client.env)
  92. end
  93. function alias(client,value)
  94.     if value then
  95.         local var,val = split_input(value)
  96.         if commands[var] and type(commands[var]) ~= type("") then
  97.             client:append("Error: cannot use a primary command as an alias name")
  98.         else
  99.             if commands[val] then
  100.                 commands[var]=val
  101.             else
  102.                 client:append("Error: unknown primary command `"..val.."'.")
  103.             end
  104.         end
  105.     else
  106.         for c,v in common.pairs_sorted(commands) do
  107.             if type(v)==type("") then
  108.                 client:append(c.."="..v)
  109.             end
  110.         end
  111.     end
  112. end
  113. function fixme(name,client)
  114.     client:append( "FIXME: unimplemented command `"..name.."'." )
  115. end
  116. function logout(name,client)
  117.     if client.type == host.client_type.net then
  118.         client:send("Bye-bye!")
  119.         client:del()
  120.     else
  121.         client:append("Error: Can't logout of stdin/stdout. Use quit or shutdown to close VLC.")
  122.     end
  123. end
  124. function shutdown(name,client)
  125.     client:append("Bye-bye!")
  126.     h:broadcast("Shutting down.")
  127.     vlc.msg.info("Requested shutdown.")
  128.     vlc.misc.quit()
  129. end
  130. function quit(name,client)
  131.     if client.type == host.client_type.net then
  132.         logout(name,client)
  133.     else
  134.         shutdown(name,client)
  135.     end
  136. end
  137. function add(name,client,arg)
  138.     -- TODO: par single and double quotes properly
  139.     local f
  140.     if name == "enqueue" then
  141.         f = vlc.playlist.enqueue
  142.     else
  143.         f = vlc.playlist.add
  144.     end
  145.     local options = {}
  146.     for o in string.gmatch(arg," +:([^ ]*)") do
  147.         table.insert(options,o)
  148.     end
  149.     arg = string.gsub(arg," +:.*$","")
  150.     f({{path=arg,options=options}})
  151. end
  152. function playlist_is_tree( client )
  153.     if client.env.flatplaylist == 0 then
  154.         return true
  155.     else
  156.         return false
  157.     end
  158. end
  159. function playlist(name,client,arg)
  160.     function playlist0(item,prefix)
  161.         local prefix = prefix or ""
  162.         if not item.flags.disabled then
  163.             local str = "| "..prefix..tostring(item.id).." - "..item.name
  164.             if item.duration > 0 then
  165.                 str = str.." ("..common.durationtostring(item.duration)..")"
  166.             end
  167.             if item.nb_played > 0 then
  168.                 str = str.." [played "..tostring(item.nb_played).." time"
  169.                 if item.nb_played > 1 then
  170.                     str = str .. "s"
  171.                 end
  172.                 str = str .. "]"
  173.             end
  174.             client:append(str)
  175.         end
  176.         if item.children then
  177.             for _, c in ipairs(item.children) do
  178.                 playlist0(c,prefix.."  ")
  179.             end
  180.         end
  181.     end
  182.     local playlist
  183.     local tree = playlist_is_tree(client)
  184.     if name == "search" then
  185.         playlist = vlc.playlist.search(arg or "", tree)
  186.     else
  187.         if tonumber(arg) then
  188.             playlist = vlc.playlist.get(tonumber(arg), tree)
  189.         elseif arg then
  190.             playlist = vlc.playlist.get(arg, tree)
  191.         else
  192.             playlist = vlc.playlist.get(nil, tree)
  193.         end
  194.     end
  195.     if name == "search" then
  196.         client:append("+----[ Search - "..(arg or "`reset'").." ]")
  197.     else
  198.         client:append("+----[ Playlist - "..playlist.name.." ]")
  199.     end
  200.     if playlist.children then
  201.         for _, item in ipairs(playlist.children) do
  202.             playlist0(item)
  203.         end
  204.     else
  205.         playlist0(playlist)
  206.     end
  207.     if name == "search" then
  208.         client:append("+----[ End of search - Use `search' to reset ]")
  209.     else
  210.         client:append("+----[ End of playlist ]")
  211.     end
  212. end
  213. function playlist_sort(name,client,arg)
  214.     if not arg then
  215.         client:append("Valid sort keys are: id, title, artist, genre, random, duration, album.")
  216.     else
  217.         local tree = playlist_is_tree(client)
  218.         vlc.playlist.sort(arg,false,tree)
  219.     end
  220. end
  221. function services_discovery(name,client,arg)
  222.     if arg then
  223.         if vlc.sd.is_loaded(arg) then
  224.             vlc.sd.remove(arg)
  225.             client:append(arg.." disabled.")
  226.         else
  227.             vlc.sd.add(arg)
  228.             client:append(arg.." enabled.")
  229.         end
  230.     else
  231.         local sd = vlc.sd.get_services_names()
  232.         client:append("+----[ Services discovery ]")
  233.         for n,ln in pairs(sd) do
  234.             local status
  235.             if vlc.sd.is_loaded(n) then
  236.                 status = "enabled"
  237.             else
  238.                 status = "disabled"
  239.             end
  240.             client:append("| "..n..": " .. ln .. " (" .. status .. ")")
  241.         end
  242.         client:append("+----[ End of services discovery ]")
  243.     end
  244. end
  245. function print_text(label,text)
  246.     return function(name,client)
  247.         client:append("+----[ "..label.." ]")
  248.         client:append "|"
  249.         for line in string.gmatch(text,".-r?n") do
  250.             client:append("| "..string.gsub(line,"r?n",""))
  251.         end
  252.         client:append "|"
  253.         client:append("+----[ End of "..string.lower(label).." ]")
  254.     end
  255. end
  256. function help(name,client,arg)
  257.     local width = client.env.width
  258.     local long = (name == "longhelp")
  259.     local extra = ""
  260.     if arg then extra = "matching `" .. arg .. "' " end
  261.     client:append("+----[ Remote control commands "..extra.."]")
  262.     for i, cmd in ipairs(commands_ordered) do
  263.         if (cmd == "" or not commands[cmd].adv or long)
  264.         and (not arg or string.match(cmd,arg)) then
  265.             local str = "| " .. cmd
  266.             if cmd ~= "" then
  267.                 local val = commands[cmd]
  268.                 if val.aliases then
  269.                     for _,a in ipairs(val.aliases) do
  270.                         str = str .. ", " .. a
  271.                     end
  272.                 end
  273.                 if val.args then str = str .. " " .. val.args end
  274.                 if #str%2 == 1 then str = str .. " " end
  275.                 str = str .. string.rep(" .",(width-(#str+#val.help)-1)/2)
  276.                 str = str .. string.rep(" ",width-#str-#val.help) .. val.help
  277.             end
  278.             client:append(str)
  279.         end
  280.     end
  281.     client:append("+----[ end of help ]")
  282. end
  283. function input_info(name,client)
  284.     local categories = vlc.input_info()
  285.     for cat, infos in pairs(categories) do
  286.         client:append("+----[ "..cat.." ]")
  287.         client:append("|")
  288.         for name, value in pairs(infos) do
  289.             client:append("| "..name..": "..value)
  290.         end
  291.         client:append("|")
  292.     end
  293.     client:append("+----[ end of stream info ]")
  294. end
  295. function playlist_status(name,client)
  296.     local a,b,c = vlc.playlist.status()
  297.     client:append( "( new input: " .. tostring(a) .. " )" )
  298.     client:append( "( audio volume: " .. tostring(b) .. " )")
  299.     client:append( "( state " .. tostring(c) .. " )")
  300. end
  301. function is_playing(name,client)
  302.     if vlc.input.is_playing() then client:append "1" else client:append "0" end
  303. end
  304. function ret_print(foo,start,stop)
  305.     local start = start or ""
  306.     local stop = stop or ""
  307.     return function(discard,client,...) client:append(start..tostring(foo(...))..stop) end
  308. end
  309. function get_time(var)
  310.     return function(name,client)
  311.         local input = vlc.object.input()
  312.         client:append(math.floor(vlc.var.get( input, var )))
  313.     end
  314. end
  315. function titlechap(name,client,value)
  316.     local input = vlc.object.input()
  317.     local var = string.gsub( name, "_.*$", "" )
  318.     if value then
  319.         vlc.var.set( input, var, value )
  320.     else
  321.         local item = vlc.var.get( input, var )
  322.         -- Todo: add item name conversion
  323.         client:append(item)
  324.     end
  325. end
  326. function titlechap_offset(client,offset)
  327.     return function(name,value)
  328.         local input = vlc.object.input()
  329.         local var = string.gsub( name, "_.*$", "" )
  330.         vlc.var.set( input, var, vlc.var.get( input, var )+offset )
  331.     end
  332. end
  333. function seek(name,client,value)
  334.     common.seek(value)
  335. end
  336. function volume(name,client,value)
  337.     if value then
  338.         vlc.volume.set(value)
  339.     else
  340.         client:append(tostring(vlc.volume.get()))
  341.     end
  342. end
  343. function rate(name,client)
  344.     local input = vlc.object.input()
  345.     if name == "normal" then
  346.         vlc.var.set(input,"rate",1000) -- FIXME: INPUT_RATE_DEFAULT
  347.     else
  348.         vlc.var.set(input,"rate-"..name,nil)
  349.     end
  350. end
  351. function listvalue(obj,var)
  352.     return function(client,value)
  353.         local o = vlc.object.find(nil,obj,"anywhere")
  354.         if not o then return end
  355.         if value then
  356.             vlc.var.set( o, var, value )
  357.         else
  358.             local c = vlc.var.get( o, var )
  359.             local v, l = vlc.var.get_list( o, var )
  360.             client:append("+----[ "..var.." ]")
  361.             for i,val in ipairs(v) do
  362.                 local mark = (val==c)and " *" or ""
  363.                 client:append("| "..tostring(val).." - "..tostring(l[i])..mark)
  364.             end
  365.             client:append("+----[ end of "..var.." ]")
  366.         end
  367.     end
  368. end
  369. function eval(client,val)
  370.     client:append(loadstring("return "..val)())
  371. end
  372. --[[ Declare commands, register their callback functions and provide
  373.      help strings here.
  374.      Syntax is:
  375.      "<command name>"; { func = <function>; [ args = "<str>"; ] help = "<str>"; [ adv = <bool>; ] [ aliases = { ["<str>";]* }; ] }
  376.      ]]
  377. commands_ordered = {
  378.     { "add"; { func = add; args = "XYZ"; help = "add XYZ to playlist" } };
  379.     { "enqueue"; { func = add; args = "XYZ"; help = "queue XYZ to playlist" } };
  380.     { "playlist"; { func = playlist; help = "show items currently in playlist" } };
  381.     { "search"; { func = playlist; args = "[string]"; help = "search for items in playlist (or reset search)" } };
  382.     { "sort"; { func = playlist_sort; args = "key"; help = "sort the playlist" } };
  383.     { "sd"; { func = services_discovery; args = "[sd]"; help = "show services discovery or toggle" } };
  384.     { "play"; { func = skip2(vlc.playlist.play); help = "play stream" } };
  385.     { "stop"; { func = skip2(vlc.playlist.stop); help = "stop stream" } };
  386.     { "next"; { func = skip2(vlc.playlist.next); help = "next playlist item" } };
  387.     { "prev"; { func = skip2(vlc.playlist.prev); help = "previous playlist item" } };
  388.     { "goto"; { func = skip2(vlc.playlist.goto); help = "goto item at index" } };
  389.     { "repeat"; { func = skip2(vlc.playlist.repeat_); args = "[on|off]"; help = "toggle playlist repeat" } };
  390.     { "loop"; { func = skip2(vlc.playlist.loop); args = "[on|off]"; help = "toggle playlist loop" } };
  391.     { "random"; { func = skip2(vlc.playlist.random); args = "[on|off]"; help = "toggle playlist random" } };
  392.     { "clear"; { func = skip2(vlc.playlist.clear); help = "clear the playlist" } };
  393.     { "status"; { func = playlist_status; help = "current playlist status" } };
  394.     { "title"; { func = titlechap; args = "[X]"; help = "set/get title in current item" } };
  395.     { "title_n"; { func = titlechap_offset(1); help = "next title in current item" } };
  396.     { "title_p"; { func = titlechap_offset(-1); help = "previous title in current item" } };
  397.     { "chapter"; { func = titlechap; args = "[X]"; help = "set/get chapter in current item" } };
  398.     { "chapter_n"; { func = titlechap_offset(1); help = "next chapter in current item" } };
  399.     { "chapter_p"; { func = titlechap_offset(-1); help = "previous chapter in current item" } };
  400.     { "" };
  401.     { "seek"; { func = seek; args = "X"; help = "seek in seconds, for instance `seek 12'" } };
  402.     { "pause"; { func = setarg(common.hotkey,"key-play-pause"); help = "toggle pause" } };
  403.     { "fastforward"; { func = setarg(common.hotkey,"key-jump+extrashort"); help = "set to maximum rate" } };
  404.     { "rewind"; { func = setarg(common.hotkey,"key-jump-extrashort"); help = "set to minimum rate" } };
  405.     { "faster"; { func = rate; help = "faster playing of stream" } };
  406.     { "slower"; { func = rate; help = "slower playing of stream" } };
  407.     { "normal"; { func = rate; help = "normal playing of stream" } };
  408.     { "fullscreen"; { func = skip2(vlc.video.fullscreen); args = "[on|off]"; help = "toggle fullscreen"; aliases = { "f", "F" } } };
  409.     { "info"; { func = input_info; help = "information about the current stream" } };
  410.     { "get_time"; { func = get_time("time"); help = "seconds elapsed since stream's beginning" } };
  411.     { "is_playing"; { func = is_playing; help = "1 if a stream plays, 0 otherwise" } };
  412.     { "get_title"; { func = ret_print(vlc.input.get_title); help = "the title of the current stream" } };
  413.     { "get_length"; { func = get_time("length"); help = "the length of the current stream" } };
  414.     { "" };
  415.     { "volume"; { func = volume; args = "[X]"; help = "set/get audio volume" } };
  416.     { "volup"; { func = ret_print(vlc.volume.up,"( audio volume: "," )"); args = "[X]"; help = "raise audio volume X steps" } };
  417.     { "voldown"; { func = ret_print(vlc.volume.down,"( audio volume: "," )"); args = "[X]"; help = "lower audio volume X steps" } };
  418.     { "adev"; { func = skip(listvalue("aout","audio-device")); args = "[X]"; help = "set/get audio device" } };
  419.     { "achan"; { func = skip(listvalue("aout","audio-channels")); args = "[X]"; help = "set/get audio channels" } };
  420.     { "atrack"; { func = skip(listvalue("input","audio-es")); args = "[X]"; help = "set/get audio track" } };
  421.     { "vtrack"; { func = skip(listvalue("input","video-es")); args = "[X]"; help = "set/get video track" } };
  422.     { "vratio"; { func = skip(listvalue("vout","aspect-ratio")); args = "[X]"; help = "set/get video aspect ratio" } };
  423.     { "vcrop"; { func = skip(listvalue("vout","crop")); args = "[X]"; help = "set/get video crop"; aliases = { "crop" } } };
  424.     { "vzoom"; { func = skip(listvalue("vout","zoom")); args = "[X]"; help = "set/get video zoom"; aliases = { "zoom" } } };
  425.     { "snapshot"; { func = common.snapshot; help = "take video snapshot" } };
  426.     { "strack"; { func = skip(listvalue("input","spu-es")); args = "[X]"; help = "set/get subtitles track" } };
  427.     { "hotkey"; { func = skip(common.hotkey); args = "[hotkey name]"; help = "simulate hotkey press"; adv = true; aliases = { "key" } } };
  428.     { "menu"; { func = fixme; args = "[on|off|up|down|left|right|select]"; help = "use menu"; adv = true } };
  429.     { "" };
  430.     { "set"; { func = set_env; args = "[var [value]]"; help = "set/get env var"; adv = true } };
  431.     { "save_env"; { func = save_env; help = "save env vars (for future clients)"; adv = true } };
  432.     { "alias"; { func = skip(alias); args = "[cmd]"; help = "set/get command aliases"; adv = true } };
  433.     { "eval"; { func = skip(eval); help = "eval some lua (*debug*)"; adv =true } }; -- FIXME: comment out if you're not debugging
  434.     { "description"; { func = print_text("Description",description); help = "describe this module" } };
  435.     { "license"; { func = print_text("License message",vlc.misc.license()); help = "print VLC's license message"; adv = true } };
  436.     { "help"; { func = help; args = "[pattern]"; help = "a help message"; aliases = { "?" } } };
  437.     { "longhelp"; { func = help; args = "[pattern]"; help = "a longer help message" } };
  438.     { "logout"; { func = logout; help = "exit (if in a socket connection)" } };
  439.     { "quit"; { func = quit; help = "quit VLC (or logout if in a socket connection)" } };
  440.     { "shutdown"; { func = shutdown; help = "shutdown VLC" } };
  441.     }
  442. commands = {}
  443. for i, cmd in ipairs( commands_ordered ) do
  444.     if #cmd == 2 then
  445.         commands[cmd[1]]=cmd[2]
  446.         if cmd[2].aliases then
  447.             for _,a in ipairs(cmd[2].aliases) do
  448.                 commands[a]=cmd[1]
  449.             end
  450.         end
  451.     end
  452.     commands_ordered[i]=cmd[1]
  453. end
  454. --[[ From now on commands_ordered is a list of the different command names
  455.      and commands is a associative array indexed by the command name. ]]
  456. -- Compute the column width used when printing a the autocompletion list
  457. env.colwidth = 0
  458. for c,_ in pairs(commands) do
  459.     if #c > env.colwidth then env.colwidth = #c end
  460. end
  461. env.coldwidth = env.colwidth + 1
  462. -- Count unimplemented functions
  463. do
  464.     local count = 0
  465.     local list = "("
  466.     for c,v in pairs(commands) do
  467.         if v.func == fixme then
  468.             count = count + 1
  469.             if count ~= 1 then
  470.                 list = list..","
  471.             end
  472.             list = list..c
  473.         end
  474.     end
  475.     list = list..")"
  476.     if count ~= 0 and env.welcome then
  477.         env.welcome = env.welcome .. "rnWarning: "..count.." functions are still unimplemented "..list.."."
  478.     end
  479. end
  480. --[[ Utils ]]
  481. function split_input(input)
  482.     local input = strip(input)
  483.     local s = string.find(input," ")
  484.     if s then
  485.         return string.sub(input,0,s-1), strip(string.sub(input,s))
  486.     else
  487.         return input
  488.     end
  489. end
  490. function call_command(cmd,client,arg)
  491.     if type(commands[cmd]) == type("") then
  492.         cmd = commands[cmd]
  493.     end
  494.     local ok, msg
  495.     if arg ~= nil then
  496.         ok, msg = pcall( commands[cmd].func, cmd, client, arg )
  497.     else
  498.         ok, msg = pcall( commands[cmd].func, cmd, client )
  499.     end
  500.     if not ok then
  501.         local a = arg or ""
  502.         if a ~= "" then a = " " .. a end
  503.         client:append("Error in `"..cmd..a.."' ".. msg)
  504.     end
  505. end
  506. function call_libvlc_command(cmd,client,arg)
  507.     local ok, vlcerr, vlcmsg = pcall( vlc.var.libvlc_command, cmd, arg )
  508.     if not ok then
  509.         local a = arg or ""
  510.         if a ~= "" then a = " " .. a end
  511.         client:append("Error in `"..cmd..a.."' ".. vlcerr) -- when pcall fails, the 2nd arg is the error message.
  512.     end
  513.     return vlcerr
  514. end
  515. function call_object_command(cmd,client,arg)
  516.     local var, val = split_input(arg)
  517.     local ok, vlcmsg, vlcerr, vlcerrmsg = pcall( vlc.var.command, cmd, var, val )
  518.     if not ok then
  519.         client:append("Error in `"..cmd.." "..var.." "..val.."' ".. vlcmsg) -- when pcall fails the 2nd arg is the error message
  520.     end
  521.     if vlcmsg ~= "" then
  522.         client:append(vlcmsg)
  523.     end
  524.     return vlcerr
  525. end
  526. --[[ Setup host ]]
  527. require("host")
  528. h = host.host()
  529. -- No auth
  530. h.status_callbacks[host.status.password] = function(client)
  531.     client.env = common.table_copy( env )
  532.     client:send( client.env.welcome .. "rn")
  533.     client:switch_status(host.status.read)
  534. end
  535. -- Print prompt when switching a client's status to `read'
  536. h.status_callbacks[host.status.read] = function(client)
  537.     client:send( client.env.prompt )
  538. end
  539. h:listen( config.hosts or config.host or "*console" )
  540. --[[ The main loop ]]
  541. while not vlc.misc.should_die() do
  542.     h:accept()
  543.     local write, read = h:select(0.1)
  544.     for _, client in pairs(write) do
  545.         local len = client:send()
  546.         client.buffer = string.sub(client.buffer,len+1)
  547.         if client.buffer == "" then client:switch_status(host.status.read) end
  548.     end
  549.     for _, client in pairs(read) do
  550.         local input = client:recv(1000)
  551.         local done = false
  552.         if string.match(input,"n$") then
  553.             client.buffer = string.gsub(client.buffer..input,"r?n$","")
  554.             done = true
  555.         elseif client.buffer == ""
  556.            and ((client.type == host.client_type.stdio and input == "")
  557.            or  (client.type == host.client_type.net and input == "04")) then
  558.             -- Caught a ^D
  559.             client.buffer = "quit"
  560.             done = true
  561.         else
  562.             client.buffer = client.buffer .. input
  563.         end
  564.         if done then
  565.             local cmd,arg = split_input(client.buffer)
  566.             client.buffer = ""
  567.             client:switch_status(host.status.write)
  568.             if commands[cmd] then
  569.                 call_command(cmd,client,arg)
  570.             elseif string.sub(cmd,0,1)=='@'
  571.             and call_object_command(string.sub(cmd,2,#cmd),client,arg) == 0 then
  572.                 --
  573.             elseif client.type == host.client_type.stdio
  574.             and call_libvlc_command(cmd,client,arg) == 0 then
  575.                 --
  576.             else
  577.                 local choices = {}
  578.                 if client.env.autocompletion ~= 0 then
  579.                     for v,_ in common.pairs_sorted(commands) do
  580.                         if string.sub(v,0,#cmd)==cmd then
  581.                             table.insert(choices, v)
  582.                         end
  583.                     end
  584.                 end
  585.                 if #choices == 1 and client.env.autoalias ~= 0 then
  586.                     -- client:append("Aliasing to ""..choices[1].."".")
  587.                     cmd = choices[1]
  588.                     call_command(cmd,client,arg)
  589.                 else
  590.                     client:append("Unknown command `"..cmd.."'. Type `help' for help.")
  591.                     if #choices ~= 0 then
  592.                         client:append("Possible choices are:")
  593.                         local cols = math.floor(client.env.width/(client.env.colwidth+1))
  594.                         local fmt = "%-"..client.env.colwidth.."s"
  595.                         for i = 1, #choices do
  596.                             choices[i] = string.format(fmt,choices[i])
  597.                         end
  598.                         for i = 1, #choices, cols do
  599.                             local j = i + cols - 1
  600.                             if j > #choices then j = #choices end
  601.                             client:append("  "..table.concat(choices," ",i,j))
  602.                         end
  603.                     end
  604.                 end
  605.             end
  606.         end
  607.     end
  608. end