1997-11-25 06:05:25 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
* Copyright (C) 1997 Daniel Risacher, magnus@alum.mit.edu
|
|
|
|
*
|
|
|
|
* 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
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Minor changes to support file magic */
|
|
|
|
/* 4 Oct 1997 -- Risacher */
|
|
|
|
|
|
|
|
/* gzip plug-in for the gimp */
|
|
|
|
/* loosley based on url.c by */
|
|
|
|
/* Josh MacDonald, jmacd@cs.berkeley.edu */
|
|
|
|
|
|
|
|
/* and, very loosely on hrz.c by */
|
|
|
|
/* Albert Cahalan <acahalan at cs.uml.edu> */
|
|
|
|
|
|
|
|
/* This is reads and writes gziped image files for the Gimp
|
|
|
|
*
|
|
|
|
* You need to have gzip installed for it to work.
|
|
|
|
*
|
|
|
|
* It should work with file names of the form
|
|
|
|
* filename.foo.gz where foo is some already-recognized extension
|
|
|
|
*
|
|
|
|
* and it also works for names of the form
|
|
|
|
* filename.xcfgz - which is equivalent to
|
|
|
|
* filename.xcf.gz
|
|
|
|
*
|
|
|
|
* I added the xcfgz bit because having a default extension of xcf.gz
|
|
|
|
* can confuse the file selection dialog box somewhat, forcing the
|
|
|
|
* user to type sometimes when he/she otherwise wouldn't need to.
|
|
|
|
*
|
|
|
|
* I later decided I didn't like it because I don't like to bloat
|
|
|
|
* the file-extension namespace. But I left in the recognition
|
|
|
|
* feature/bug so if people want to use files named foo.xcfgz by
|
|
|
|
* default, they can just hack their pluginrc file.
|
|
|
|
*
|
|
|
|
* to do this hack, change :
|
|
|
|
* "xcf.gz,gz,xcfgz"
|
|
|
|
* to
|
|
|
|
* "xcfgz,gz,xcf.gz"
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* -Dan Risacher, 0430 CDT, 26 May 1997
|
|
|
|
*/
|
|
|
|
|
1999-05-29 09:28:24 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
1999-10-05 03:26:07 +08:00
|
|
|
#include <glib.h> /* For G_OS_WIN32 */
|
1999-06-15 06:18:02 +08:00
|
|
|
|
1999-10-05 03:26:07 +08:00
|
|
|
#ifdef G_OS_WIN32
|
1999-05-29 09:28:24 +08:00
|
|
|
#define STRICT
|
Update gcc instructions. Remove warning about gettext being GPL, as the
* README.win32: Update gcc instructions. Remove warning about
gettext being GPL, as the GIMP is GPL, too, of course, and it
thus doesn't matter.
* user_install.bat: Rename the template user gtkrc to gtkrc_user,
to reduce user confusion.
* app/main.c: Small change for gcc on Win32 compilation.
* */makefile.cygwin
* app/module_db.c: With newest gcc-2.95 -fnative-struct on Win32,
no need to have differently named DLLs (including modules) for
(built by) gcc and MSVC.
* app/module_db.c: Use g_strdup_printf() instead of
strlen(), g_malloc() and g_snprintf()
* libgimp/Makefile.am: No need to distribute gimpfeatures.h.win32,
the suitable gimpfeatures.h is built when making the dist.
* libgimp/gimpfeatures.h.win32: Removed.
* libgimp/makefile.cygwin
* libgimp/makefile.msc: Remove gimpfeatures.h.win32.
* libgimp/gimp.h: Win32 startup code changed a bit.
* plug-ins/makefile.cygwin
* plug-ins/makefile.msc: Add the winsnap unofficial plug-in.
* plug-ins/common/animationplay.c
* plug-ins/common/gz.c: (Win32) Hack aroung WinMain getting
clashing declarations because these guys include gdkx.h (which
includes windows.h), and gimp.h also declares WinMain on its own.
1999-07-22 03:52:20 +08:00
|
|
|
#define WinMain WinMain_foo
|
1999-05-29 09:28:24 +08:00
|
|
|
#include <windows.h>
|
Update gcc instructions. Remove warning about gettext being GPL, as the
* README.win32: Update gcc instructions. Remove warning about
gettext being GPL, as the GIMP is GPL, too, of course, and it
thus doesn't matter.
* user_install.bat: Rename the template user gtkrc to gtkrc_user,
to reduce user confusion.
* app/main.c: Small change for gcc on Win32 compilation.
* */makefile.cygwin
* app/module_db.c: With newest gcc-2.95 -fnative-struct on Win32,
no need to have differently named DLLs (including modules) for
(built by) gcc and MSVC.
* app/module_db.c: Use g_strdup_printf() instead of
strlen(), g_malloc() and g_snprintf()
* libgimp/Makefile.am: No need to distribute gimpfeatures.h.win32,
the suitable gimpfeatures.h is built when making the dist.
* libgimp/gimpfeatures.h.win32: Removed.
* libgimp/makefile.cygwin
* libgimp/makefile.msc: Remove gimpfeatures.h.win32.
* libgimp/gimp.h: Win32 startup code changed a bit.
* plug-ins/makefile.cygwin
* plug-ins/makefile.msc: Add the winsnap unofficial plug-in.
* plug-ins/common/animationplay.c
* plug-ins/common/gz.c: (Win32) Hack aroung WinMain getting
clashing declarations because these guys include gdkx.h (which
includes windows.h), and gimp.h also declares WinMain on its own.
1999-07-22 03:52:20 +08:00
|
|
|
#undef WinMain
|
1999-05-29 09:28:24 +08:00
|
|
|
#endif
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
1999-05-19 02:30:16 +08:00
|
|
|
#include <sys/types.h>
|
1999-05-29 09:28:24 +08:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <sys/param.h>
|
1999-05-29 09:28:24 +08:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_WAIT_H
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <sys/wait.h>
|
1999-05-29 09:28:24 +08:00
|
|
|
#endif
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <string.h>
|
1999-05-29 09:28:24 +08:00
|
|
|
#ifdef HAVE_UNISTD_H
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <unistd.h>
|
1999-05-29 09:28:24 +08:00
|
|
|
#endif
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <errno.h>
|
1999-05-29 09:28:24 +08:00
|
|
|
|
1999-05-19 02:30:16 +08:00
|
|
|
#ifdef __EMX__
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <process.h>
|
|
|
|
#endif
|
1999-05-29 09:28:24 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "libgimp/gimp.h"
|
|
|
|
|
|
|
|
/* Author 1: Josh MacDonald (url.c) */
|
|
|
|
/* Author 2: Daniel Risacher (gz.c) */
|
|
|
|
|
|
|
|
/* According to USAF Lt Steve Werhle, US DoD software development
|
|
|
|
* contracts average about $25 USD per source line of code (SLOC). By
|
|
|
|
* that metric, I figure this plug-in is worth about $10,000 USD */
|
|
|
|
/* But you got it free. Magic of Gnu. */
|
|
|
|
|
|
|
|
static void query (void);
|
|
|
|
static void run (char *name,
|
|
|
|
int nparams,
|
|
|
|
GParam *param,
|
|
|
|
int *nreturn_vals,
|
|
|
|
GParam **return_vals);
|
|
|
|
static gint32 load_image (char *filename, gint32 run_mode);
|
|
|
|
|
|
|
|
static gint save_image (char *filename,
|
|
|
|
gint32 image_ID,
|
|
|
|
gint32 drawable_ID,
|
|
|
|
gint32 run_mode);
|
|
|
|
|
|
|
|
static int valid_file (char* filename) ;
|
|
|
|
static char* find_extension (char* filename);
|
|
|
|
|
|
|
|
GPlugInInfo PLUG_IN_INFO =
|
|
|
|
{
|
|
|
|
NULL, /* init_proc */
|
|
|
|
NULL, /* quit_proc */
|
|
|
|
query, /* query_proc */
|
|
|
|
run, /* run_proc */
|
|
|
|
};
|
|
|
|
|
|
|
|
MAIN ()
|
|
|
|
|
|
|
|
static void
|
|
|
|
query ()
|
|
|
|
{
|
|
|
|
static GParamDef load_args[] =
|
|
|
|
{
|
|
|
|
{ PARAM_INT32, "run_mode", "Interactive, non-interactive" },
|
|
|
|
{ PARAM_STRING, "filename", "The name of the file to load" },
|
|
|
|
{ PARAM_STRING, "raw_filename", "The name entered" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static GParamDef load_return_vals[] =
|
|
|
|
{
|
|
|
|
{ PARAM_IMAGE, "image", "Output image" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static int nload_args = sizeof (load_args) / sizeof (load_args[0]);
|
|
|
|
static int nload_return_vals = sizeof (load_return_vals) / sizeof (load_return_vals[0]);
|
|
|
|
|
|
|
|
static GParamDef save_args[] =
|
|
|
|
{
|
|
|
|
{ PARAM_INT32, "run_mode", "Interactive, non-interactive" },
|
|
|
|
{ PARAM_IMAGE, "image", "Input image" },
|
|
|
|
{ PARAM_DRAWABLE, "drawable", "Drawable to save" },
|
|
|
|
{ PARAM_STRING, "filename", "The name of the file to save the image in" },
|
|
|
|
{ PARAM_STRING, "raw_filename", "The name of the file to save the image in" }
|
|
|
|
};
|
|
|
|
static int nsave_args = sizeof (save_args) / sizeof (save_args[0]);
|
|
|
|
|
|
|
|
gimp_install_procedure ("file_gz_load",
|
|
|
|
"loads files compressed with gzip",
|
|
|
|
"You need to have gzip installed.",
|
|
|
|
"Daniel Risacher",
|
|
|
|
"Daniel Risacher, Spencer Kimball and Peter Mattis",
|
|
|
|
"1995-1997",
|
|
|
|
"<Load>/gzip",
|
|
|
|
NULL,
|
|
|
|
PROC_PLUG_IN,
|
|
|
|
nload_args, nload_return_vals,
|
|
|
|
load_args, load_return_vals);
|
|
|
|
|
|
|
|
gimp_install_procedure ("file_gz_save",
|
|
|
|
"saves files compressed with gzip",
|
|
|
|
"You need to have gzip installed",
|
|
|
|
"Daniel Risacher",
|
|
|
|
"Daniel Risacher, Spencer Kimball and Peter Mattis",
|
|
|
|
"1995-1997",
|
|
|
|
"<Save>/gzip",
|
|
|
|
"RGB*, GRAY*, INDEXED*",
|
|
|
|
PROC_PLUG_IN,
|
|
|
|
nsave_args, 0,
|
|
|
|
save_args, NULL);
|
|
|
|
gimp_register_magic_load_handler ("file_gz_load", "xcf.gz,gz,xcfgz",
|
|
|
|
"", "0,string,\037\213");
|
|
|
|
gimp_register_save_handler ("file_gz_save", "xcf.gz,gz,xcfgz", "");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
run (char *name,
|
|
|
|
int nparams,
|
|
|
|
GParam *param,
|
|
|
|
int *nreturn_vals,
|
|
|
|
GParam **return_vals)
|
|
|
|
{
|
|
|
|
static GParam values[2];
|
|
|
|
GRunModeType run_mode;
|
|
|
|
GStatusType status = STATUS_SUCCESS;
|
|
|
|
gint32 image_ID;
|
|
|
|
|
|
|
|
run_mode = param[0].data.d_int32;
|
|
|
|
|
|
|
|
*nreturn_vals = 1;
|
|
|
|
*return_vals = values;
|
|
|
|
|
|
|
|
values[0].type = PARAM_STATUS;
|
|
|
|
values[0].data.d_status = STATUS_CALLING_ERROR;
|
|
|
|
|
|
|
|
if (strcmp (name, "file_gz_load") == 0)
|
|
|
|
{
|
|
|
|
image_ID = load_image (param[1].data.d_string,
|
|
|
|
param[0].data.d_int32);
|
|
|
|
if (image_ID != -1)
|
|
|
|
{
|
|
|
|
*nreturn_vals = 2;
|
|
|
|
values[0].data.d_status = STATUS_SUCCESS;
|
|
|
|
values[1].type = PARAM_IMAGE;
|
|
|
|
values[1].data.d_image = image_ID;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
values[0].data.d_status = STATUS_EXECUTION_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp (name, "file_gz_save") == 0)
|
|
|
|
{
|
|
|
|
switch (run_mode)
|
|
|
|
{
|
|
|
|
case RUN_INTERACTIVE:
|
|
|
|
break;
|
|
|
|
case RUN_NONINTERACTIVE:
|
|
|
|
/* Make sure all the arguments are there! */
|
|
|
|
if (nparams != 4)
|
|
|
|
status = STATUS_CALLING_ERROR;
|
|
|
|
|
|
|
|
case RUN_WITH_LAST_VALS:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
*nreturn_vals = 1;
|
|
|
|
if (save_image (param[3].data.d_string,
|
|
|
|
param[1].data.d_int32,
|
|
|
|
param[2].data.d_int32,
|
|
|
|
param[0].data.d_int32 ))
|
|
|
|
{
|
|
|
|
values[0].data.d_status = STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
values[0].data.d_status = STATUS_EXECUTION_ERROR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_assert (FALSE);
|
|
|
|
}
|
|
|
|
|
1999-05-19 02:30:16 +08:00
|
|
|
#ifdef __EMX__
|
|
|
|
static int spawn_gzip(char *filename, char* tmpname, char *parms, int *pid)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
int tfd;
|
|
|
|
|
|
|
|
if (!(f = fopen(filename,"w"))){
|
|
|
|
g_message("gz: fopen failed: %s\n", g_strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* save fileno(stdout) */
|
|
|
|
tfd = dup(fileno(stdout));
|
|
|
|
/* make stdout for this process be the output file */
|
|
|
|
if (dup2(fileno(f),fileno(stdout)) == -1)
|
|
|
|
{
|
|
|
|
g_message ("gz: dup2 failed: %s\n", g_strerror(errno));
|
|
|
|
close(tfd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
fcntl(tfd, F_SETFD, FD_CLOEXEC);
|
|
|
|
*pid = spawnlp (P_NOWAIT, "gzip", "gzip", parms, tmpname, NULL);
|
|
|
|
fclose(f);
|
|
|
|
/* restore fileno(stdout) */
|
|
|
|
dup2(tfd,fileno(stdout));
|
|
|
|
close(tfd);
|
|
|
|
if (*pid == -1)
|
|
|
|
{
|
|
|
|
g_message ("gz: spawn failed: %s\n", g_strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static gint
|
|
|
|
save_image (char *filename,
|
|
|
|
gint32 image_ID,
|
|
|
|
gint32 drawable_ID,
|
|
|
|
gint32 run_mode)
|
|
|
|
{
|
|
|
|
GParam* params;
|
|
|
|
gint retvals;
|
|
|
|
char* ext;
|
|
|
|
char* tmpname;
|
1999-10-05 03:26:07 +08:00
|
|
|
#ifndef G_OS_WIN32
|
1999-05-29 09:28:24 +08:00
|
|
|
FILE* f;
|
1997-11-25 06:05:25 +08:00
|
|
|
int pid;
|
|
|
|
int status;
|
1999-05-29 09:28:24 +08:00
|
|
|
#else
|
|
|
|
SECURITY_ATTRIBUTES secattr;
|
|
|
|
HANDLE f;
|
|
|
|
STARTUPINFO startupinfo;
|
|
|
|
PROCESS_INFORMATION processinfo;
|
|
|
|
gchar *cmdline;
|
|
|
|
#endif
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
ext = find_extension(filename);
|
|
|
|
if (0 == *ext) {
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message("gz: no sensible extension, saving as gzip'd xcf\n");
|
1997-11-25 06:05:25 +08:00
|
|
|
ext = ".xcf";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get a temp name with the right extension and save into it. */
|
|
|
|
|
|
|
|
params = gimp_run_procedure ("gimp_temp_name",
|
|
|
|
&retvals,
|
|
|
|
PARAM_STRING, ext + 1,
|
|
|
|
PARAM_END);
|
1999-10-28 06:16:20 +08:00
|
|
|
tmpname = g_strdup (params[1].data.d_string);
|
|
|
|
gimp_destroy_params (params, retvals);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
params = gimp_run_procedure ("gimp_file_save",
|
|
|
|
&retvals,
|
|
|
|
PARAM_INT32, run_mode,
|
|
|
|
PARAM_IMAGE, image_ID,
|
|
|
|
PARAM_DRAWABLE, drawable_ID,
|
|
|
|
PARAM_STRING, tmpname,
|
|
|
|
PARAM_STRING, tmpname,
|
|
|
|
PARAM_END);
|
|
|
|
|
|
|
|
if (params[0].data.d_status == FALSE || !valid_file(tmpname)) {
|
|
|
|
unlink (tmpname);
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1997-11-25 06:05:25 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if (! file_save(image_ID, tmpname, tmpname)) { */
|
|
|
|
/* unlink (tmpname); */
|
|
|
|
/* return -1; */
|
|
|
|
/* } */
|
|
|
|
|
1999-10-05 03:26:07 +08:00
|
|
|
#ifndef G_OS_WIN32
|
1999-05-29 09:28:24 +08:00
|
|
|
|
1999-05-19 02:30:16 +08:00
|
|
|
#ifndef __EMX__
|
1999-05-29 09:28:24 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* fork off a gzip process */
|
|
|
|
if ((pid = fork()) < 0)
|
|
|
|
{
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message ("gz: fork failed: %s\n", g_strerror(errno));
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1997-11-25 06:05:25 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (pid == 0)
|
|
|
|
{
|
|
|
|
|
1999-10-28 06:16:20 +08:00
|
|
|
if (!(f = fopen(filename,"w"))) {
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message("gz: fopen failed: %s\n", g_strerror(errno));
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1998-05-20 18:19:21 +08:00
|
|
|
_exit(127);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* make stdout for this process be the output file */
|
|
|
|
if (-1 == dup2(fileno(f),fileno(stdout)))
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message ("gz: dup2 failed: %s\n", g_strerror(errno));
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* and gzip into it */
|
|
|
|
execlp ("gzip", "gzip", "-cf", tmpname, NULL);
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message ("gz: exec failed: gzip: %s\n", g_strerror(errno));
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1997-11-25 06:05:25 +08:00
|
|
|
_exit(127);
|
|
|
|
}
|
|
|
|
else
|
1999-05-19 02:30:16 +08:00
|
|
|
#else /* __EMX__ */
|
|
|
|
if (spawn_gzip(filename, tmpname, "-cf", &pid) == -1)
|
1999-10-28 06:16:20 +08:00
|
|
|
{
|
|
|
|
g_free (tmpname);
|
1999-05-19 02:30:16 +08:00
|
|
|
return -1;
|
1999-10-28 06:16:20 +08:00
|
|
|
}
|
1999-05-19 02:30:16 +08:00
|
|
|
#endif
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
waitpid (pid, &status, 0);
|
|
|
|
|
|
|
|
if (!WIFEXITED(status) ||
|
|
|
|
WEXITSTATUS(status) != 0)
|
|
|
|
{
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message ("gz: gzip exited abnormally on file %s\n", tmpname);
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1997-11-25 06:05:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
1999-10-05 03:26:07 +08:00
|
|
|
#else /* G_OS_WIN32 */
|
1999-05-29 09:28:24 +08:00
|
|
|
secattr.nLength = sizeof (SECURITY_ATTRIBUTES);
|
|
|
|
secattr.lpSecurityDescriptor = NULL;
|
|
|
|
secattr.bInheritHandle = TRUE;
|
|
|
|
|
|
|
|
if ((f = CreateFile (filename, GENERIC_WRITE, FILE_SHARE_READ,
|
|
|
|
&secattr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL))
|
|
|
|
== INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
g_message ("gz: CreateFile failed\n");
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1999-05-29 09:28:24 +08:00
|
|
|
_exit (127);
|
|
|
|
}
|
|
|
|
|
|
|
|
startupinfo.cb = sizeof (STARTUPINFO);
|
|
|
|
startupinfo.lpReserved = NULL;
|
|
|
|
startupinfo.lpDesktop = NULL;
|
|
|
|
startupinfo.lpTitle = NULL;
|
|
|
|
startupinfo.dwFlags =
|
|
|
|
STARTF_FORCEOFFFEEDBACK | STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
|
|
|
|
startupinfo.wShowWindow = SW_SHOWMINNOACTIVE;
|
|
|
|
startupinfo.cbReserved2 = 0;
|
|
|
|
startupinfo.lpReserved2 = NULL;
|
|
|
|
startupinfo.hStdInput = GetStdHandle (STD_INPUT_HANDLE);
|
|
|
|
startupinfo.hStdOutput = f;
|
|
|
|
startupinfo.hStdError = GetStdHandle (STD_ERROR_HANDLE);
|
|
|
|
|
|
|
|
cmdline = g_strdup_printf ("gzip -cf %s", tmpname);
|
|
|
|
|
|
|
|
if (!CreateProcess (NULL, cmdline, NULL, NULL,
|
|
|
|
TRUE, NORMAL_PRIORITY_CLASS, NULL, NULL,
|
|
|
|
&startupinfo, &processinfo))
|
|
|
|
{
|
|
|
|
g_message ("gz: CreateProcess failed\n");
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1999-05-29 09:28:24 +08:00
|
|
|
_exit (127);
|
|
|
|
}
|
|
|
|
CloseHandle (f);
|
|
|
|
CloseHandle (processinfo.hThread);
|
|
|
|
WaitForSingleObject (processinfo.hProcess, INFINITE);
|
|
|
|
|
1999-10-05 03:26:07 +08:00
|
|
|
#endif /* G_OS_WIN32 */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
unlink (tmpname);
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint32
|
|
|
|
load_image (char *filename, gint32 run_mode)
|
|
|
|
{
|
|
|
|
GParam* params;
|
|
|
|
gint retvals;
|
|
|
|
char* ext;
|
|
|
|
char* tmpname;
|
1999-10-05 03:26:07 +08:00
|
|
|
#ifndef G_OS_WIN32
|
1997-11-25 06:05:25 +08:00
|
|
|
int pid;
|
|
|
|
int status;
|
1999-05-29 09:28:24 +08:00
|
|
|
#else
|
|
|
|
SECURITY_ATTRIBUTES secattr;
|
|
|
|
HANDLE f;
|
|
|
|
STARTUPINFO startupinfo;
|
|
|
|
PROCESS_INFORMATION processinfo;
|
|
|
|
gchar *cmdline;
|
|
|
|
#endif
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
ext = find_extension(filename);
|
|
|
|
if (0 == *ext) {
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message("gz: no sensible extension, attempting to load with file magic\n");
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* find a temp name */
|
|
|
|
params = gimp_run_procedure ("gimp_temp_name",
|
|
|
|
&retvals,
|
|
|
|
PARAM_STRING, ext + 1,
|
|
|
|
PARAM_END);
|
|
|
|
|
1999-10-28 06:16:20 +08:00
|
|
|
tmpname = g_strdup (params[1].data.d_string);
|
|
|
|
gimp_destroy_params (params, retvals);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-10-05 03:26:07 +08:00
|
|
|
#ifndef G_OS_WIN32
|
1999-05-29 09:28:24 +08:00
|
|
|
|
1999-05-19 02:30:16 +08:00
|
|
|
#ifndef __EMX__
|
1999-05-29 09:28:24 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* fork off a g(un)zip and wait for it */
|
|
|
|
if ((pid = fork()) < 0)
|
|
|
|
{
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message ("gz: fork failed: %s\n", g_strerror(errno));
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1997-11-25 06:05:25 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (pid == 0) /* child process */
|
|
|
|
{
|
|
|
|
FILE* f;
|
1998-05-20 18:19:21 +08:00
|
|
|
if (!(f = fopen(tmpname,"w"))){
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message("gz: fopen failed: %s\n", g_strerror(errno));
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1998-05-20 18:19:21 +08:00
|
|
|
_exit(127);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* make stdout for this child process be the temp file */
|
|
|
|
if (-1 == dup2(fileno(f),fileno(stdout)))
|
1999-10-28 06:16:20 +08:00
|
|
|
{
|
|
|
|
g_free (tmpname);
|
|
|
|
g_message ("gz: dup2 failed: %s\n", g_strerror(errno));
|
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* and unzip into it */
|
|
|
|
execlp ("gzip", "gzip", "-cfd", filename, NULL);
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message ("gz: exec failed: gunzip: %s\n", g_strerror(errno));
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1997-11-25 06:05:25 +08:00
|
|
|
_exit(127);
|
|
|
|
}
|
|
|
|
else /* parent process */
|
1999-05-19 02:30:16 +08:00
|
|
|
#else /* __EMX__ */
|
1999-10-28 06:16:20 +08:00
|
|
|
if (spawn_gzip(tmpname, filename, "-cfd", &pid) == -1)
|
|
|
|
{
|
|
|
|
g_free (tmpname);
|
|
|
|
return -1;
|
|
|
|
}
|
1999-05-19 02:30:16 +08:00
|
|
|
#endif
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
waitpid (pid, &status, 0);
|
|
|
|
|
|
|
|
if (!WIFEXITED(status) ||
|
|
|
|
WEXITSTATUS(status) != 0)
|
|
|
|
{
|
1998-05-30 15:32:37 +08:00
|
|
|
g_message ("gz: gzip exited abnormally on file %s\n", filename);
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1997-11-25 06:05:25 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
1999-05-29 09:28:24 +08:00
|
|
|
#else
|
|
|
|
secattr.nLength = sizeof (SECURITY_ATTRIBUTES);
|
|
|
|
secattr.lpSecurityDescriptor = NULL;
|
|
|
|
secattr.bInheritHandle = TRUE;
|
|
|
|
|
|
|
|
if ((f = CreateFile (tmpname, GENERIC_WRITE, FILE_SHARE_READ,
|
|
|
|
&secattr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL))
|
|
|
|
== INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
g_message ("gz: CreateFile failed\n");
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1999-05-29 09:28:24 +08:00
|
|
|
_exit (127);
|
|
|
|
}
|
|
|
|
|
|
|
|
startupinfo.cb = sizeof (STARTUPINFO);
|
|
|
|
startupinfo.lpReserved = NULL;
|
|
|
|
startupinfo.lpDesktop = NULL;
|
|
|
|
startupinfo.lpTitle = NULL;
|
|
|
|
startupinfo.dwFlags =
|
|
|
|
STARTF_FORCEOFFFEEDBACK | STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
|
|
|
|
startupinfo.wShowWindow = SW_SHOWMINNOACTIVE;
|
|
|
|
startupinfo.cbReserved2 = 0;
|
|
|
|
startupinfo.lpReserved2 = NULL;
|
|
|
|
startupinfo.hStdInput = GetStdHandle (STD_INPUT_HANDLE);
|
|
|
|
startupinfo.hStdOutput = f;
|
|
|
|
startupinfo.hStdError = GetStdHandle (STD_ERROR_HANDLE);
|
|
|
|
|
|
|
|
cmdline = g_strdup_printf ("gzip -cfd %s", filename);
|
|
|
|
|
|
|
|
if (!CreateProcess (NULL, cmdline, NULL, NULL,
|
|
|
|
TRUE, NORMAL_PRIORITY_CLASS, NULL, NULL,
|
|
|
|
&startupinfo, &processinfo))
|
|
|
|
{
|
|
|
|
g_message ("gz: CreateProcess failed: %d\n", GetLastError ());
|
Must call gimp_set_remove_handler() to remove the browser_info_update
1999-11-09 Tor Lillqvist <tml@iki.fi>
* app/module_db.c (browser_destroy_callback): Must call
gimp_set_remove_handler() to remove the browser_info_update
handler from the GimpSet 'modules'.
Otherwise if we bring up the module browser, then close it, this
will call browser_destroy_callback(), which will free the
'browser_st' struct. Later when we exit the GIMP, the modules will
be unloaded, which will cause browser_info_update() to be called,
and passed the pointer to the already freed 'browser_st'. Whoopee.
Thanks to Electric Fence for pointing this out.
* app/makefile.{cygwin,msc}: Remove actionarea.
* libgimp/gimp.h: Change declaration of nonexistent function
gimp_layer_attach_new_parasite() to declaration of
gimp_drawable_attach_new_parasite(), which was missing.
* libgimp/gimpui.def
* libgimp/makefile.{cygwin,msc}: Add gimpcolorbutton.
* plug-ins/makefile.{cygwin,msc}: Add gap_filter and gap_plugins.
* plug-ins/common/gz.c: Fix renamed variable in Win32 part.
* plug-ins/gap/gap_lib.c: Use G_DIR_SEPARATOR_S.
* plug-ins/gdyntext/font_selection.c: When compiling with current
CVS GTk+ (i.e., on Win32 most likely) use the gdk_font_list_*
functions instead of Xlib's XListFonts() and XFreeFontNames().
* plug-ins/gdyntext/gdyntext.c: Use G_PI.
* plug-ins/gdyntext/gdyntext_ui.c: Guard inclusion of
unistd.h. Don't unnecessarily include gdkx.h and Xlib.h
* plug-ins/winsnap/winsnap.c: Fix rectangle orientation.
1999-11-10 07:01:31 +08:00
|
|
|
g_free (tmpname);
|
1999-05-29 09:28:24 +08:00
|
|
|
_exit (127);
|
|
|
|
}
|
|
|
|
CloseHandle (f);
|
|
|
|
CloseHandle (processinfo.hThread);
|
|
|
|
WaitForSingleObject (processinfo.hProcess, INFINITE);
|
|
|
|
|
1999-10-05 03:26:07 +08:00
|
|
|
#endif /* G_OS_WIN32 */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* now that we un-gziped it, load the temp file */
|
|
|
|
|
|
|
|
params = gimp_run_procedure ("gimp_file_load",
|
|
|
|
&retvals,
|
|
|
|
PARAM_INT32, run_mode,
|
|
|
|
PARAM_STRING, tmpname,
|
|
|
|
PARAM_STRING, tmpname,
|
|
|
|
PARAM_END);
|
|
|
|
unlink (tmpname);
|
1999-10-28 06:16:20 +08:00
|
|
|
g_free (tmpname);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
if (params[0].data.d_status == FALSE)
|
|
|
|
return -1;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_image_set_filename (params[1].data.d_int32, filename);
|
|
|
|
return params[1].data.d_int32;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int valid_file (char* filename)
|
|
|
|
{
|
|
|
|
int stat_res;
|
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
stat_res = stat(filename, &buf);
|
|
|
|
|
|
|
|
if ((0 == stat_res) && (buf.st_size > 0))
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char* find_extension (char* filename)
|
|
|
|
{
|
|
|
|
char* filename_copy;
|
|
|
|
char* ext;
|
|
|
|
|
|
|
|
/* we never free this copy - aren't we evil! */
|
|
|
|
filename_copy = malloc(strlen(filename)+1);
|
|
|
|
strcpy(filename_copy, filename);
|
|
|
|
|
|
|
|
/* find the extension, boy! */
|
|
|
|
ext = strrchr (filename_copy, '.');
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (!ext || ext[1] == 0 || strchr(ext, '/'))
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
if (0 == strcmp(ext, ".xcfgz")) {
|
|
|
|
return ".xcf"; /* we've found it */
|
|
|
|
}
|
|
|
|
if (0 != strcmp(ext,".gz")) {
|
|
|
|
return ext;
|
|
|
|
} else {
|
|
|
|
/* we found ".gz" so strip it, loop back, and look again */
|
|
|
|
*ext = 0;
|
|
|
|
ext = strrchr (filename_copy, '.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|