2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1997-11-25 06:05:25 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2006-04-29 06:26:51 +08:00
|
|
|
* gimppluginhsm.c
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1997-11-25 06:05:25 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1997-11-25 06:05:25 +08: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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-07-16 20:49:04 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "config.h"
|
1999-03-07 20:56:03 +08:00
|
|
|
|
2003-02-19 06:47:13 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2003-12-27 16:07:15 +08:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#if defined(USE_SYSV_SHM)
|
|
|
|
|
2003-01-30 19:20:12 +08:00
|
|
|
#ifdef HAVE_IPC_H
|
|
|
|
#include <sys/ipc.h>
|
1999-06-22 04:04:04 +08:00
|
|
|
#endif
|
|
|
|
|
2003-01-30 19:20:12 +08:00
|
|
|
#ifdef HAVE_SHM_H
|
|
|
|
#include <sys/shm.h>
|
1999-03-07 21:23:06 +08:00
|
|
|
#endif
|
2002-02-18 22:34:50 +08:00
|
|
|
|
2003-12-27 16:07:15 +08:00
|
|
|
#elif defined(USE_POSIX_SHM)
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
|
|
|
#endif /* USE_POSIX_SHM */
|
|
|
|
|
2014-08-02 21:07:26 +08:00
|
|
|
#include <gio/gio.h>
|
2012-05-08 05:04:59 +08:00
|
|
|
#include <gegl.h>
|
1999-03-07 20:56:03 +08:00
|
|
|
|
1999-10-07 05:27:18 +08:00
|
|
|
#if defined(G_OS_WIN32) || defined(G_WITH_CYGWIN)
|
2003-01-20 20:17:32 +08:00
|
|
|
|
1999-03-07 20:56:03 +08:00
|
|
|
#define STRICT
|
|
|
|
#include <windows.h>
|
|
|
|
#include <process.h>
|
|
|
|
|
1999-10-05 03:26:07 +08:00
|
|
|
#ifdef G_OS_WIN32
|
1999-03-07 20:56:03 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
|
2003-12-27 16:07:15 +08:00
|
|
|
#define USE_WIN32_SHM 1
|
|
|
|
|
2003-01-20 20:17:32 +08:00
|
|
|
#endif /* G_OS_WIN32 || G_WITH_CYGWIN */
|
1999-03-07 20:56:03 +08:00
|
|
|
|
2001-12-01 08:14:14 +08:00
|
|
|
#include "plug-in-types.h"
|
2001-05-22 04:30:16 +08:00
|
|
|
|
2012-05-08 05:04:59 +08:00
|
|
|
#include "core/gimp-utils.h"
|
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
#include "gimppluginshm.h"
|
2000-07-16 20:49:04 +08:00
|
|
|
|
2010-02-11 02:24:40 +08:00
|
|
|
#include "gimp-log.h"
|
|
|
|
|
Bit of a large checkin this - it's basically three things: 1 - GimpModules
Sun Jan 11 00:24:21 GMT 1999 Austin Donnelly <austin@greenend.org.uk>
Bit of a large checkin this - it's basically three things:
1 - GimpModules using gmodules to dynamically load and
initialise modules at gimp start of day.
2 - Color selectors now register themselves with a color
notebook.
3 - progress bars have been cleaned up a bit, so now have
progress indictations on all transform tool and gradient
fill operations. Not done bucket fill, but that seems to
be the next candidate.
New directories:
* modules/: new directory for dynamically loadable modules.
New files:
* modules/.cvsignore
* modules/Makefile.am
* modules/colorsel_gtk.c: GTK color selector wrapped up as a
color selector the gimp can use.
* app/gimpprogress.[ch]: progress bars within gimp core, either as
popups, or in the status bar. This is mainly code moved out
of plug-in.c
* app/color_notebook.[ch]: color selector notebook, implementing
very similar interface to color_select.h so it can be used as
a drop-in replacement for it.
* libgimp/color_selector.h: API color selectors need to implement
to become a page in the color_notebook.
* libgimp/gimpmodule.h: API gimp modules need to implement to be
initialised by gimp at start of day.
Modified files:
* Makefile.am: add modules/ to SUBDIRS
* libgimp/Makefile.am: install gimpmodule.h and color_selector.h
* app/gimprc.[ch]: recognise module-path variable.
* gimprc.in: set module-path variable to something sensible
(currently "${gimp_dir}/modules:${gimp_plugin_dir}/modules").
* app/Makefile.am: build color notebook and gimpprogress
* app/app_procs.c: register internal GIMP color selector with
color notebook.
* app/asupsample.c: call progress function less frequently for
better performance.
* app/asupsample.h: progress_func_t typedef moved to gimpprogress.h
* app/blend.c: make callbacks to a progress function
* app/color_area.c: use a color notebook rather than a color selector
* app/color_panel.c: ditto
* app/color_select.c: export color selector interface for notebook
* app/color_select.h: color_select_init() prototype
* app/flip_tool.c: flip the image every time, rather than every
second click.
* app/interface.c: move progress bar stuff out to
gimpprogress.c. Make the code actually work while we're at it.
* app/interface.h: move prototypes for progress functions out to
gimpprogress.h
* app/plug_in.c: load and initialise modules (if possible). Move
progress bar handling code out to gimpprogress.c
* app/plug_in.h: keep only a gimp_progress * for each plugin, not
a whole bunch of GtkWidgets.
* app/scale_tool.c
* app/rotate_tool.c
* app/shear_tool.c
* app/perspective_tool.c: progress bar during operation.
De-sensitise the dialog to discourage the user from running
two transforms in parallel.
* app/transform_core.c: recalculate grid coords when bounding box
changes. Only initialise the action area of the dialog once,
to avoid multiple "ok" / "reset" buttons appearing. Undraw
transform tool with correct matrix to get rid of handle
remains on screen. Call a progress function as we apply the
transform matrix. A few new i18n markups. Invalidate
floating selection marching ants after applying matrix.
* app/transform_core.h: transform_core_do() takes an optional
progress callback argument (and data).
* plug-ins/oilify/oilify.c: send progress bar updates after every
pixel region, not only if they processed a multiple of 5
pixels (which was quite unlikely, and therefore gave a jerky
progress indication).
1999-01-11 08:57:33 +08:00
|
|
|
|
2014-03-09 07:41:58 +08:00
|
|
|
#define TILE_MAP_SIZE (GIMP_PLUG_IN_TILE_WIDTH * GIMP_PLUG_IN_TILE_HEIGHT * 32)
|
2006-05-05 05:49:04 +08:00
|
|
|
|
|
|
|
#define ERRMSG_SHM_DISABLE "Disabling shared memory tile transport"
|
|
|
|
|
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
struct _GimpPlugInShm
|
2003-02-11 20:07:31 +08:00
|
|
|
{
|
|
|
|
gint shm_ID;
|
|
|
|
guchar *shm_addr;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-12-27 16:07:15 +08:00
|
|
|
#if defined(USE_WIN32_SHM)
|
2003-02-11 20:07:31 +08:00
|
|
|
HANDLE shm_handle;
|
1999-03-07 20:56:03 +08:00
|
|
|
#endif
|
2003-02-11 20:07:31 +08:00
|
|
|
};
|
1999-03-07 20:56:03 +08:00
|
|
|
|
1999-05-07 04:56:07 +08:00
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
GimpPlugInShm *
|
|
|
|
gimp_plug_in_shm_new (void)
|
1999-05-07 04:56:07 +08:00
|
|
|
{
|
|
|
|
/* allocate a piece of shared memory for use in transporting tiles
|
|
|
|
* to plug-ins. if we can't allocate a piece of shared memory then
|
|
|
|
* we'll fall back on sending the data over the pipe.
|
|
|
|
*/
|
2004-02-07 08:24:47 +08:00
|
|
|
|
2007-05-23 16:57:53 +08:00
|
|
|
GimpPlugInShm *shm = g_slice_new0 (GimpPlugInShm);
|
2006-04-29 06:26:51 +08:00
|
|
|
|
|
|
|
shm->shm_ID = -1;
|
2003-01-30 19:20:12 +08:00
|
|
|
|
2006-05-05 05:49:04 +08:00
|
|
|
#if defined(USE_SYSV_SHM)
|
2003-02-11 20:07:31 +08:00
|
|
|
|
2006-05-05 05:49:04 +08:00
|
|
|
/* Use SysV shared memory mechanisms for transferring tile data. */
|
|
|
|
{
|
|
|
|
shm->shm_ID = shmget (IPC_PRIVATE, TILE_MAP_SIZE, IPC_CREAT | 0600);
|
2003-01-30 19:20:12 +08:00
|
|
|
|
2006-05-05 05:49:04 +08:00
|
|
|
if (shm->shm_ID != -1)
|
|
|
|
{
|
|
|
|
shm->shm_addr = (guchar *) shmat (shm->shm_ID, NULL, 0);
|
|
|
|
|
|
|
|
if (shm->shm_addr == (guchar *) -1)
|
|
|
|
{
|
|
|
|
g_printerr ("shmat() failed: %s\n" ERRMSG_SHM_DISABLE,
|
|
|
|
g_strerror (errno));
|
|
|
|
shmctl (shm->shm_ID, IPC_RMID, NULL);
|
|
|
|
shm->shm_ID = -1;
|
|
|
|
}
|
2003-01-30 19:20:12 +08:00
|
|
|
|
|
|
|
#ifdef IPC_RMID_DEFERRED_RELEASE
|
2006-05-05 05:49:04 +08:00
|
|
|
if (shm->shm_addr != (guchar *) -1)
|
|
|
|
shmctl (shm->shm_ID, IPC_RMID, NULL);
|
1999-05-07 04:56:07 +08:00
|
|
|
#endif
|
2006-05-05 05:49:04 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_printerr ("shmget() failed: %s\n" ERRMSG_SHM_DISABLE,
|
|
|
|
g_strerror (errno));
|
|
|
|
}
|
|
|
|
}
|
2003-01-30 19:20:12 +08:00
|
|
|
|
2003-12-27 16:07:15 +08:00
|
|
|
#elif defined(USE_WIN32_SHM)
|
|
|
|
|
|
|
|
/* Use Win32 shared memory mechanisms for transferring tile data. */
|
2006-05-05 05:49:04 +08:00
|
|
|
{
|
|
|
|
gint pid;
|
|
|
|
gchar fileMapName[MAX_PATH];
|
|
|
|
|
|
|
|
/* Our shared memory id will be our process ID */
|
|
|
|
pid = GetCurrentProcessId ();
|
|
|
|
|
|
|
|
/* From the id, derive the file map name */
|
|
|
|
g_snprintf (fileMapName, sizeof (fileMapName), "GIMP%d.SHM", pid);
|
|
|
|
|
|
|
|
/* Create the file mapping into paging space */
|
2008-09-18 17:35:00 +08:00
|
|
|
shm->shm_handle = CreateFileMapping (INVALID_HANDLE_VALUE, NULL,
|
2006-05-05 05:49:04 +08:00
|
|
|
PAGE_READWRITE, 0,
|
|
|
|
TILE_MAP_SIZE,
|
|
|
|
fileMapName);
|
|
|
|
|
|
|
|
if (shm->shm_handle)
|
|
|
|
{
|
|
|
|
/* Map the shared memory into our address space for use */
|
|
|
|
shm->shm_addr = (guchar *) MapViewOfFile (shm->shm_handle,
|
|
|
|
FILE_MAP_ALL_ACCESS,
|
|
|
|
0, 0, TILE_MAP_SIZE);
|
|
|
|
|
|
|
|
/* Verify that we mapped our view */
|
|
|
|
if (shm->shm_addr)
|
|
|
|
{
|
|
|
|
shm->shm_ID = pid;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_printerr ("MapViewOfFile error: %d... " ERRMSG_SHM_DISABLE,
|
|
|
|
GetLastError ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_printerr ("CreateFileMapping error: %d... " ERRMSG_SHM_DISABLE,
|
|
|
|
GetLastError ());
|
|
|
|
}
|
|
|
|
}
|
2003-01-30 19:20:12 +08:00
|
|
|
|
2003-12-27 16:07:15 +08:00
|
|
|
#elif defined(USE_POSIX_SHM)
|
|
|
|
|
|
|
|
/* Use POSIX shared memory mechanisms for transferring tile data. */
|
2006-05-05 05:49:04 +08:00
|
|
|
{
|
|
|
|
gint pid;
|
|
|
|
gchar shm_handle[32];
|
|
|
|
gint shm_fd;
|
|
|
|
|
|
|
|
/* Our shared memory id will be our process ID */
|
2012-05-08 05:04:59 +08:00
|
|
|
pid = gimp_get_pid ();
|
2006-05-05 05:49:04 +08:00
|
|
|
|
|
|
|
/* From the id, derive the file map name */
|
|
|
|
g_snprintf (shm_handle, sizeof (shm_handle), "/gimp-shm-%d", pid);
|
|
|
|
|
|
|
|
/* Create the file mapping into paging space */
|
|
|
|
shm_fd = shm_open (shm_handle, O_RDWR | O_CREAT, 0600);
|
|
|
|
|
|
|
|
if (shm_fd != -1)
|
|
|
|
{
|
|
|
|
if (ftruncate (shm_fd, TILE_MAP_SIZE) != -1)
|
|
|
|
{
|
|
|
|
/* Map the shared memory into our address space for use */
|
|
|
|
shm->shm_addr = (guchar *) mmap (NULL, TILE_MAP_SIZE,
|
|
|
|
PROT_READ | PROT_WRITE, MAP_SHARED,
|
|
|
|
shm_fd, 0);
|
|
|
|
|
|
|
|
/* Verify that we mapped our view */
|
|
|
|
if (shm->shm_addr != MAP_FAILED)
|
|
|
|
{
|
|
|
|
shm->shm_ID = pid;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_printerr ("mmap() failed: %s\n" ERRMSG_SHM_DISABLE,
|
|
|
|
g_strerror (errno));
|
|
|
|
|
|
|
|
shm_unlink (shm_handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_printerr ("ftruncate() failed: %s\n" ERRMSG_SHM_DISABLE,
|
|
|
|
g_strerror (errno));
|
|
|
|
|
|
|
|
shm_unlink (shm_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
close (shm_fd);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_printerr ("shm_open() failed: %s\n" ERRMSG_SHM_DISABLE,
|
|
|
|
g_strerror (errno));
|
|
|
|
}
|
|
|
|
}
|
2003-12-27 16:07:15 +08:00
|
|
|
|
2006-05-05 05:49:04 +08:00
|
|
|
#endif
|
2004-02-07 08:24:47 +08:00
|
|
|
|
2006-05-05 05:49:04 +08:00
|
|
|
if (shm->shm_ID == -1)
|
2003-12-27 16:07:15 +08:00
|
|
|
{
|
2007-05-23 16:57:53 +08:00
|
|
|
g_slice_free (GimpPlugInShm, shm);
|
2006-05-05 05:49:04 +08:00
|
|
|
shm = NULL;
|
2003-12-27 16:07:15 +08:00
|
|
|
}
|
2010-02-11 02:24:40 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
GIMP_LOG (SHM, "attached shared memory segment ID = %d", shm->shm_ID);
|
|
|
|
}
|
2003-12-27 16:07:15 +08:00
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
return shm;
|
1999-05-07 04:56:07 +08:00
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
void
|
2006-04-29 06:26:51 +08:00
|
|
|
gimp_plug_in_shm_free (GimpPlugInShm *shm)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2006-04-29 06:26:51 +08:00
|
|
|
g_return_if_fail (shm != NULL);
|
2001-10-20 00:41:09 +08:00
|
|
|
|
2006-05-05 05:49:04 +08:00
|
|
|
if (shm->shm_ID != -1)
|
|
|
|
{
|
|
|
|
|
2003-12-27 16:07:15 +08:00
|
|
|
#if defined (USE_SYSV_SHM)
|
2003-01-30 19:20:12 +08:00
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
shmdt (shm->shm_addr);
|
2010-02-11 02:24:40 +08:00
|
|
|
|
|
|
|
#ifndef IPC_RMID_DEFERRED_RELEASE
|
2006-04-29 06:26:51 +08:00
|
|
|
shmctl (shm->shm_ID, IPC_RMID, NULL);
|
2010-02-11 02:24:40 +08:00
|
|
|
#endif
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-12-27 16:07:15 +08:00
|
|
|
#elif defined(USE_WIN32_SHM)
|
|
|
|
|
2006-05-05 05:49:04 +08:00
|
|
|
if (shm->shm_handle)
|
|
|
|
CloseHandle (shm->shm_handle);
|
2003-12-27 16:07:15 +08:00
|
|
|
|
|
|
|
#elif defined(USE_POSIX_SHM)
|
|
|
|
|
|
|
|
gchar shm_handle[32];
|
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
munmap (shm->shm_addr, TILE_MAP_SIZE);
|
2003-12-27 16:07:15 +08:00
|
|
|
|
|
|
|
g_snprintf (shm_handle, sizeof (shm_handle), "/gimp-shm-%d",
|
2006-04-29 06:26:51 +08:00
|
|
|
shm->shm_ID);
|
2003-12-27 16:07:15 +08:00
|
|
|
|
|
|
|
shm_unlink (shm_handle);
|
|
|
|
|
|
|
|
#endif
|
2003-02-11 20:07:31 +08:00
|
|
|
|
2010-02-11 02:24:40 +08:00
|
|
|
GIMP_LOG (SHM, "detached shared memory segment ID = %d", shm->shm_ID);
|
2006-05-05 05:49:04 +08:00
|
|
|
}
|
|
|
|
|
2007-05-23 16:57:53 +08:00
|
|
|
g_slice_free (GimpPlugInShm, shm);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2003-01-30 19:20:12 +08:00
|
|
|
gint
|
2006-04-29 06:26:51 +08:00
|
|
|
gimp_plug_in_shm_get_ID (GimpPlugInShm *shm)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2006-04-29 06:26:51 +08:00
|
|
|
g_return_val_if_fail (shm != NULL, -1);
|
2003-02-11 20:07:31 +08:00
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
return shm->shm_ID;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2003-01-30 19:20:12 +08:00
|
|
|
guchar *
|
2006-04-29 06:26:51 +08:00
|
|
|
gimp_plug_in_shm_get_addr (GimpPlugInShm *shm)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2006-04-29 06:26:51 +08:00
|
|
|
g_return_val_if_fail (shm != NULL, NULL);
|
2003-02-11 20:07:31 +08:00
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
return shm->shm_addr;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|