Include a Other Software section in Help file
[geeqie.git] / src / lua.c
index 84f3ff5..cb0eb65 100644 (file)
--- a/src/lua.c
+++ b/src/lua.c
@@ -1,21 +1,21 @@
-/** \file
- * \short LUA implementation
- * \author Klaus Ethgen <Klaus@Ethgen.de>
- */
-
 /*
- *  This file is a part of Geeqie project (http://geeqie.sourceforge.net/).
- *  Copyright (C) 2008 - 2010 The Geeqie Team
+ * Copyright (C) 2008 - 2016 The Geeqie Team
+ *
+ * Author: Klaus Ethgen
  *
- *  This program is free software; you can redistribute it and/or modify it
- *  under the terms of the GNU General Public License as published by the Free
- *  Software Foundation; either version 2 of the License, or (at your option)
- *  any later version.
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
- *  This program is distributed in the hope that it will be useful, but WITHOUT
- *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- *  more details.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #include "config.h"
 #include "ui_fileops.h"
 #include "exif.h"
 
+/**
+ * @file
+ * User API consists of the following namespaces:
+ * 
+ * @link image_methods Image:@endlink basic image information
+ *
+ * <b>Collection</b>: not implemented
+ * 
+ * @link exif_methods <exif-structure>:get_datum() @endlink get single exif parameter
+ *
+ */
+
 static lua_State *L; /** The LUA object needed for all operations (NOTE: That is
                       * a upper-case variable to match the documentation!) */
 
+/* Taking that definition from lua 5.1 source */
+#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 502
+int luaL_typerror(lua_State *L, int narg, const char *tname)
+{
+       const char *msg = lua_pushfstring(L, "%s expected, got %s", tname, luaL_typename(L, narg));
+       return luaL_argerror(L, narg, msg);
+}
+
+# define LUA_register_meta(L, meta) luaL_setfuncs(L, meta, 0);
+# define LUA_register_global(L, string, func) \
+       lua_newtable(L); \
+       luaL_setfuncs(L, func, 0); \
+       lua_pushvalue(L, -1); \
+       lua_setglobal(L, string)
+#else
+# define LUA_register_meta(L, meta) luaL_register(L, NULL, meta)
+# define LUA_register_global(L, string, func) luaL_register(L, string, func)
+#endif
+
 static FileData *lua_check_image(lua_State *L, int index)
 {
        FileData **fd;
@@ -50,6 +81,13 @@ static FileData *lua_check_image(lua_State *L, int index)
        return *fd;
 }
 
+/**
+ * @brief Get exif structure of selected image
+ * @param L 
+ * @returns An @ref ExifData data structure containing the entire exif data
+ * 
+ * To be used in conjunction with @link lua_exif_get_datum <exif-structure>:get_datum() @endlink
+ */
 static int lua_image_get_exif(lua_State *L)
 {
        FileData *fd;
@@ -68,6 +106,13 @@ static int lua_image_get_exif(lua_State *L)
        return 1;
 }
 
+/**
+ * @brief Get full path of selected image
+ * @param L 
+ * @returns char The full path of the file, including filename and extension
+ * 
+ * 
+ */
 static int lua_image_get_path(lua_State *L)
 {
        FileData *fd;
@@ -77,6 +122,13 @@ static int lua_image_get_path(lua_State *L)
        return 1;
 }
 
+/**
+ * @brief Get full filename of selected image
+ * @param L 
+ * @returns char The full filename including extension
+ * 
+ * 
+ */
 static int lua_image_get_name(lua_State *L)
 {
        FileData *fd;
@@ -86,6 +138,13 @@ static int lua_image_get_name(lua_State *L)
        return 1;
 }
 
+/**
+ * @brief Get file extension of selected image
+ * @param L 
+ * @returns char The file extension including preceding dot
+ * 
+ * 
+ */
 static int lua_image_get_extension(lua_State *L)
 {
        FileData *fd;
@@ -95,6 +154,14 @@ static int lua_image_get_extension(lua_State *L)
        return 1;
 }
 
+/**
+ * @brief Get file date of selected image
+ * @param L 
+ * @returns time_t The file date in Unix timestamp format.
+ * 
+ * time_t - signed integer which represents the number of seconds since
+ * the start of the Unix epoch: midnight UTC of January 1, 1970
+ */
 static int lua_image_get_date(lua_State *L)
 {
        FileData *fd;
@@ -104,6 +171,13 @@ static int lua_image_get_date(lua_State *L)
        return 1;
 }
 
+/**
+ * @brief Get file size of selected image
+ * @param L 
+ * @returns integer The file size in bytes
+ * 
+ * 
+ */
 static int lua_image_get_size(lua_State *L)
 {
        FileData *fd;
@@ -113,6 +187,24 @@ static int lua_image_get_size(lua_State *L)
        return 1;
 }
 
+/**
+ * @brief Get marks of selected image
+ * @param L 
+ * @returns unsigned integer Bit map of marks set
+ * 
+ * Bit 0 == Mark 1 etc.
+ * 
+ * 
+ */
+static int lua_image_get_marks(lua_State *L)
+{
+       FileData *fd;
+
+       fd = lua_check_image(L, 1);
+       lua_pushnumber(L, fd->marks);
+       return 1;
+}
+
 static ExifData *lua_check_exif(lua_State *L, int index)
 {
        ExifData **exif;
@@ -122,7 +214,21 @@ static ExifData *lua_check_exif(lua_State *L, int index)
        return *exif;
 }
 
-/* Interface for EXIF data */
+/**
+ * @brief Interface for EXIF data
+ * @param L 
+ * @returns <i>return</i> A single exif tag extracted from a structure output by the @link lua_image_get_exif Image:get_exif() @endlink command
+ * 
+ * e.g. \n
+ * exif_structure = Image:get_exif(); \n
+ * DateTimeDigitized = exif_structure:get_datum("Exif.Photo.DateTimeDigitized");
+ *
+ * Where <i>return</i> is: \n
+ * Exif.Photo.DateTimeOriginal = signed integer time_t \n
+ * Exif.Photo.DateTimeDigitized = signed integer time_t \n
+ * otherwise char
+ * 
+ */
 static int lua_exif_get_datum(lua_State *L)
 {
        const gchar *key;
@@ -158,37 +264,73 @@ static int lua_exif_get_datum(lua_State *L)
                        lua_pushnil(L);
                        return 1;
                        }
-               } // if (strcmp(key, "Exif.Photo.Da...
+               }
+       else if (strcmp(key, "Exif.Photo.DateTimeDigitized") == 0)
+               {
+               memset(&tm, 0, sizeof(tm));
+               if (value && strptime(value, "%Y:%m:%d %H:%M:%S", &tm))
+                       {
+                       datetime = mktime(&tm);
+                       lua_pushnumber(L, datetime);
+                       return 1;
+                       }
+               else
+                       {
+                       lua_pushnil(L);
+                       return 1;
+                       }
+               }
        lua_pushstring(L, value);
        return 1;
 }
 
 /**
- * \brief Initialize the lua interpreter.
+ * @brief  <b>Image:</b> metatable and methods \n
+ * Call by e.g. \n
+ * path_name = @link lua_image_get_path Image:getpath() @endlink \n
+ * where the keyword <b>Image</b> represents the currently selected image
+ */
+static const luaL_Reg image_methods[] = {
+               {"get_path", lua_image_get_path},
+               {"get_name", lua_image_get_name},
+               {"get_extension", lua_image_get_extension},
+               {"get_date", lua_image_get_date},
+               {"get_size", lua_image_get_size},
+               {"get_exif", lua_image_get_exif},
+               {"get_marks", lua_image_get_marks},
+               {NULL, NULL}
+};
+
+/**
+ * @brief  <b>exif:</b> table and methods \n
+ * Call by e.g. \n
+ * @link lua_exif_get_datum <exif-structure>:get_datum() @endlink \n
+ * where <exif-structure> is the output of @link lua_image_get_exif Image:get_exif() @endlink
+ * 
+ * exif_structure = Image:get_exif(); \n
+ * DateTimeDigitized = exif_structure:get_datum("Exif.Photo.DateTimeDigitized");
+ */
+static const luaL_Reg exif_methods[] = {
+               {"get_datum", lua_exif_get_datum},
+               {NULL, NULL}
+};
+
+/**
+ * @brief Initialize the lua interpreter.
  */
 void lua_init(void)
 {
        L = luaL_newstate();
-       luaL_openlibs(L); /* Open all libraries for lua programms */
+       luaL_openlibs(L); /* Open all libraries for lua programs */
 
        /* Now create custom methodes to do something */
        static const luaL_Reg meta_methods[] = {
                        {NULL, NULL}
        };
 
-       /* The Image metatable and methodes */
-       static const luaL_Reg image_methods[] = {
-                       {"get_path", lua_image_get_path},
-                       {"get_name", lua_image_get_name},
-                       {"get_extension", lua_image_get_extension},
-                       {"get_date", lua_image_get_date},
-                       {"get_size", lua_image_get_size},
-                       {"get_exif", lua_image_get_exif},
-                       {NULL, NULL}
-       };
-       luaL_register(L, "Image", image_methods);
+       LUA_register_global(L, "Image", image_methods);
        luaL_newmetatable(L, "Image");
-       luaL_register(L, NULL, meta_methods);
+       LUA_register_meta(L, meta_methods);
        lua_pushliteral(L, "__index");
        lua_pushvalue(L, -3);
        lua_settable(L, -3);
@@ -198,14 +340,9 @@ void lua_init(void)
        lua_pop(L, 1);
        lua_pop(L, 1);
 
-       /* The Exif table and methodes */
-       static const luaL_Reg exif_methods[] = {
-                       {"get_datum", lua_exif_get_datum},
-                       {NULL, NULL}
-       };
-       luaL_register(L, "Exif", exif_methods);
+       LUA_register_global(L, "Exif", exif_methods);
        luaL_newmetatable(L, "Exif");
-       luaL_register(L, NULL, meta_methods);
+       LUA_register_meta(L, meta_methods);
        lua_pushliteral(L, "__index");
        lua_pushvalue(L, -3);
        lua_settable(L, -3);
@@ -217,17 +354,36 @@ void lua_init(void)
 }
 
 /**
- * \brief Call a lua function to get a single value.
+ * @brief Call a lua function to get a single value.
  */
 gchar *lua_callvalue(FileData *fd, const gchar *file, const gchar *function)
 {
        gint result;
        gchar *data = NULL;
-       gchar *dir;
        gchar *path;
        FileData **image_data;
        gchar *tmp;
        GError *error = NULL;
+       gboolean ok;
+
+       ok = access(g_build_filename(get_rc_dir(), "lua", file, NULL), R_OK);
+       if (ok == 0)
+               {
+               path = g_build_filename(get_rc_dir(), "lua", file, NULL);
+               }
+       else
+               {
+               /** @FIXME what is the correct way to find the scripts folder? */
+               ok = access(g_build_filename("/usr/local/lib", GQ_APPNAME_LC, file, NULL), R_OK);
+               if (ok == 0)
+                       {
+                       path = g_build_filename("/usr/local/lib", GQ_APPNAME_LC, file, NULL);
+                       }
+               else
+                       {
+                       return g_strdup("");
+                       }
+               }
 
        /* Collection Table (Dummy at the moment) */
        lua_newtable(L);
@@ -246,11 +402,8 @@ gchar *lua_callvalue(FileData *fd, const gchar *file, const gchar *function)
                }
        else
                {
-               dir = g_build_filename(get_rc_dir(), "lua", NULL);
-               path = g_build_filename(dir, file, NULL);
                result = luaL_dofile(L, path);
                g_free(path);
-               g_free(dir);
                }
 
        if (result)