gimp/app/batch.c
EDT 1998 Adrian Likins 25721826d0 Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>

        * app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
        Lots of ii8n stuff here and some additions to the de.po.
        Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
        gimp-egger-981007-1, gimp-egger-981008-1,
        gimp-egger-981009-1.patch, gimp-egger-981010-1.patch

        * plug-in/guillotine/guillotine.c: added the coordinates
        of the split images from the original image to the title.
        ie foo.jpg (0,0) for the image in the topleft.

        * plug-in/script-fu/scripts/neon-logo.scm,
        perspective-shadow.scm, predator.scm,rendermap.scm,
        ripply-anim.scm, select_to_image.scm,swirltile.scm,
        xach-effect.scm: updated scripts to use new script-fu stuff

wooo boy! a big un!

	in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.

-adrian
1998-10-14 23:23:52 +00:00

155 lines
2.9 KiB
C

#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "appenv.h"
#include "app_procs.h"
#include "batch.h"
#include "procedural_db.h"
#include "libgimp/gimpintl.h"
static void batch_run_cmd (char *cmd);
static void batch_read (gpointer data,
gint source,
GdkInputCondition condition);
static ProcRecord *eval_proc;
void
batch_init ()
{
extern char **batch_cmds;
int read_from_stdin;
int i;
eval_proc = procedural_db_lookup ("extension_script_fu_eval");
if (!eval_proc)
{
g_message (_("script-fu not available: batch mode disabled\n"));
return;
}
read_from_stdin = FALSE;
for (i = 0; batch_cmds[i]; i++)
{
if (strcmp (batch_cmds[i], "-") == 0)
{
if (!read_from_stdin)
{
g_print (_("reading batch commands from stdin\n"));
gdk_input_add (STDIN_FILENO, GDK_INPUT_READ, batch_read, NULL);
read_from_stdin = TRUE;
}
}
else
{
batch_run_cmd (batch_cmds[i]);
}
}
}
static void
batch_run_cmd (char *cmd)
{
Argument *args;
Argument *vals;
int i;
if (g_strcasecmp (cmd, "(gimp-quit 0)") == 0)
{
app_exit (0);
exit (0);
}
args = g_new0 (Argument, eval_proc->num_args);
for (i = 0; i < eval_proc->num_args; i++)
args[i].arg_type = eval_proc->args[i].arg_type;
args[0].value.pdb_int = 1;
args[1].value.pdb_pointer = cmd;
vals = procedural_db_execute ("extension_script_fu_eval", args);
switch (vals[0].value.pdb_int)
{
case PDB_EXECUTION_ERROR:
g_print (_("batch command: experienced an execution error.\n"));
break;
case PDB_CALLING_ERROR:
g_print (_("batch command: experienced a calling error.\n"));
break;
case PDB_SUCCESS:
g_print (_("batch command: executed successfully.\n"));
break;
default:
break;
}
procedural_db_destroy_args (vals, eval_proc->num_values);
g_free(args);
return;
}
static void
batch_read (gpointer data,
gint source,
GdkInputCondition condition)
{
static GString *string;
char buf[32], *t;
int nread, done;
if (condition & GDK_INPUT_READ)
{
do {
nread = read (source, &buf, sizeof (char) * 31);
} while ((nread == -1) && ((errno == EAGAIN) || (errno == EINTR)));
if ((nread == 0) && (!string || (string->len == 0)))
app_exit (FALSE);
buf[nread] = '\0';
if (!string)
string = g_string_new ("");
t = buf;
if (string->len == 0)
{
while (*t)
{
if (isspace (*t))
t++;
else
break;
}
}
g_string_append (string, t);
done = FALSE;
while (*t)
{
if ((*t == '\n') || (*t == '\r'))
done = TRUE;
t++;
}
if (done)
{
batch_run_cmd (string->str);
g_string_truncate (string, 0);
}
}
}