2016-04-19 07:18:05 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* file-darktable.c -- raw file format plug-in that uses darktable
|
|
|
|
* Copyright (C) 2012 Simon Budig <simon@gimp.org>
|
|
|
|
* Copyright (C) 2016 Tobias Ellinghaus <me@houz.org>
|
|
|
|
*
|
|
|
|
* 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 3 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <glib/gstdio.h>
|
|
|
|
|
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
|
|
|
|
#include "libgimp/stdplugins-intl.h"
|
|
|
|
|
2017-07-31 00:35:20 +08:00
|
|
|
#include "file-raw-formats.h"
|
2017-07-29 07:15:28 +08:00
|
|
|
#include "file-raw-utils.h"
|
2016-04-19 07:18:05 +08:00
|
|
|
|
2017-07-05 06:50:54 +08:00
|
|
|
|
2018-01-05 21:31:40 +08:00
|
|
|
#define LOAD_THUMB_PROC "file-darktable-load-thumb"
|
2017-07-29 07:15:28 +08:00
|
|
|
#define REGISTRY_KEY_BASE "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\darktable"
|
2016-05-03 21:10:32 +08:00
|
|
|
|
2018-01-05 21:31:40 +08:00
|
|
|
|
2017-06-28 04:45:31 +08:00
|
|
|
static void init (void);
|
2016-04-26 07:03:35 +08:00
|
|
|
static void query (void);
|
|
|
|
static void run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals);
|
|
|
|
static gint32 load_image (const gchar *filename,
|
|
|
|
GimpRunMode run_mode,
|
|
|
|
GError **error);
|
2016-04-19 07:18:05 +08:00
|
|
|
|
2016-04-26 07:03:35 +08:00
|
|
|
static gint32 load_thumbnail_image (const gchar *filename,
|
|
|
|
gint thumb_size,
|
|
|
|
gint *width,
|
|
|
|
gint *height,
|
|
|
|
GError **error);
|
2016-04-19 07:18:05 +08:00
|
|
|
|
2018-01-05 21:31:40 +08:00
|
|
|
|
2016-04-19 07:18:05 +08:00
|
|
|
const GimpPlugInInfo PLUG_IN_INFO =
|
|
|
|
{
|
2017-06-28 04:45:31 +08:00
|
|
|
init, /* init_proc */
|
2016-04-19 07:18:05 +08:00
|
|
|
NULL, /* quit_proc */
|
|
|
|
query, /* query proc */
|
|
|
|
run, /* run_proc */
|
|
|
|
};
|
|
|
|
|
|
|
|
MAIN ()
|
|
|
|
|
|
|
|
static void
|
2017-06-28 04:45:31 +08:00
|
|
|
init (void)
|
2016-04-19 07:18:05 +08:00
|
|
|
{
|
|
|
|
static const GimpParamDef load_args[] =
|
|
|
|
{
|
|
|
|
{ GIMP_PDB_INT32, "run-mode", "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }" },
|
|
|
|
{ GIMP_PDB_STRING, "filename", "The name of the file to load." },
|
|
|
|
{ GIMP_PDB_STRING, "raw-filename", "The name entered" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const GimpParamDef load_return_vals[] =
|
|
|
|
{
|
|
|
|
{ GIMP_PDB_IMAGE, "image", "Output image" }
|
|
|
|
};
|
|
|
|
|
2016-04-26 07:03:35 +08:00
|
|
|
static const GimpParamDef thumb_args[] =
|
|
|
|
{
|
|
|
|
{ GIMP_PDB_STRING, "filename", "The name of the file to load" },
|
|
|
|
{ GIMP_PDB_INT32, "thumb-size", "Preferred thumbnail size" }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const GimpParamDef thumb_return_vals[] =
|
|
|
|
{
|
|
|
|
{ GIMP_PDB_IMAGE, "image", "Thumbnail image" },
|
|
|
|
{ GIMP_PDB_INT32, "image-width", "Width of full-sized image" },
|
|
|
|
{ GIMP_PDB_INT32, "image-height", "Height of full-sized image" }
|
|
|
|
};
|
|
|
|
|
2016-04-25 05:30:25 +08:00
|
|
|
/* check if darktable is installed
|
|
|
|
*/
|
2017-05-15 18:26:51 +08:00
|
|
|
gboolean search_path = FALSE;
|
2017-07-29 07:15:28 +08:00
|
|
|
gchar *exec_path = file_raw_get_executable_path ("darktable", NULL,
|
|
|
|
"DARKTABLE_EXECUTABLE",
|
|
|
|
"org.darktable",
|
|
|
|
REGISTRY_KEY_BASE,
|
|
|
|
&search_path);
|
2017-05-15 18:26:51 +08:00
|
|
|
gchar *argv[] = { exec_path, "--version", NULL };
|
2016-04-25 05:30:25 +08:00
|
|
|
gchar *darktable_stdout = NULL;
|
2017-07-05 06:50:54 +08:00
|
|
|
gchar *darktable_stderr = NULL;
|
2016-04-25 05:30:25 +08:00
|
|
|
gboolean have_darktable = FALSE;
|
2017-07-05 06:50:54 +08:00
|
|
|
GError *error = NULL;
|
2016-04-25 05:30:25 +08:00
|
|
|
gint i;
|
2016-04-21 17:40:45 +08:00
|
|
|
|
2017-11-20 19:48:47 +08:00
|
|
|
/* allow the user to have some insight into why darktable may fail. */
|
|
|
|
gboolean debug_prints = g_getenv ("DARKTABLE_DEBUG") != NULL;
|
|
|
|
|
|
|
|
if (debug_prints)
|
2018-01-05 21:31:40 +08:00
|
|
|
g_printf ("[%s] trying to call '%s'\n", __FILE__, exec_path);
|
2017-07-05 06:50:54 +08:00
|
|
|
|
2016-04-21 17:40:45 +08:00
|
|
|
if (g_spawn_sync (NULL,
|
|
|
|
argv,
|
|
|
|
NULL,
|
2017-05-15 18:26:51 +08:00
|
|
|
(search_path ? G_SPAWN_SEARCH_PATH : 0),
|
2016-04-21 17:40:45 +08:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
&darktable_stdout,
|
2017-07-05 06:50:54 +08:00
|
|
|
&darktable_stderr,
|
2016-04-21 17:40:45 +08:00
|
|
|
NULL,
|
2017-07-05 06:50:54 +08:00
|
|
|
&error))
|
2016-04-21 17:40:45 +08:00
|
|
|
{
|
2017-11-26 10:45:45 +08:00
|
|
|
GRegex *regex;
|
|
|
|
GMatchInfo *matches;
|
|
|
|
gint major;
|
|
|
|
gint minor;
|
|
|
|
|
|
|
|
/* A default darktable would apparently output something like
|
|
|
|
* "this is darktable 2.2.5", but this version string is
|
|
|
|
* customizable. In the official Fedora package for instance, I
|
|
|
|
* encountered a "this is darktable darktable-2.2.5-4.fc27".
|
|
|
|
* Therefore make the version recognition a bit more flexible.
|
|
|
|
*/
|
|
|
|
regex = g_regex_new ("this is darktable [^0-9]*([0-9]+)\\.([0-9]+)\\.([0-9]+)",
|
|
|
|
0, 0, NULL);
|
|
|
|
if (g_regex_match (regex, darktable_stdout, 0, &matches))
|
2016-04-25 05:30:25 +08:00
|
|
|
{
|
2017-11-26 10:45:45 +08:00
|
|
|
gchar *match;
|
|
|
|
|
|
|
|
match = g_match_info_fetch (matches, 1);
|
|
|
|
major = g_ascii_strtoll (match, NULL, 10);
|
|
|
|
g_free (match);
|
|
|
|
|
|
|
|
match = g_match_info_fetch (matches, 2);
|
|
|
|
minor = g_ascii_strtoll (match, NULL, 10);
|
|
|
|
g_free (match);
|
|
|
|
|
2016-04-25 05:30:25 +08:00
|
|
|
if (((major == 1 && minor >= 7) || major >= 2))
|
|
|
|
{
|
|
|
|
if (g_strstr_len (darktable_stdout, -1,
|
|
|
|
"Lua support enabled"))
|
|
|
|
{
|
|
|
|
have_darktable = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-05 21:31:40 +08:00
|
|
|
|
2017-11-26 10:45:45 +08:00
|
|
|
g_match_info_free (matches);
|
|
|
|
g_regex_unref (regex);
|
2016-04-21 17:40:45 +08:00
|
|
|
}
|
2017-11-20 19:48:47 +08:00
|
|
|
else if (debug_prints)
|
2018-01-05 21:31:40 +08:00
|
|
|
{
|
|
|
|
g_printf ("[%s] g_spawn_sync failed\n", __FILE__);
|
|
|
|
}
|
2016-04-21 17:40:45 +08:00
|
|
|
|
2017-11-20 19:48:47 +08:00
|
|
|
if (debug_prints)
|
2017-07-05 06:50:54 +08:00
|
|
|
{
|
2017-11-20 19:48:47 +08:00
|
|
|
if (error)
|
2018-01-05 21:31:40 +08:00
|
|
|
g_printf ("[%s] error: %s\n", __FILE__, error->message);
|
|
|
|
|
2017-11-20 19:48:47 +08:00
|
|
|
if (darktable_stdout && *darktable_stdout)
|
2018-01-05 21:31:40 +08:00
|
|
|
g_printf ("[%s] stdout:\n%s\n", __FILE__, darktable_stdout);
|
|
|
|
|
2017-11-20 19:48:47 +08:00
|
|
|
if (darktable_stderr && *darktable_stderr)
|
2018-01-05 21:31:40 +08:00
|
|
|
g_printf ("[%s] stderr:\n%s\n", __FILE__, darktable_stderr);
|
|
|
|
|
|
|
|
g_printf ("[%s] have_darktable: %d\n", __FILE__, have_darktable);
|
2017-07-05 06:50:54 +08:00
|
|
|
}
|
|
|
|
|
2018-01-05 21:31:40 +08:00
|
|
|
g_clear_error (&error);
|
|
|
|
|
2017-07-05 06:50:54 +08:00
|
|
|
g_free (darktable_stdout);
|
|
|
|
g_free (darktable_stderr);
|
2017-05-15 18:26:51 +08:00
|
|
|
g_free (exec_path);
|
|
|
|
|
2016-04-19 07:18:05 +08:00
|
|
|
if (! have_darktable)
|
|
|
|
return;
|
|
|
|
|
2016-05-03 21:10:32 +08:00
|
|
|
gimp_install_procedure (LOAD_THUMB_PROC,
|
|
|
|
"Load thumbnail from a raw image via darktable",
|
|
|
|
"This plug-in loads a thumbnail from a raw image by calling darktable-cli.",
|
|
|
|
"Tobias Ellinghaus",
|
|
|
|
"Tobias Ellinghaus",
|
|
|
|
"2016",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
GIMP_PLUGIN,
|
|
|
|
G_N_ELEMENTS (thumb_args),
|
|
|
|
G_N_ELEMENTS (thumb_return_vals),
|
|
|
|
thumb_args, thumb_return_vals);
|
|
|
|
|
2016-04-19 07:18:05 +08:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (file_formats); i++)
|
|
|
|
{
|
|
|
|
const FileFormat *format = &file_formats[i];
|
2017-07-25 02:41:41 +08:00
|
|
|
gchar *load_proc;
|
|
|
|
gchar *load_blurb;
|
|
|
|
gchar *load_help;
|
2016-04-19 07:18:05 +08:00
|
|
|
|
2017-07-25 02:41:41 +08:00
|
|
|
load_proc = g_strdup_printf (format->load_proc_format, "darktable");
|
|
|
|
load_blurb = g_strdup_printf (format->load_blurb_format, "darktable");
|
|
|
|
load_help = g_strdup_printf (format->load_help_format, "darktable");
|
|
|
|
|
|
|
|
gimp_install_procedure (load_proc,
|
|
|
|
load_blurb,
|
|
|
|
load_help,
|
2016-04-19 07:18:05 +08:00
|
|
|
"Tobias Ellinghaus",
|
|
|
|
"Tobias Ellinghaus",
|
|
|
|
"2016",
|
|
|
|
format->file_type,
|
|
|
|
NULL,
|
|
|
|
GIMP_PLUGIN,
|
|
|
|
G_N_ELEMENTS (load_args),
|
|
|
|
G_N_ELEMENTS (load_return_vals),
|
|
|
|
load_args, load_return_vals);
|
|
|
|
|
2017-07-25 02:41:41 +08:00
|
|
|
gimp_register_file_handler_mime (load_proc,
|
2016-04-19 07:18:05 +08:00
|
|
|
format->mime_type);
|
2017-07-25 02:41:41 +08:00
|
|
|
gimp_register_file_handler_raw (load_proc);
|
|
|
|
gimp_register_magic_load_handler (load_proc,
|
2016-05-03 21:10:32 +08:00
|
|
|
format->extensions,
|
|
|
|
"",
|
|
|
|
format->magic);
|
2016-04-26 07:03:35 +08:00
|
|
|
|
2017-07-25 02:41:41 +08:00
|
|
|
gimp_register_thumbnail_loader (load_proc, LOAD_THUMB_PROC);
|
|
|
|
|
|
|
|
g_free (load_proc);
|
|
|
|
g_free (load_blurb);
|
|
|
|
g_free (load_help);
|
2016-04-19 07:18:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-28 04:45:31 +08:00
|
|
|
static void
|
|
|
|
query (void)
|
|
|
|
{
|
|
|
|
/* query() is run only the first time for efficiency. Yet this plugin
|
|
|
|
* is dependent on the presence of darktable which may be installed
|
|
|
|
* or uninstalled between GIMP startups. Therefore we should move the
|
|
|
|
* usual gimp_install_procedure() to init() so that the check is done
|
|
|
|
* at every startup instead.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2016-04-19 07:18:05 +08:00
|
|
|
static void
|
|
|
|
run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals)
|
|
|
|
{
|
2016-04-26 07:03:35 +08:00
|
|
|
static GimpParam values[6];
|
2016-04-19 07:18:05 +08:00
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
|
|
|
GimpRunMode run_mode;
|
|
|
|
gint image_ID;
|
|
|
|
GError *error = NULL;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
INIT_I18N ();
|
|
|
|
|
|
|
|
run_mode = param[0].data.d_int32;
|
|
|
|
|
|
|
|
*nreturn_vals = 1;
|
|
|
|
*return_vals = values;
|
|
|
|
|
|
|
|
values[0].type = GIMP_PDB_STATUS;
|
|
|
|
values[0].data.d_status = GIMP_PDB_EXECUTION_ERROR;
|
|
|
|
|
|
|
|
/* check if the format passed is actually supported & load */
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (file_formats); i++)
|
|
|
|
{
|
2017-07-25 02:41:41 +08:00
|
|
|
const FileFormat *format = &file_formats[i];
|
|
|
|
gchar *load_proc = NULL;
|
|
|
|
|
|
|
|
if (format->load_proc_format)
|
|
|
|
load_proc = g_strdup_printf (format->load_proc_format, "darktable");
|
2016-04-19 07:18:05 +08:00
|
|
|
|
2017-07-25 02:41:41 +08:00
|
|
|
if (load_proc && ! strcmp (name, load_proc))
|
2016-04-19 07:18:05 +08:00
|
|
|
{
|
|
|
|
image_ID = load_image (param[1].data.d_string, run_mode, &error);
|
|
|
|
|
|
|
|
if (image_ID != -1)
|
|
|
|
{
|
|
|
|
*nreturn_vals = 2;
|
|
|
|
values[1].type = GIMP_PDB_IMAGE;
|
|
|
|
values[1].data.d_image = image_ID;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
|
|
|
}
|
|
|
|
|
2016-04-26 07:03:35 +08:00
|
|
|
break;
|
|
|
|
}
|
2016-05-03 21:10:32 +08:00
|
|
|
else if (! strcmp (name, LOAD_THUMB_PROC))
|
2016-04-26 07:03:35 +08:00
|
|
|
{
|
|
|
|
gint width = 0;
|
|
|
|
gint height = 0;
|
|
|
|
|
|
|
|
image_ID = load_thumbnail_image (param[0].data.d_string,
|
|
|
|
param[1].data.d_int32,
|
|
|
|
&width,
|
|
|
|
&height,
|
|
|
|
&error);
|
|
|
|
|
|
|
|
if (image_ID != -1)
|
|
|
|
{
|
|
|
|
*nreturn_vals = 6;
|
|
|
|
values[1].type = GIMP_PDB_IMAGE;
|
|
|
|
values[1].data.d_image = image_ID;
|
|
|
|
values[2].type = GIMP_PDB_INT32;
|
|
|
|
values[2].data.d_int32 = width;
|
|
|
|
values[3].type = GIMP_PDB_INT32;
|
|
|
|
values[3].data.d_int32 = height;
|
|
|
|
values[4].type = GIMP_PDB_INT32;
|
|
|
|
values[4].data.d_int32 = GIMP_RGB_IMAGE;
|
|
|
|
values[5].type = GIMP_PDB_INT32;
|
|
|
|
values[5].data.d_int32 = 1; /* num_layers */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
|
|
|
}
|
|
|
|
|
2016-04-19 07:18:05 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == G_N_ELEMENTS (file_formats))
|
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
|
|
|
|
|
|
|
if (status != GIMP_PDB_SUCCESS && error)
|
|
|
|
{
|
|
|
|
*nreturn_vals = 2;
|
|
|
|
values[1].type = GIMP_PDB_STRING;
|
|
|
|
values[1].data.d_string = error->message;
|
|
|
|
}
|
|
|
|
|
|
|
|
values[0].data.d_status = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint32
|
|
|
|
load_image (const gchar *filename,
|
|
|
|
GimpRunMode run_mode,
|
|
|
|
GError **error)
|
|
|
|
{
|
2017-09-04 18:56:34 +08:00
|
|
|
gint32 image_ID = -1;
|
|
|
|
GFile *lua_file = gimp_data_directory_file ("file-raw",
|
|
|
|
"file-darktable-export-on-exit.lua",
|
|
|
|
NULL);
|
|
|
|
gchar *lua_script = g_file_get_path (lua_file);
|
|
|
|
gchar *lua_script_escaped = g_strescape (lua_script, "");
|
|
|
|
gchar *lua_quoted = g_shell_quote (lua_script_escaped);
|
|
|
|
gchar *lua_cmd = g_strdup_printf ("dofile(%s)", lua_quoted);
|
|
|
|
gchar *filename_out = gimp_temp_name ("exr");
|
|
|
|
gchar *export_filename = g_strdup_printf ("lua/export_on_exit/export_filename=%s",
|
|
|
|
filename_out);
|
|
|
|
|
|
|
|
gchar *darktable_stdout = NULL;
|
2018-01-05 21:21:59 +08:00
|
|
|
gchar *darktable_stderr = NULL;
|
2016-05-03 21:10:32 +08:00
|
|
|
|
2017-11-20 19:48:47 +08:00
|
|
|
/* allow the user to have some insight into why darktable may fail. */
|
|
|
|
gboolean debug_prints = g_getenv ("DARKTABLE_DEBUG") != NULL;
|
|
|
|
|
2016-04-19 07:18:05 +08:00
|
|
|
/* linear sRGB for now as GIMP uses that internally in many places anyway */
|
2017-05-15 18:26:51 +08:00
|
|
|
gboolean search_path = FALSE;
|
2017-07-29 07:15:28 +08:00
|
|
|
gchar *exec_path = file_raw_get_executable_path ("darktable", NULL,
|
|
|
|
"DARKTABLE_EXECUTABLE",
|
|
|
|
"org.darktable",
|
|
|
|
REGISTRY_KEY_BASE,
|
|
|
|
&search_path);
|
2017-07-29 06:15:45 +08:00
|
|
|
gchar *argv[] =
|
2016-04-19 07:18:05 +08:00
|
|
|
{
|
2017-05-15 18:26:51 +08:00
|
|
|
exec_path,
|
2016-04-19 07:18:05 +08:00
|
|
|
"--library", ":memory:",
|
|
|
|
"--luacmd", lua_cmd,
|
2016-04-19 09:29:29 +08:00
|
|
|
"--conf", "plugins/lighttable/export/icctype=3",
|
2016-04-19 09:19:39 +08:00
|
|
|
"--conf", export_filename,
|
2016-04-19 09:28:24 +08:00
|
|
|
(gchar *) filename,
|
2016-04-19 07:18:05 +08:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
g_object_unref (lua_file);
|
|
|
|
g_free (lua_script);
|
2017-09-04 18:56:34 +08:00
|
|
|
g_free (lua_script_escaped);
|
2016-04-19 09:28:24 +08:00
|
|
|
g_free (lua_quoted);
|
2016-04-19 07:18:05 +08:00
|
|
|
|
|
|
|
gimp_progress_init_printf (_("Opening '%s'"),
|
|
|
|
gimp_filename_to_utf8 (filename));
|
|
|
|
|
2018-01-05 21:21:59 +08:00
|
|
|
if (debug_prints)
|
|
|
|
{
|
|
|
|
printf ("[%s] trying to call\n", __FILE__);
|
|
|
|
for (gchar **iter = argv; *iter; iter++)
|
|
|
|
printf (" %s\n", *iter);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2016-04-19 09:19:39 +08:00
|
|
|
if (g_spawn_sync (NULL,
|
2016-04-19 07:18:05 +08:00
|
|
|
argv,
|
|
|
|
NULL,
|
2017-06-28 02:05:52 +08:00
|
|
|
/*G_SPAWN_STDOUT_TO_DEV_NULL |*/
|
2018-01-05 21:21:59 +08:00
|
|
|
/*G_SPAWN_STDERR_TO_DEV_NULL |*/
|
2017-05-15 18:26:51 +08:00
|
|
|
(search_path ? G_SPAWN_SEARCH_PATH : 0),
|
2016-04-19 07:18:05 +08:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2016-05-03 21:10:32 +08:00
|
|
|
&darktable_stdout,
|
2018-01-05 21:21:59 +08:00
|
|
|
&darktable_stderr,
|
2016-04-19 07:18:05 +08:00
|
|
|
NULL,
|
|
|
|
error))
|
|
|
|
{
|
|
|
|
image_ID = gimp_file_load (run_mode, filename_out, filename_out);
|
|
|
|
if (image_ID != -1)
|
|
|
|
gimp_image_set_filename (image_ID, filename);
|
|
|
|
}
|
|
|
|
|
2018-01-05 21:21:59 +08:00
|
|
|
if (debug_prints)
|
|
|
|
{
|
|
|
|
if (darktable_stdout && *darktable_stdout)
|
2018-01-05 21:31:40 +08:00
|
|
|
g_printf ("%s\n", darktable_stdout);
|
|
|
|
|
2018-01-05 21:21:59 +08:00
|
|
|
if (darktable_stderr && *darktable_stderr)
|
2018-01-05 21:31:40 +08:00
|
|
|
g_printf ("%s\n", darktable_stderr);
|
2018-01-05 21:21:59 +08:00
|
|
|
}
|
2018-01-05 21:31:40 +08:00
|
|
|
|
2017-12-20 22:12:10 +08:00
|
|
|
g_free (darktable_stdout);
|
2018-01-05 21:21:59 +08:00
|
|
|
g_free (darktable_stderr);
|
2016-05-03 21:10:32 +08:00
|
|
|
|
2016-04-19 07:18:05 +08:00
|
|
|
g_unlink (filename_out);
|
|
|
|
g_free (lua_cmd);
|
|
|
|
g_free (filename_out);
|
2016-04-19 09:19:39 +08:00
|
|
|
g_free (export_filename);
|
2017-05-15 18:26:51 +08:00
|
|
|
g_free (exec_path);
|
2016-04-19 07:18:05 +08:00
|
|
|
|
|
|
|
gimp_progress_update (1.0);
|
|
|
|
|
|
|
|
return image_ID;
|
|
|
|
}
|
2016-04-26 07:03:35 +08:00
|
|
|
|
|
|
|
static gint32
|
|
|
|
load_thumbnail_image (const gchar *filename,
|
|
|
|
gint thumb_size,
|
|
|
|
gint *width,
|
|
|
|
gint *height,
|
|
|
|
GError **error)
|
|
|
|
{
|
2017-09-04 18:56:34 +08:00
|
|
|
gint32 image_ID = -1;
|
|
|
|
gchar *filename_out = gimp_temp_name ("jpg");
|
|
|
|
gchar *size = g_strdup_printf ("%d", thumb_size);
|
|
|
|
GFile *lua_file = gimp_data_directory_file ("file-raw",
|
|
|
|
"file-darktable-get-size.lua",
|
|
|
|
NULL);
|
|
|
|
gchar *lua_script = g_file_get_path (lua_file);
|
2017-09-04 20:08:31 +08:00
|
|
|
gchar *lua_script_escaped = g_strescape (lua_script, "");
|
|
|
|
gchar *lua_quoted = g_shell_quote (lua_script_escaped);
|
2017-09-04 18:56:34 +08:00
|
|
|
gchar *lua_cmd = g_strdup_printf ("dofile(%s)", lua_quoted);
|
|
|
|
gchar *darktable_stdout = NULL;
|
2016-04-26 07:03:35 +08:00
|
|
|
|
2017-05-15 18:26:51 +08:00
|
|
|
gboolean search_path = FALSE;
|
2017-07-29 07:15:28 +08:00
|
|
|
gchar *exec_path = file_raw_get_executable_path ("darktable", "-cli",
|
|
|
|
"DARKTABLE_EXECUTABLE",
|
|
|
|
"org.darktable",
|
|
|
|
REGISTRY_KEY_BASE,
|
|
|
|
&search_path);
|
2017-07-29 06:15:45 +08:00
|
|
|
gchar *argv[] =
|
2016-04-26 07:03:35 +08:00
|
|
|
{
|
2017-05-15 18:26:51 +08:00
|
|
|
exec_path,
|
2016-04-26 07:03:35 +08:00
|
|
|
(gchar *) filename, filename_out,
|
|
|
|
"--width", size,
|
|
|
|
"--height", size,
|
|
|
|
"--hq", "false",
|
|
|
|
"--core",
|
|
|
|
"--conf", "plugins/lighttable/export/icctype=3",
|
2016-04-26 19:38:33 +08:00
|
|
|
"--luacmd", lua_cmd,
|
2016-04-26 07:03:35 +08:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2016-04-26 19:38:33 +08:00
|
|
|
g_object_unref (lua_file);
|
|
|
|
g_free (lua_script);
|
2017-09-04 18:56:34 +08:00
|
|
|
g_free (lua_script_escaped);
|
2016-04-26 19:38:33 +08:00
|
|
|
g_free (lua_quoted);
|
|
|
|
|
2016-04-26 07:03:35 +08:00
|
|
|
gimp_progress_init_printf (_("Opening thumbnail for '%s'"),
|
|
|
|
gimp_filename_to_utf8 (filename));
|
|
|
|
|
2016-04-26 19:38:33 +08:00
|
|
|
*width = *height = thumb_size;
|
|
|
|
|
2016-04-26 07:03:35 +08:00
|
|
|
if (g_spawn_sync (NULL,
|
|
|
|
argv,
|
|
|
|
NULL,
|
|
|
|
G_SPAWN_STDERR_TO_DEV_NULL |
|
2017-05-15 18:26:51 +08:00
|
|
|
(search_path ? G_SPAWN_SEARCH_PATH : 0),
|
2016-04-26 07:03:35 +08:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2016-04-26 19:38:33 +08:00
|
|
|
&darktable_stdout,
|
2016-04-26 07:03:35 +08:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
error))
|
|
|
|
{
|
|
|
|
gimp_progress_update (0.5);
|
|
|
|
|
|
|
|
image_ID = gimp_file_load (GIMP_RUN_NONINTERACTIVE,
|
|
|
|
filename_out,
|
|
|
|
filename_out);
|
|
|
|
if (image_ID != -1)
|
|
|
|
{
|
2016-04-26 19:38:33 +08:00
|
|
|
/* the size reported by raw files isn't precise,
|
|
|
|
* but it should be close enough to get an idea.
|
|
|
|
*/
|
|
|
|
gchar *start_of_size = g_strstr_len (darktable_stdout,
|
|
|
|
-1,
|
|
|
|
"[dt4gimp]");
|
|
|
|
if (start_of_size)
|
|
|
|
sscanf (start_of_size, "[dt4gimp] %d %d", width, height);
|
|
|
|
|
2016-04-26 07:03:35 +08:00
|
|
|
/* is this needed for thumbnails? */
|
|
|
|
gimp_image_set_filename (image_ID, filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gimp_progress_update (1.0);
|
|
|
|
|
|
|
|
g_unlink (filename_out);
|
|
|
|
g_free (filename_out);
|
|
|
|
g_free (size);
|
2016-04-26 19:38:33 +08:00
|
|
|
g_free (lua_cmd);
|
|
|
|
g_free (darktable_stdout);
|
2017-05-15 18:26:51 +08:00
|
|
|
g_free (exec_path);
|
2016-04-26 07:03:35 +08:00
|
|
|
|
|
|
|
return image_ID;
|
|
|
|
}
|