2001-07-18 08:24:07 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
2004-10-06 17:56:15 +08:00
|
|
|
#include <stdlib.h>
|
2001-07-18 08:24:07 +08:00
|
|
|
|
2001-08-17 22:27:31 +08:00
|
|
|
#include <glib-object.h>
|
2001-07-18 08:24:07 +08:00
|
|
|
|
|
|
|
#include "core/core-types.h"
|
|
|
|
|
2004-12-13 02:41:52 +08:00
|
|
|
#include "base/base.h"
|
|
|
|
|
2002-12-05 23:49:59 +08:00
|
|
|
#include "core/gimp.h"
|
|
|
|
|
2001-07-18 08:24:07 +08:00
|
|
|
#include "batch.h"
|
|
|
|
|
2006-04-01 03:28:53 +08:00
|
|
|
#include "pdb/gimpargument.h"
|
2006-03-31 17:15:08 +08:00
|
|
|
#include "pdb/gimpprocedure.h"
|
2001-07-18 08:24:07 +08:00
|
|
|
#include "pdb/procedural_db.h"
|
|
|
|
|
2004-10-06 17:56:15 +08:00
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
2005-08-06 08:51:22 +08:00
|
|
|
#define BATCH_DEFAULT_EVAL_PROC "plug-in-script-fu-eval"
|
2004-10-06 17:56:15 +08:00
|
|
|
|
2001-07-18 08:24:07 +08:00
|
|
|
|
2006-04-01 01:42:13 +08:00
|
|
|
static gboolean batch_exit_after_callback (Gimp *gimp,
|
|
|
|
gboolean kill_it);
|
|
|
|
static void batch_run_cmd (Gimp *gimp,
|
|
|
|
const gchar *proc_name,
|
|
|
|
GimpProcedure *procedure,
|
|
|
|
GimpRunMode run_mode,
|
|
|
|
const gchar *cmd);
|
2001-07-18 08:24:07 +08:00
|
|
|
|
|
|
|
|
|
|
|
void
|
2003-11-30 22:44:13 +08:00
|
|
|
batch_run (Gimp *gimp,
|
2004-10-06 17:56:15 +08:00
|
|
|
const gchar *batch_interpreter,
|
|
|
|
const gchar **batch_commands)
|
2001-07-18 08:24:07 +08:00
|
|
|
{
|
2004-12-13 02:41:52 +08:00
|
|
|
gulong exit_id;
|
2001-07-18 08:24:07 +08:00
|
|
|
|
2004-12-13 02:41:52 +08:00
|
|
|
if (! batch_commands || ! batch_commands[0])
|
2004-10-06 17:56:15 +08:00
|
|
|
return;
|
|
|
|
|
2003-11-30 22:44:13 +08:00
|
|
|
exit_id = g_signal_connect_after (gimp, "exit",
|
|
|
|
G_CALLBACK (batch_exit_after_callback),
|
|
|
|
NULL);
|
|
|
|
|
2004-10-06 17:56:15 +08:00
|
|
|
if (! batch_interpreter)
|
2001-07-18 08:24:07 +08:00
|
|
|
{
|
2004-10-06 17:56:15 +08:00
|
|
|
batch_interpreter = BATCH_DEFAULT_EVAL_PROC;
|
|
|
|
|
|
|
|
g_printerr ("No batch interpreter specified, using the default '%s'.\n",
|
|
|
|
batch_interpreter);
|
2001-07-18 08:24:07 +08:00
|
|
|
}
|
|
|
|
|
2004-10-11 08:23:27 +08:00
|
|
|
/* script-fu text console, hardcoded for backward compatibility */
|
|
|
|
|
2005-08-06 08:51:22 +08:00
|
|
|
if (strcmp (batch_interpreter, "plug-in-script-fu-eval") == 0 &&
|
2004-10-06 17:56:15 +08:00
|
|
|
strcmp (batch_commands[0], "-") == 0)
|
2001-07-18 08:24:07 +08:00
|
|
|
{
|
2006-04-01 01:42:13 +08:00
|
|
|
const gchar *proc_name = "plug-in-script-fu-text-console";
|
|
|
|
GimpProcedure *procedure = procedural_db_lookup (gimp, proc_name);
|
2004-12-13 02:41:52 +08:00
|
|
|
|
2006-04-01 01:42:13 +08:00
|
|
|
if (procedure)
|
|
|
|
batch_run_cmd (gimp, proc_name, procedure,
|
|
|
|
GIMP_RUN_NONINTERACTIVE, NULL);
|
2004-12-13 02:41:52 +08:00
|
|
|
else
|
2005-07-11 02:53:45 +08:00
|
|
|
g_message (_("The batch interpreter '%s' is not available. "
|
|
|
|
"Batch mode disabled."), proc_name);
|
2004-10-06 17:56:15 +08:00
|
|
|
}
|
2004-12-13 02:41:52 +08:00
|
|
|
else
|
2004-10-06 17:56:15 +08:00
|
|
|
{
|
2006-04-01 01:42:13 +08:00
|
|
|
GimpProcedure *eval_proc = procedural_db_lookup (gimp, batch_interpreter);
|
2004-12-13 02:41:52 +08:00
|
|
|
|
|
|
|
if (eval_proc)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
for (i = 0; batch_commands[i]; i++)
|
|
|
|
batch_run_cmd (gimp, batch_interpreter, eval_proc,
|
|
|
|
GIMP_RUN_NONINTERACTIVE, batch_commands[i]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-07-02 12:16:12 +08:00
|
|
|
g_message (_("The batch interpreter '%s' is not available. "
|
|
|
|
"Batch mode disabled."), batch_interpreter);
|
2004-12-13 02:41:52 +08:00
|
|
|
}
|
2001-07-18 08:24:07 +08:00
|
|
|
}
|
2003-11-30 22:44:13 +08:00
|
|
|
|
|
|
|
g_signal_handler_disconnect (gimp, exit_id);
|
2001-07-18 08:24:07 +08:00
|
|
|
}
|
|
|
|
|
2004-10-06 17:56:15 +08:00
|
|
|
|
2003-11-30 22:44:13 +08:00
|
|
|
static gboolean
|
2004-10-06 17:56:15 +08:00
|
|
|
batch_exit_after_callback (Gimp *gimp,
|
|
|
|
gboolean kill_it)
|
2003-11-30 22:44:13 +08:00
|
|
|
{
|
|
|
|
if (gimp->be_verbose)
|
2004-10-06 17:56:15 +08:00
|
|
|
g_print ("EXIT: %s\n", G_STRLOC);
|
2003-11-30 22:44:13 +08:00
|
|
|
|
2004-12-13 02:41:52 +08:00
|
|
|
/* make sure that the swap file is removed before we quit */
|
|
|
|
base_exit ();
|
2003-11-30 22:44:13 +08:00
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2001-07-18 08:24:07 +08:00
|
|
|
|
|
|
|
static void
|
2006-04-01 01:42:13 +08:00
|
|
|
batch_run_cmd (Gimp *gimp,
|
|
|
|
const gchar *proc_name,
|
|
|
|
GimpProcedure *procedure,
|
|
|
|
GimpRunMode run_mode,
|
|
|
|
const gchar *cmd)
|
2001-07-18 08:24:07 +08:00
|
|
|
{
|
2006-04-01 04:16:22 +08:00
|
|
|
GimpArgument *args;
|
|
|
|
GimpArgument *return_vals;
|
|
|
|
gint n_return_vals;
|
2001-07-18 08:24:07 +08:00
|
|
|
|
2006-04-01 01:42:13 +08:00
|
|
|
args = gimp_procedure_get_arguments (procedure);
|
2001-07-18 08:24:07 +08:00
|
|
|
|
2006-03-30 07:56:07 +08:00
|
|
|
g_value_set_int (&args[0].value, run_mode);
|
2004-12-13 02:41:52 +08:00
|
|
|
|
2006-04-01 01:42:13 +08:00
|
|
|
if (procedure->num_args > 1)
|
2006-03-30 07:56:07 +08:00
|
|
|
g_value_set_static_string (&args[1].value, cmd);
|
2001-07-18 08:24:07 +08:00
|
|
|
|
2006-03-30 07:56:07 +08:00
|
|
|
return_vals = procedural_db_execute (gimp,
|
|
|
|
gimp_get_user_context (gimp), NULL,
|
|
|
|
proc_name,
|
2006-04-01 01:42:13 +08:00
|
|
|
args, procedure->num_args,
|
2006-03-30 07:56:07 +08:00
|
|
|
&n_return_vals);
|
2001-07-18 08:24:07 +08:00
|
|
|
|
2006-03-30 07:56:07 +08:00
|
|
|
switch (g_value_get_enum (&return_vals[0].value))
|
2001-07-18 08:24:07 +08:00
|
|
|
{
|
|
|
|
case GIMP_PDB_EXECUTION_ERROR:
|
2004-10-06 17:56:15 +08:00
|
|
|
g_printerr ("batch command: experienced an execution error.\n");
|
2001-07-18 08:24:07 +08:00
|
|
|
break;
|
2004-10-06 17:56:15 +08:00
|
|
|
|
2001-07-18 08:24:07 +08:00
|
|
|
case GIMP_PDB_CALLING_ERROR:
|
2004-10-06 17:56:15 +08:00
|
|
|
g_printerr ("batch command: experienced a calling error.\n");
|
2001-07-18 08:24:07 +08:00
|
|
|
break;
|
2004-10-06 17:56:15 +08:00
|
|
|
|
2001-07-18 08:24:07 +08:00
|
|
|
case GIMP_PDB_SUCCESS:
|
2004-10-06 17:56:15 +08:00
|
|
|
g_printerr ("batch command: executed successfully.\n");
|
2001-07-18 08:24:07 +08:00
|
|
|
break;
|
|
|
|
}
|
2003-09-03 17:30:09 +08:00
|
|
|
|
2006-04-01 09:33:28 +08:00
|
|
|
gimp_arguments_destroy (return_vals, n_return_vals);
|
|
|
|
gimp_arguments_destroy (args, procedure->num_args);
|
2001-07-18 08:24:07 +08:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|