Silent 2 warnings using explicit type casting.
[geeqie.git] / src / exif-common.c
index 33f6aba..12956de 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Geeqie
  * (C) 2006 John Ellis
- * Copyright (C) 2008 The Geeqie Team
+ * Copyright (C) 2008 - 2012 The Geeqie Team
  *
 */
 
@@ -9,6 +9,8 @@
 #  include "config.h"
 #endif
 
+#define _XOPEN_SOURCE
+
 #include <stdio.h>
 #include <string.h>
 #include <fcntl.h>
 #ifdef HAVE_LCMS
 /*** color support enabled ***/
 
-#ifdef HAVE_LCMS_LCMS_H
-  #include <lcms/lcms.h>
+#ifdef HAVE_LCMS2
+#include <lcms2.h>
 #else
-  #include <lcms.h>
+#include <lcms.h>
 #endif
 #endif
 
 
 #include "filedata.h"
 #include "filefilter.h"
+#include "filecache.h"
 #include "format_raw.h"
 #include "ui_fileops.h"
+#include "cache.h"
+#include "jpeg_parser.h"
 
 
-static double exif_rational_to_double(ExifRational *r, gint sign)
+static gdouble exif_rational_to_double(ExifRational *r, gint sign)
 {
        if (!r || r->den == 0.0) return 0.0;
 
-       if (sign) return (double)((int)r->num) / (double)((int)r->den);
-       return (double)r->num / r->den;
+       if (sign) return (gdouble)((gint)r->num) / (gdouble)((gint)r->den);
+       return (gdouble)r->num / r->den;
 }
 
-static double exif_get_rational_as_double(ExifData *exif, const gchar *key)
+static gdouble exif_get_rational_as_double(ExifData *exif, const gchar *key)
 {
        ExifRational *r;
        gint sign;
@@ -85,15 +90,14 @@ static gchar *remove_common_prefix(gchar *s, gchar *t)
        return s;
 }
 
-static double get_crop_factor(ExifData *exif)
+static gdouble get_crop_factor(ExifData *exif)
 {
-       double res_unit_tbl[] = {0.0, 25.4, 25.4, 10.0, 1.0, 0.001 };
-
-       double xres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneXResolution");
-       double yres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneYResolution");
-       int res_unit;
-       int w, h;
-       double xsize, ysize, size, ratio;
+       gdouble res_unit_tbl[] = {0.0, 25.4, 25.4, 10.0, 1.0, 0.001 };
+       gdouble xres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneXResolution");
+       gdouble yres = exif_get_rational_as_double(exif, "Exif.Photo.FocalPlaneYResolution");
+       gint res_unit;
+       gint w, h;
+       gdouble xsize, ysize, size, ratio;
 
        if (xres == 0.0 || yres == 0.0) return 0.0;
 
@@ -118,16 +122,16 @@ static double get_crop_factor(ExifData *exif)
 
 }
 
-static gint remove_suffix(gchar *str, const gchar *suffix, gint suffix_len)
+static gboolean remove_suffix(gchar *str, const gchar *suffix, gint suffix_len)
 {
        gint str_len = strlen(str);
-       
+
        if (suffix_len < 0) suffix_len = strlen(suffix);
        if (str_len < suffix_len) return FALSE;
-       
-       if (strcmp(str + str_len - suffix_len, suffix) != 0) return FALSE; 
+
+       if (strcmp(str + str_len - suffix_len, suffix) != 0) return FALSE;
        str[str_len - suffix_len] = '\0';
-       
+
        return TRUE;
 }
 
@@ -154,19 +158,18 @@ static gchar *exif_build_formatted_Camera(ExifData *exif)
 
        if (software)
                {
-               gint i;
+               gint i, j;
 
                g_strstrip(software);
-               
+
                /* remove superfluous spaces (pentax K100D) */
-               for (i = 0; software[i]; i++)
+               for (i = 0, j = 0; software[i]; i++, j++)
+                       {
                        if (software[i] == ' ' && software[i + 1] == ' ')
-                               {
-                               gint j;
-
-                               for (j = 1; software[i + j] == ' '; j++);
-                               memmove(software + i + 1, software + i + j, strlen(software + i + j) + 1);
-                               }
+                               i++;
+                       if (i != j) software[j] = software[i];
+                       }
+               software[j] = '\0';
                }
 
        model2 = remove_common_prefix(make, model);
@@ -188,16 +191,46 @@ static gchar *exif_build_formatted_DateTime(ExifData *exif)
 {
        gchar *text = exif_get_data_as_text(exif, "Exif.Photo.DateTimeOriginal");
        gchar *subsec = NULL;
+       gchar buf[128];
+       gchar *tmp;
+       gint buflen;
+       struct tm tm;
+       GError *error = NULL;
 
-       if (text) subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTimeOriginal");
-       if (!text)
+       if (text)
+               {
+               subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTimeOriginal");
+               }
+       else
                {
                text = exif_get_data_as_text(exif, "Exif.Image.DateTime");
                if (text) subsec = exif_get_data_as_text(exif, "Exif.Photo.SubSecTime");
                }
+
+       /* Convert the stuff into a tm struct */
+       memset(&tm, 0, sizeof(tm)); /* Uh, strptime could let garbage in tm! */
+       if (text && strptime(text, "%Y:%m:%d %H:%M:%S", &tm))
+               {
+               buflen = strftime(buf, sizeof(buf), "%x %X", &tm);
+               if (buflen > 0)
+                       {
+                       tmp = g_locale_to_utf8(buf, buflen, NULL, NULL, &error);
+                       if (error)
+                               {
+                               log_printf("Error converting locale strftime to UTF-8: %s\n", error->message);
+                               g_error_free(error);
+                               }
+                       else
+                               {
+                               g_free(text);
+                               text = g_strdup(tmp);
+                               }
+                       }
+               }
+
        if (subsec)
                {
-               gchar *tmp = text;
+               tmp = text;
                text = g_strconcat(tmp, ".", subsec, NULL);
                g_free(tmp);
                g_free(subsec);
@@ -212,17 +245,17 @@ static gchar *exif_build_formatted_ShutterSpeed(ExifData *exif)
        r = exif_get_rational(exif, "Exif.Photo.ExposureTime", NULL);
        if (r && r->num && r->den)
                {
-               double n = (double)r->den / (double)r->num;
+               gdouble n = (gdouble)r->den / (gdouble)r->num;
                return g_strdup_printf("%s%.0fs", n > 1.0 ? "1/" : "",
                                                  n > 1.0 ? n : 1.0 / n);
                }
        r = exif_get_rational(exif, "Exif.Photo.ShutterSpeedValue", NULL);
        if (r && r->num  && r->den)
                {
-               double n = pow(2.0, exif_rational_to_double(r, TRUE));
+               gdouble n = pow(2.0, exif_rational_to_double(r, TRUE));
 
                /* Correct exposure time to avoid values like 1/91s (seen on Minolta DImage 7) */
-               if (n > 1.0 && (int)n - ((int)(n/10))*10 == 1) n--;
+               if (n > 1.0 && (gint)n - ((gint)(n/10))*10 == 1) n--;
 
                return g_strdup_printf("%s%.0fs", n > 1.0 ? "1/" : "",
                                                  n > 1.0 ? floor(n) : 1.0 / n);
@@ -232,7 +265,7 @@ static gchar *exif_build_formatted_ShutterSpeed(ExifData *exif)
 
 static gchar *exif_build_formatted_Aperture(ExifData *exif)
 {
-       double n;
+       gdouble n;
 
        n = exif_get_rational_as_double(exif, "Exif.Photo.FNumber");
        if (n == 0.0) n = exif_get_rational_as_double(exif, "Exif.Photo.ApertureValue");
@@ -245,7 +278,7 @@ static gchar *exif_build_formatted_ExposureBias(ExifData *exif)
 {
        ExifRational *r;
        gint sign;
-       double n;
+       gdouble n;
 
        r = exif_get_rational(exif, "Exif.Photo.ExposureBiasValue", &sign);
        if (!r) return NULL;
@@ -256,7 +289,7 @@ static gchar *exif_build_formatted_ExposureBias(ExifData *exif)
 
 static gchar *exif_build_formatted_FocalLength(ExifData *exif)
 {
-       double n;
+       gdouble n;
 
        n = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength");
        if (n == 0.0) return NULL;
@@ -266,7 +299,7 @@ static gchar *exif_build_formatted_FocalLength(ExifData *exif)
 static gchar *exif_build_formatted_FocalLength35mmFilm(ExifData *exif)
 {
        gint n;
-       double f, c;
+       gdouble f, c;
 
        if (exif_get_integer(exif, "Exif.Photo.FocalLengthIn35mmFilm", &n) && n != 0)
                {
@@ -274,14 +307,12 @@ static gchar *exif_build_formatted_FocalLength35mmFilm(ExifData *exif)
                }
 
        f = exif_get_rational_as_double(exif, "Exif.Photo.FocalLength");
-       c = get_crop_factor(exif);
+       if (f == 0.0) return NULL;
 
-       if (f != 0.0 && c != 0.0)
-               {
-               return g_strdup_printf("%.0f mm", f * c);
-               }
+       c = get_crop_factor(exif);
+       if (c == 0.0) return NULL;
 
-       return NULL;
+       return g_strdup_printf("%.0f mm", f * c);
 }
 
 static gchar *exif_build_formatted_ISOSpeedRating(ExifData *exif)
@@ -298,13 +329,13 @@ static gchar *exif_build_formatted_SubjectDistance(ExifData *exif)
 {
        ExifRational *r;
        gint sign;
-       double n;
+       gdouble n;
 
        r = exif_get_rational(exif, "Exif.Photo.SubjectDistance", &sign);
        if (!r) return NULL;
 
-       if ((long)r->num == 0xffffffff) return g_strdup(_("infinity"));
-       if ((long)r->num == 0) return g_strdup(_("unknown"));
+       if ((glong)r->num == (glong)0xffffffff) return g_strdup(_("infinity"));
+       if ((glong)r->num == 0) return g_strdup(_("unknown"));
 
        n = exif_rational_to_double(r, sign);
        if (n == 0.0) return _("unknown");
@@ -372,8 +403,8 @@ static gchar *exif_build_formatted_Resolution(ExifData *exif)
        if (!rx || !ry) return NULL;
 
        units = exif_get_data_as_text(exif, "Exif.Image.ResolutionUnit");
-       text = g_strdup_printf("%0.f x %0.f (%s/%s)", rx->den ? (double)rx->num / rx->den : 1.0,
-                                                     ry->den ? (double)ry->num / ry->den : 1.0,
+       text = g_strdup_printf("%0.f x %0.f (%s/%s)", rx->den ? (gdouble)rx->num / rx->den : 1.0,
+                                                     ry->den ? (gdouble)ry->num / ry->den : 1.0,
                                                      _("dot"), (units) ? units : _("unknown"));
 
        g_free(units);
@@ -382,9 +413,12 @@ static gchar *exif_build_formatted_Resolution(ExifData *exif)
 
 static gchar *exif_build_formatted_ColorProfile(ExifData *exif)
 {
+#ifdef HAVE_LCMS2
+       cmsUInt8Number profileID[17];
+#endif
        const gchar *name = "";
        const gchar *source = "";
-       unsigned char *profile_data;
+       guchar *profile_data;
        guint profile_len;
 
        profile_data = exif_get_color_profile(exif, &profile_len);
@@ -421,7 +455,13 @@ static gchar *exif_build_formatted_ColorProfile(ExifData *exif)
                        profile = cmsOpenProfileFromMem(profile_data, profile_len);
                        if (profile)
                                {
-                               name = cmsTakeProductName(profile);
+#ifdef HAVE_LCMS2
+                               profileID[16] = '\0';
+                               cmsGetHeaderProfileID(profile, profileID);
+                               name = (gchar *) profileID;
+#else
+                               name = (gchar *) cmsTakeProductName(profile);
+#endif
                                cmsCloseProfile(profile);
                                }
                        g_free(profile_data);
@@ -432,9 +472,81 @@ static gchar *exif_build_formatted_ColorProfile(ExifData *exif)
        return g_strdup_printf("%s (%s)", name, source);
 }
 
+static gchar *exif_build_formatted_GPSPosition(ExifData *exif)
+{
+       GString *string;
+       gchar *text, *ref;
+       ExifRational *value;
+       ExifItem *item;
+       guint i;
+       gdouble p, p3;
+       gulong p1, p2;
+
+       string = g_string_new("");
+
+       item = exif_get_item(exif, "Exif.GPSInfo.GPSLatitude");
+       ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLatitudeRef");
+       if (item && ref)
+               {
+               p = 0;
+               for (i = 0; i < exif_item_get_elements(item); i++)
+                       {
+                       value = exif_item_get_rational(item, NULL, i);
+                       if (value && value->num && value->den)
+                               p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i);
+                       }
+               p1 = (gint)p;
+               p2 = (gint)((p - p1)*60);
+               p3 = ((p - p1)*60 - p2)*60;
+
+               g_string_append_printf(string, "%0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref);
+               } // if (item && ref)
+
+       item = exif_get_item(exif, "Exif.GPSInfo.GPSLongitude");
+       ref = exif_get_data_as_text(exif, "Exif.GPSInfo.GPSLongitudeRef");
+       if (item && ref)
+               {
+               p = 0;
+               for (i = 0; i < exif_item_get_elements(item); i++)
+                       {
+                       value = exif_item_get_rational(item, NULL, i);
+                       if (value && value->num && value->den)
+                       p += (gdouble)value->num / (gdouble)value->den / pow(60.0, (gdouble)i);
+                       }
+               p1 = (gint)p;
+               p2 = (gint)((p - p1)*60);
+               p3 = ((p - p1)*60 - p2)*60;
+
+               g_string_append_printf(string, ", %0lu° %0lu' %0.2f\" %.1s", p1, p2, p3, ref);
+               } // if (item && ref)
+
+       text = string->str;
+       g_string_free(string, FALSE);
+
+       return text;
+} // static gchar *exif_build_forma...
+
+static gchar *exif_build_formatted_GPSAltitude(ExifData *exif)
+{
+       ExifRational *r;
+       ExifItem *item;
+       gdouble alt;
+       gint ref;
+
+       item = exif_get_item(exif, "Exif.GPSInfo.GPSAltitudeRef");
+       r = exif_get_rational(exif, "Exif.GPSInfo.GPSAltitude", NULL);
+
+       if (!r || !item) return NULL;
+
+       alt = exif_rational_to_double(r, 0);
+       exif_item_get_integer(item, &ref);
+
+       return g_strdup_printf("%0.f m %s", alt, (ref==0)?_("Above Sea Level"):_("Below Sea Level"));
+}
+
 
 /* List of custom formatted pseudo-exif tags */
-#define EXIF_FORMATTED_TAG(name, label) { "formatted."#name, label, exif_build_formatted##_##name }
+#define EXIF_FORMATTED_TAG(name, label) { EXIF_FORMATTED()#name, label, exif_build_formatted##_##name }
 
 ExifFormattedText ExifFormattedList[] = {
        EXIF_FORMATTED_TAG(Camera,              N_("Camera")),
@@ -449,20 +561,25 @@ ExifFormattedText ExifFormattedList[] = {
        EXIF_FORMATTED_TAG(Flash,               N_("Flash")),
        EXIF_FORMATTED_TAG(Resolution,          N_("Resolution")),
        EXIF_FORMATTED_TAG(ColorProfile,        N_("Color profile")),
+       EXIF_FORMATTED_TAG(GPSPosition,         N_("GPS position")),
+       EXIF_FORMATTED_TAG(GPSAltitude,         N_("GPS altitude")),
+       {"file.size",                           N_("File size"),        NULL},
+       {"file.date",                           N_("File date"),        NULL},
+       {"file.mode",                           N_("File mode"),        NULL},
        { NULL, NULL, NULL }
 };
 
-gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gint *key_valid)
+gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gboolean *key_valid)
 {
-       if (strncmp(key, "formatted.", 10) == 0)
+       if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0)
                {
                gint i;
 
                if (key_valid) *key_valid = TRUE;
 
-               key = key + 10;
+               key += EXIF_FORMATTED_LEN;
                for (i = 0; ExifFormattedList[i].key; i++)
-                       if (strcmp(key, ExifFormattedList[i].key + 10) == 0)
+                       if (ExifFormattedList[i].build_func && strcmp(key, ExifFormattedList[i].key + EXIF_FORMATTED_LEN) == 0)
                                return ExifFormattedList[i].build_func(exif);
                }
 
@@ -470,18 +587,18 @@ gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gint *key_val
        return NULL;
 }
 
-const gchar *exif_get_description_by_key(const gchar *key)
+gchar *exif_get_description_by_key(const gchar *key)
 {
-       gint i;
-
        if (!key) return NULL;
 
-       if (strncmp(key, "formatted.", 10) == 0)
+       if (strncmp(key, EXIF_FORMATTED(), EXIF_FORMATTED_LEN) == 0 ||
+           strncmp(key, "file.", 5) == 0)
                {
-               key = key + 10;
+               gint i;
+
                for (i = 0; ExifFormattedList[i].key; i++)
-                       if (strcmp(key, ExifFormattedList[i].key + 10) == 0)
-                               return _(ExifFormattedList[i].description);
+                       if (strcmp(key, ExifFormattedList[i].key) == 0)
+                               return g_strdup(_(ExifFormattedList[i].description));
                }
 
        return exif_get_tag_description_by_key(key);
@@ -500,14 +617,14 @@ ExifRational *exif_get_rational(ExifData *exif, const gchar *key, gint *sign)
        ExifItem *item;
 
        item = exif_get_item(exif, key);
-       return exif_item_get_rational(item, sign);
+       return exif_item_get_rational(item, sign, 0);
 }
 
 gchar *exif_get_data_as_text(ExifData *exif, const gchar *key)
 {
        ExifItem *item;
        gchar *text;
-       gint key_valid;
+       gboolean key_valid;
 
        if (!key) return NULL;
 
@@ -520,97 +637,60 @@ gchar *exif_get_data_as_text(ExifData *exif, const gchar *key)
        return NULL;
 }
 
-ExifData *exif_read_fd(FileData *fd)
-{
-       gchar *sidecar_path = NULL;
 
-       if (!fd) return NULL;
-
-       if (filter_file_class(fd->extension, FORMAT_CLASS_RAWIMAGE))
-               {
-               GList *work;
-               
-               work = fd->parent ? fd->parent->sidecar_files : fd->sidecar_files;
-               while (work)
-                       {
-                       FileData *sfd = work->data;
-                       work = work->next;
-                       if (strcasecmp(sfd->extension, ".xmp") == 0)
-                               {
-                               sidecar_path = sfd->path;
-                               break;
-                               }
-                       }
-               }
+static FileCacheData *exif_cache;
 
+void exif_release_cb(FileData *fd)
+{
+       exif_free(fd->exif);
+       fd->exif = NULL;
+}
 
-       // FIXME: some caching would be nice
-       return exif_read(fd->path, sidecar_path);
+void exif_init_cache(void)
+{
+       g_assert(!exif_cache);
+       exif_cache = file_cache_new(exif_release_cb, 4);
 }
 
+ExifData *exif_read_fd(FileData *fd)
+{
+       gchar *sidecar_path;
 
+       if (!exif_cache) exif_init_cache();
 
-/* embedded icc in jpeg */
+       if (!fd) return NULL;
 
+       if (file_cache_get(exif_cache, fd)) return fd->exif;
+       g_assert(fd->exif == NULL);
 
-#define JPEG_MARKER            0xFF
-#define JPEG_MARKER_SOI                0xD8
-#define JPEG_MARKER_EOI                0xD9
-#define JPEG_MARKER_APP1       0xE1
-#define JPEG_MARKER_APP2       0xE2
-
-/* jpeg container format:
-     all data markers start with 0XFF
-     2 byte long file start and end markers: 0xFFD8(SOI) and 0XFFD9(EOI)
-     4 byte long data segment markers in format: 0xFFTTSSSSNNN...
-       FF:   1 byte standard marker identifier
-       TT:   1 byte data type
-       SSSS: 2 bytes in Motorola byte alignment for length of the data.
-            This value includes these 2 bytes in the count, making actual
-            length of NN... == SSSS - 2.
-       NNN.: the data in this segment
- */
+       /* CACHE_TYPE_XMP_METADATA file should exist only if the metadata are
+        * not writable directly, thus it should contain the most up-to-date version */
+       sidecar_path = NULL;
 
-gint exif_jpeg_segment_find(unsigned char *data, guint size,
-                           guchar app_marker, const gchar *magic, guint magic_len,
-                           guint *seg_offset, guint *seg_length)
-{
-       guchar marker = 0;
-       guint offset = 0;
-       guint length = 0;
+#ifdef HAVE_EXIV2
+       /* we are not able to handle XMP sidecars without exiv2 */
+       sidecar_path = cache_find_location(CACHE_TYPE_XMP_METADATA, fd->path);
 
-       while (marker != app_marker &&
-              marker != JPEG_MARKER_EOI)
-               {
-               offset += length;
-               length = 2;
+       if (!sidecar_path) sidecar_path = file_data_get_sidecar_path(fd, TRUE);
+#endif
 
-               if (offset + 2 >= size ||
-                   data[offset] != JPEG_MARKER) return FALSE;
+       fd->exif = exif_read(fd->path, sidecar_path, fd->modified_xmp);
 
-               marker = data[offset + 1];
-               if (marker != JPEG_MARKER_SOI &&
-                   marker != JPEG_MARKER_EOI)
-                       {
-                       if (offset + 4 >= size) return FALSE;
-                       length += ((guint)data[offset + 2] << 8) + data[offset + 3];
-                       }
-               }
+       g_free(sidecar_path);
+       file_cache_put(exif_cache, fd, 1);
+       return fd->exif;
+}
 
-       if (marker == app_marker &&
-           offset + length < size &&
-           length >= 4 + magic_len &&
-           memcmp(data + offset + 4, magic, magic_len) == 0)
-               {
-               *seg_offset = offset + 4;
-               *seg_length = length - 4;
-               return TRUE;
-               }
 
-       return FALSE;
+void exif_free_fd(FileData *fd, ExifData *exif)
+{
+       if (!fd) return;
+       g_assert(fd->exif == exif);
 }
 
-gint exif_jpeg_parse_color(ExifData *exif, unsigned char *data, guint size)
+/* embedded icc in jpeg */
+
+gboolean exif_jpeg_parse_color(ExifData *exif, guchar *data, guint size)
 {
        guint seg_offset = 0;
        guint seg_length = 0;
@@ -624,7 +704,7 @@ gint exif_jpeg_parse_color(ExifData *exif, unsigned char *data, guint size)
           TT = total number of ICC segments (TT in each ICC segment should match)
         */
 
-       while (exif_jpeg_segment_find(data + seg_offset + seg_length,
+       while (jpeg_segment_find(data + seg_offset + seg_length,
                                      size - seg_offset - seg_length,
                                      JPEG_MARKER_APP2,
                                      "ICC_PROFILE\x00", 12,
@@ -659,7 +739,7 @@ gint exif_jpeg_parse_color(ExifData *exif, unsigned char *data, guint size)
 
        if (chunk_count > 0)
                {
-               unsigned char *cp_data;
+               guchar *cp_data;
                guint cp_length = 0;
                guint i;
 
@@ -684,3 +764,70 @@ gint exif_jpeg_parse_color(ExifData *exif, unsigned char *data, guint size)
 
        return FALSE;
 }
+
+/*
+ *-------------------------------------------------------------------
+ * file info
+ * it is here because it shares tag neming infrastructure with exif
+ * we should probably not invest too much effort into this because
+ * new exiv2 will support the same functionality
+ * http://dev.exiv2.org/issues/show/505
+ *-------------------------------------------------------------------
+ */
+
+static gchar *mode_number(mode_t m)
+{
+       gint mb, mu, mg, mo;
+       gchar pbuf[12];
+
+       mb = mu = mg = mo = 0;
+
+       if (m & S_ISUID) mb |= 4;
+       if (m & S_ISGID) mb |= 2;
+       if (m & S_ISVTX) mb |= 1;
+
+       if (m & S_IRUSR) mu |= 4;
+       if (m & S_IWUSR) mu |= 2;
+       if (m & S_IXUSR) mu |= 1;
+
+       if (m & S_IRGRP) mg |= 4;
+       if (m & S_IWGRP) mg |= 2;
+       if (m & S_IXGRP) mg |= 1;
+
+       if (m & S_IROTH) mo |= 4;
+       if (m & S_IWOTH) mo |= 2;
+       if (m & S_IXOTH) mo |= 1;
+
+       pbuf[0] = (m & S_IRUSR) ? 'r' : '-';
+       pbuf[1] = (m & S_IWUSR) ? 'w' : '-';
+       pbuf[2] = (m & S_IXUSR) ? 'x' : '-';
+       pbuf[3] = (m & S_IRGRP) ? 'r' : '-';
+       pbuf[4] = (m & S_IWGRP) ? 'w' : '-';
+       pbuf[5] = (m & S_IXGRP) ? 'x' : '-';
+       pbuf[6] = (m & S_IROTH) ? 'r' : '-';
+       pbuf[7] = (m & S_IWOTH) ? 'w' : '-';
+       pbuf[8] = (m & S_IXOTH) ? 'x' : '-';
+       pbuf[9] = '\0';
+
+       return g_strdup_printf("%s (%d%d%d%d)", pbuf, mb, mu, mg, mo);
+}
+
+gchar *metadata_file_info(FileData *fd, const gchar *key, MetadataFormat format)
+{
+       if (strcmp(key, "file.size") == 0)
+               {
+               return g_strdup_printf("%ld", (long)fd->size);
+               }
+       if (strcmp(key, "file.date") == 0)
+               {
+               return g_strdup(text_from_time(fd->date));
+               }
+       if (strcmp(key, "file.mode") == 0)
+               {
+               return mode_number(fd->mode);
+               }
+       return g_strdup("");
+}
+
+
+/* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */