2008-08-21 14:48:29 +00:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2008-08-21 14:48:29 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 22:28:01 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2008-08-21 14:48:29 +00:00
|
|
|
* (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
|
2018-07-11 23:27:07 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2008-08-21 14:48:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "libgimp/gimp.h"
|
|
|
|
|
|
|
|
#include "scheme-wrapper.h"
|
|
|
|
#include "script-fu-eval.h"
|
|
|
|
|
|
|
|
#include "script-fu-intl.h"
|
|
|
|
|
|
|
|
|
2019-08-12 20:11:45 +02:00
|
|
|
GimpValueArray *
|
|
|
|
script_fu_eval_run (GimpProcedure *procedure,
|
|
|
|
const GimpValueArray *args)
|
2008-08-21 14:48:29 +00:00
|
|
|
{
|
2009-03-22 20:49:55 +00:00
|
|
|
GString *output = g_string_new (NULL);
|
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
|
|
|
GimpRunMode run_mode;
|
2019-08-12 20:11:45 +02:00
|
|
|
const gchar *code;
|
2008-08-21 14:48:29 +00:00
|
|
|
|
2019-08-20 01:03:38 +02:00
|
|
|
run_mode = GIMP_VALUES_GET_ENUM (args, 0);
|
|
|
|
code = GIMP_VALUES_GET_STRING (args, 1);
|
2008-08-21 14:48:29 +00:00
|
|
|
|
2008-09-11 18:00:18 +00:00
|
|
|
ts_set_run_mode (run_mode);
|
2009-03-22 20:49:55 +00:00
|
|
|
ts_register_output_func (ts_gstring_output_func, output);
|
2008-08-21 14:48:29 +00:00
|
|
|
|
|
|
|
switch (run_mode)
|
|
|
|
{
|
|
|
|
case GIMP_RUN_NONINTERACTIVE:
|
2019-08-12 20:11:45 +02:00
|
|
|
if (ts_interpret_string (code) != 0)
|
2008-08-21 14:48:29 +00:00
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_RUN_INTERACTIVE:
|
|
|
|
case GIMP_RUN_WITH_LAST_VALS:
|
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
2009-03-22 20:49:55 +00:00
|
|
|
g_string_assign (output, _("Script-Fu evaluation mode only allows "
|
|
|
|
"non-interactive invocation"));
|
2008-08-21 14:48:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-03-22 20:49:55 +00:00
|
|
|
if (status != GIMP_PDB_SUCCESS && output->len > 0)
|
|
|
|
{
|
2021-01-28 08:31:11 -05:00
|
|
|
GError *error = g_error_new_literal (g_quark_from_string("scriptfu"), 0,
|
2019-08-12 20:11:45 +02:00
|
|
|
g_string_free (output, FALSE));
|
|
|
|
|
|
|
|
return gimp_procedure_new_return_values (procedure, status, error);
|
2009-03-22 20:49:55 +00:00
|
|
|
}
|
2019-08-12 20:11:45 +02:00
|
|
|
|
|
|
|
g_string_free (output, TRUE);
|
|
|
|
|
|
|
|
return gimp_procedure_new_return_values (procedure, status, NULL);
|
2008-08-21 14:48:29 +00:00
|
|
|
}
|