---------------------------------------------------------------------------
--- Remote control module allowing usage of awesome-client.
--
-- @author Julien Danjou <julien@danjou.info>
-- @copyright 2009 Julien Danjou
-- @module awful.remote
---------------------------------------------------------------------------

-- Grab environment we need
require("awful.dbus")
local load = loadstring or load -- luacheck: globals loadstring (compatibility with Lua 5.1)
local tostring = tostring
local ipairs = ipairs
local table = table
local unpack = unpack or table.unpack -- luacheck: globals unpack (compatibility with Lua 5.1)
local dbus = dbus
local type = type

if dbus then
    dbus.connect_signal("org.awesomewm.awful.Remote", function(data, code)
        if data.member == "Eval" then
            local f, e = load(code)
            if not f then
                return "s", e
            end
            local results = { pcall(f) }
            if not table.remove(results, 1) then
                return "s", "Error during execution: " .. tostring(results[1])
            end
            local retvals = {}
            for _, v in ipairs(results) do
                local t = type(v)
                if t == "boolean" then
                    table.insert(retvals, "b")
                    table.insert(retvals, v)
                elseif t == "number" then
                    table.insert(retvals, "d")
                    table.insert(retvals, v)
                else
                    table.insert(retvals, "s")
                    table.insert(retvals, tostring(v))
                end
            end
            return unpack(retvals)
        end
    end)
end

-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80