/* PIKA - Photo and Image Kooker Application * a rebranding of The GNU Image Manipulation Program (created with heckimp) * A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio * * Original copyright, applying to most contents (license remains unchanged): * Copyright (C) 1995 Spencer Kimball and Peter Mattis * * PikaGeglConfig class * Copyright (C) 2001 Sven Neumann * * 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 3 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, see . */ #include "config.h" #include #include #include "libpikabase/pikabase.h" #include "libpikaconfig/pikaconfig.h" #include "core/core-types.h" /* eek */ #include "pikarc-blurbs.h" #include "pikageglconfig.h" #include "core/pika-utils.h" #include "pika-debug.h" #include "pika-intl.h" #define PIKA_DEFAULT_SWAP_COMPRESSION "fast" #define PIKA_MAX_MEM_PROCESS (MIN (G_MAXSIZE, PIKA_MAX_MEMSIZE)) enum { PROP_0, PROP_TEMP_PATH, PROP_SWAP_PATH, PROP_SWAP_COMPRESSION, PROP_NUM_PROCESSORS, PROP_TILE_CACHE_SIZE, PROP_USE_OPENCL, /* ignored, only for backward compatibility: */ PROP_STINGY_MEMORY_USE }; static void pika_gegl_config_constructed (GObject *object); static void pika_gegl_config_finalize (GObject *object); static void pika_gegl_config_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec); static void pika_gegl_config_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec); G_DEFINE_TYPE (PikaGeglConfig, pika_gegl_config, G_TYPE_OBJECT) #define parent_class pika_gegl_config_parent_class static void pika_gegl_config_class_init (PikaGeglConfigClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); gint n_threads; gint max_n_threads; guint64 memory_size; parent_class = g_type_class_peek_parent (klass); object_class->constructed = pika_gegl_config_constructed; object_class->finalize = pika_gegl_config_finalize; object_class->set_property = pika_gegl_config_set_property; object_class->get_property = pika_gegl_config_get_property; PIKA_CONFIG_PROP_PATH (object_class, PROP_TEMP_PATH, "temp-path", "Temp path", TEMP_PATH_BLURB, PIKA_CONFIG_PATH_DIR, "${pika_temp_dir}", PIKA_PARAM_STATIC_STRINGS | PIKA_CONFIG_PARAM_RESTART); PIKA_CONFIG_PROP_PATH (object_class, PROP_SWAP_PATH, "swap-path", "Swap path", SWAP_PATH_BLURB, PIKA_CONFIG_PATH_DIR, "${pika_cache_dir}", PIKA_PARAM_STATIC_STRINGS | PIKA_CONFIG_PARAM_RESTART); PIKA_CONFIG_PROP_STRING (object_class, PROP_SWAP_COMPRESSION, "swap-compression", "Swap compression", SWAP_COMPRESSION_BLURB, PIKA_DEFAULT_SWAP_COMPRESSION, PIKA_PARAM_STATIC_STRINGS); n_threads = g_get_num_processors (); max_n_threads = G_PARAM_SPEC_INT (g_object_class_find_property (G_OBJECT_GET_CLASS (gegl_config ()), "threads"))->maximum; n_threads = MIN (n_threads, max_n_threads); PIKA_CONFIG_PROP_INT (object_class, PROP_NUM_PROCESSORS, "num-processors", "Number of threads to use", NUM_PROCESSORS_BLURB, 1, max_n_threads, n_threads, PIKA_PARAM_STATIC_STRINGS); memory_size = pika_get_physical_memory_size (); /* limit to the amount one process can handle */ memory_size = MIN (PIKA_MAX_MEM_PROCESS, memory_size); if (memory_size > 0) memory_size = memory_size / 2; /* half the memory */ else memory_size = 1 << 30; /* 1GB */ PIKA_CONFIG_PROP_MEMSIZE (object_class, PROP_TILE_CACHE_SIZE, "tile-cache-size", "Tile cache size", TILE_CACHE_SIZE_BLURB, 0, PIKA_MAX_MEM_PROCESS, memory_size, PIKA_PARAM_STATIC_STRINGS | PIKA_CONFIG_PARAM_CONFIRM); PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_USE_OPENCL, "use-opencl", "Use OpenCL", USE_OPENCL_BLURB, FALSE, PIKA_PARAM_STATIC_STRINGS); /* only for backward compatibility: */ PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_STINGY_MEMORY_USE, "stingy-memory-use", NULL, NULL, FALSE, PIKA_CONFIG_PARAM_IGNORE); } static void pika_gegl_config_init (PikaGeglConfig *config) { } static void pika_gegl_config_constructed (GObject *object) { G_OBJECT_CLASS (parent_class)->constructed (object); pika_debug_add_instance (object, G_OBJECT_GET_CLASS (object)); } static void pika_gegl_config_finalize (GObject *object) { PikaGeglConfig *gegl_config = PIKA_GEGL_CONFIG (object); g_free (gegl_config->temp_path); g_free (gegl_config->swap_path); g_free (gegl_config->swap_compression); pika_debug_remove_instance (object); G_OBJECT_CLASS (parent_class)->finalize (object); } static void pika_gegl_config_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { PikaGeglConfig *gegl_config = PIKA_GEGL_CONFIG (object); switch (property_id) { case PROP_TEMP_PATH: g_free (gegl_config->temp_path); gegl_config->temp_path = g_value_dup_string (value); break; case PROP_SWAP_PATH: g_free (gegl_config->swap_path); gegl_config->swap_path = g_value_dup_string (value); break; case PROP_SWAP_COMPRESSION: g_free (gegl_config->swap_compression); gegl_config->swap_compression = g_value_dup_string (value); break; case PROP_NUM_PROCESSORS: gegl_config->num_processors = g_value_get_int (value); break; case PROP_TILE_CACHE_SIZE: gegl_config->tile_cache_size = g_value_get_uint64 (value); break; case PROP_USE_OPENCL: gegl_config->use_opencl = g_value_get_boolean (value); break; case PROP_STINGY_MEMORY_USE: /* ignored */ break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); break; } } static void pika_gegl_config_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { PikaGeglConfig *gegl_config = PIKA_GEGL_CONFIG (object); switch (property_id) { case PROP_TEMP_PATH: g_value_set_string (value, gegl_config->temp_path); break; case PROP_SWAP_PATH: g_value_set_string (value, gegl_config->swap_path); break; case PROP_SWAP_COMPRESSION: g_value_set_string (value, gegl_config->swap_compression); break; case PROP_NUM_PROCESSORS: g_value_set_int (value, gegl_config->num_processors); break; case PROP_TILE_CACHE_SIZE: g_value_set_uint64 (value, gegl_config->tile_cache_size); break; case PROP_USE_OPENCL: g_value_set_boolean (value, gegl_config->use_opencl); break; case PROP_STINGY_MEMORY_USE: /* ignored */ break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); break; } }