Blame src/lua/exec_media_script_ident.c

Packit 3ff1e7
/* libquvi
Packit 3ff1e7
 * Copyright (C) 2012  Toni Gundogdu <legatvs@gmail.com>
Packit 3ff1e7
 *
Packit 3ff1e7
 * This file is part of libquvi <http://quvi.sourceforge.net/>.
Packit 3ff1e7
 *
Packit 3ff1e7
 * This library is free software: you can redistribute it and/or
Packit 3ff1e7
 * modify it under the terms of the GNU Affero General Public
Packit 3ff1e7
 * License as published by the Free Software Foundation, either
Packit 3ff1e7
 * version 3 of the License, or (at your option) any later version.
Packit 3ff1e7
 *
Packit 3ff1e7
 * This library is distributed in the hope that it will be useful,
Packit 3ff1e7
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 3ff1e7
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 3ff1e7
 * GNU Affero General Public License for more details.
Packit 3ff1e7
 *
Packit 3ff1e7
 * You should have received a copy of the GNU Affero General
Packit 3ff1e7
 * Public License along with this library.  If not, see
Packit 3ff1e7
 * <http://www.gnu.org/licenses/>.
Packit 3ff1e7
 */
Packit 3ff1e7
Packit 3ff1e7
/*
Packit 3ff1e7
 * NOTE: The error messages produced in these functions are intended for
Packit 3ff1e7
 *       developers. They would typically be seen when a new script is
Packit 3ff1e7
 *       being developed or an old one is being maintained.
Packit 3ff1e7
 *
Packit 3ff1e7
 *       These messages should be clear, indicating the actual error,
Packit 3ff1e7
 *       minimizing the time spent on locating the problem in the script.
Packit 3ff1e7
 */
Packit 3ff1e7
Packit 3ff1e7
#include "config.h"
Packit 3ff1e7
Packit 3ff1e7
#include <lauxlib.h>
Packit 3ff1e7
#include <glib.h>
Packit 3ff1e7
Packit 3ff1e7
#include "quvi.h"
Packit 3ff1e7
/* -- */
Packit 3ff1e7
#include "_quvi_s.h"
Packit 3ff1e7
#include "_quvi_media_s.h"
Packit 3ff1e7
#include "_quvi_script_s.h"
Packit 3ff1e7
/* -- */
Packit 3ff1e7
#include "lua/getfield.h"
Packit 3ff1e7
#include "lua/setfield.h"
Packit 3ff1e7
#include "lua/chk.h"
Packit 3ff1e7
#include "lua/def.h"
Packit 3ff1e7
Packit 3ff1e7
static const gchar script_func[] = "ident";
Packit 3ff1e7
Packit 3ff1e7
static QuviError _chk_results(lua_State *l, _quvi_script_t qs)
Packit 3ff1e7
{
Packit 3ff1e7
  QuviError r;
Packit 3ff1e7
Packit 3ff1e7
  r = (l_chk_can_parse_url(l, qs, MS_CAN_PARSE_URL,
Packit 3ff1e7
                           MS_DOMAINS, script_func) == TRUE)
Packit 3ff1e7
      ? QUVI_OK
Packit 3ff1e7
      : QUVI_ERROR_NO_SUPPORT;
Packit 3ff1e7
Packit 3ff1e7
  lua_pop(l, 1);
Packit 3ff1e7
  return (r);
Packit 3ff1e7
}
Packit 3ff1e7
Packit 3ff1e7
QuviError l_exec_media_script_ident(gpointer p, GSList *sl)
Packit 3ff1e7
{
Packit 3ff1e7
  _quvi_script_t qs;
Packit 3ff1e7
  _quvi_media_t qm;
Packit 3ff1e7
  lua_State *l;
Packit 3ff1e7
Packit 3ff1e7
  qm = (_quvi_media_t) p;
Packit 3ff1e7
  l = qm->handle.quvi->handle.lua;
Packit 3ff1e7
Packit 3ff1e7
  lua_pushnil(l);
Packit 3ff1e7
  qs = (_quvi_script_t) sl->data;
Packit 3ff1e7
Packit 3ff1e7
  if (luaL_dofile(l, qs->fpath->str))
Packit 3ff1e7
    luaL_error(l, "%s", lua_tostring(l, -1));
Packit 3ff1e7
Packit 3ff1e7
  lua_getglobal(l, script_func);
Packit 3ff1e7
Packit 3ff1e7
  if (!lua_isfunction(l, -1))
Packit 3ff1e7
    {
Packit 3ff1e7
      luaL_error(l, "%s: the function `%s' was not found",
Packit 3ff1e7
                 qs->fpath->str, script_func);
Packit 3ff1e7
    }
Packit 3ff1e7
Packit 3ff1e7
  lua_newtable(l);
Packit 3ff1e7
  l_setfield_s(l, MS_INPUT_URL, qm->url.input->str, -1);
Packit 3ff1e7
Packit 3ff1e7
  if (lua_pcall(l, 1, 1, 0))
Packit 3ff1e7
    {
Packit 3ff1e7
      g_string_assign(qm->handle.quvi->status.errmsg, lua_tostring(l, -1));
Packit 3ff1e7
      return (QUVI_ERROR_SCRIPT);
Packit 3ff1e7
    }
Packit 3ff1e7
Packit 3ff1e7
  if (!lua_istable(l, -1))
Packit 3ff1e7
    {
Packit 3ff1e7
      luaL_error(l, "%s: %s: must return a dictionary",
Packit 3ff1e7
                 qs->fpath->str, script_func);
Packit 3ff1e7
    }
Packit 3ff1e7
  return (_chk_results(l, qs));
Packit 3ff1e7
}
Packit 3ff1e7
Packit 3ff1e7
/* vim: set ts=2 sw=2 tw=72 expandtab: */