* app/composite/gimp-composite-dispatch.[ch]: retired and removed. * app/composite/Makefile.am: The 'test' target now builds and runs all the tests in TESTS Fixed typos of mismatched parenthesis in 'regenerate' target * app/composite/Makefile.am: TESTS now include ss2 and 3dnow instruction sets. * app/composite/make-gimp-composite-dispatch.py: retired and removed. * app/composite/gimp-composite.c: call the installers of all the various instruction sets supplied by x86 type processors. * app/base/base.c (base_init): Call gimp_composite_init() *before* paint_funcs_setup() (preparation for retiring app/paint-funcs/paint-funcs.c) * app/composite/gimp-composite-sse2.[ch] * app/composite/gimp-composite-3dnow.[ch] * app/composite/gimp-composite-sse2-installer.c * app/composite/gimp-composite-3dnow-installer.c: Added * app/composite/make-installer.py: generate regression test programmes that take the command line arguments --iterations and --n-pixels for the number of iterations of a set of tests, and the number of pixels to use in each test, respectively. Conditionally compile tests in order to build and run tests on machines that can actually perform the tests. Failing a regression test now causes remaining tests to be skipped and a non-zero exit code by the programme.
215 lines
5.4 KiB
C
215 lines
5.4 KiB
C
/* 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 <signal.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#include <sys/types.h>
|
|
|
|
#include <glib-object.h>
|
|
|
|
#ifdef G_OS_WIN32
|
|
#include <process.h> /* for _getpid() */
|
|
#include <io.h> /* for _unlink() */
|
|
#endif
|
|
|
|
#include "libgimpbase/gimpversion.h"
|
|
#include "base-types.h"
|
|
|
|
#include "config/gimpbaseconfig.h"
|
|
#include "config/gimpconfig-path.h"
|
|
|
|
#include "paint-funcs/paint-funcs.h"
|
|
#include "composite/gimp-composite.h"
|
|
|
|
#include "base.h"
|
|
#include "cpu-accel.h"
|
|
#include "temp-buf.h"
|
|
#include "tile-cache.h"
|
|
#include "tile-swap.h"
|
|
|
|
|
|
GimpBaseConfig *base_config = NULL;
|
|
|
|
|
|
static void base_toast_old_temp_files (GimpBaseConfig *config);
|
|
static void base_tile_cache_size_notify (GObject *config,
|
|
GParamSpec *param_spec,
|
|
gpointer data);
|
|
|
|
|
|
/* public functions */
|
|
|
|
void
|
|
base_init (GimpBaseConfig *config,
|
|
gboolean use_mmx)
|
|
{
|
|
gchar *swapfile;
|
|
gchar *swapdir;
|
|
gchar *path;
|
|
|
|
g_return_if_fail (GIMP_IS_BASE_CONFIG (config));
|
|
g_return_if_fail (base_config == NULL);
|
|
|
|
base_config = config;
|
|
|
|
#if (GIMP_MINOR_VERSION % 2) == 1
|
|
g_printerr ("This is a development version of the GIMP\n"
|
|
"Debug messages may appear here.\n\n");
|
|
|
|
#ifdef G_OS_WIN32
|
|
g_printerr ("You can minimize this window, but don't close it.\n\n");
|
|
#endif
|
|
|
|
if (use_mmx)
|
|
{
|
|
g_printerr ("Testing CPU features...\n");
|
|
#ifdef ARCH_X86
|
|
g_printerr (" mmx : %s\n",
|
|
(cpu_accel() & CPU_ACCEL_X86_MMX) ? "yes" : "no");
|
|
g_printerr (" 3dnow : %s\n",
|
|
(cpu_accel() & CPU_ACCEL_X86_3DNOW) ? "yes" : "no");
|
|
g_printerr (" mmxext : %s\n",
|
|
(cpu_accel() & CPU_ACCEL_X86_MMXEXT) ? "yes" : "no");
|
|
g_printerr (" sse : %s\n",
|
|
(cpu_accel() & CPU_ACCEL_X86_SSE) ? "yes" : "no");
|
|
g_printerr (" sse2 : %s\n",
|
|
(cpu_accel() & CPU_ACCEL_X86_SSE2) ? "yes" : "no");
|
|
#endif
|
|
#ifdef ARCH_PPC
|
|
g_printerr (" altivec : %s\n",
|
|
(cpu_accel() & CPU_ACCEL_PPC_ALTIVEC) ? "yes" : "no");
|
|
#endif
|
|
g_printerr ("\n");
|
|
}
|
|
#endif /* odd minor version */
|
|
|
|
tile_cache_init (config->tile_cache_size);
|
|
|
|
g_signal_connect (config, "notify::tile-cache-size",
|
|
G_CALLBACK (base_tile_cache_size_notify),
|
|
NULL);
|
|
|
|
base_toast_old_temp_files (config);
|
|
|
|
/* Add the swap file */
|
|
if (! config->swap_path)
|
|
g_object_set (config, "swap_path", "${gimp_dir}", NULL);
|
|
|
|
swapdir = gimp_config_path_expand (config->swap_path, TRUE, NULL);
|
|
swapfile = g_strdup_printf ("gimpswap.%lu", (unsigned long) getpid ());
|
|
|
|
path = g_build_filename (swapdir, swapfile, NULL);
|
|
|
|
g_free (swapfile);
|
|
g_free (swapdir);
|
|
|
|
tile_swap_add (path, NULL, NULL);
|
|
|
|
g_free (path);
|
|
|
|
gimp_composite_init ();
|
|
|
|
paint_funcs_setup (use_mmx);
|
|
}
|
|
|
|
void
|
|
base_exit (void)
|
|
{
|
|
swapping_free ();
|
|
paint_funcs_free ();
|
|
tile_swap_exit ();
|
|
tile_cache_exit ();
|
|
|
|
g_signal_handlers_disconnect_by_func (base_config,
|
|
base_tile_cache_size_notify,
|
|
NULL);
|
|
|
|
base_config = NULL;
|
|
}
|
|
|
|
|
|
/* private functions */
|
|
|
|
static void
|
|
base_toast_old_temp_files (GimpBaseConfig *config)
|
|
{
|
|
GDir *dir = NULL;
|
|
gchar *dirname;
|
|
const char *entry;
|
|
|
|
if (!config->swap_path)
|
|
return;
|
|
|
|
dirname = gimp_config_path_expand (config->swap_path, TRUE, NULL);
|
|
if (!dirname)
|
|
return;
|
|
|
|
dir = g_dir_open (dirname, 0, NULL);
|
|
|
|
if (!dir)
|
|
{
|
|
g_free (dirname);
|
|
return;
|
|
}
|
|
|
|
while ((entry = g_dir_read_name (dir)) != NULL)
|
|
if (! strncmp (entry, "gimpswap.", 9))
|
|
{
|
|
/* don't try to kill swap files of running processes
|
|
* yes, I know they might not all be gimp processes, and when you
|
|
* unlink, it's refcounted, but lets not confuse the user by
|
|
* "where did my disk space go?" cause the filename is gone
|
|
* if the kill succeeds, and there running process isn't gimp
|
|
* we'll probably get it the next time around
|
|
*/
|
|
|
|
gint pid = atoi (entry + 9);
|
|
|
|
/* On Windows, you can't remove open files anyhow,
|
|
* so no harm trying.
|
|
*/
|
|
#ifndef G_OS_WIN32
|
|
if (kill (pid, 0))
|
|
#endif
|
|
{
|
|
gchar *filename;
|
|
|
|
filename = g_build_filename (dirname, entry, NULL);
|
|
unlink (filename);
|
|
g_free (filename);
|
|
}
|
|
}
|
|
|
|
g_dir_close (dir);
|
|
|
|
g_free (dirname);
|
|
}
|
|
|
|
static void
|
|
base_tile_cache_size_notify (GObject *config,
|
|
GParamSpec *param_spec,
|
|
gpointer data)
|
|
{
|
|
tile_cache_set_size (GIMP_BASE_CONFIG (config)->tile_cache_size);
|
|
}
|