/* 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 #include #include #include #include "libgimpbase/gimpbase.h" #include "pdb-types.h" #include "core/gimp.h" #include "core/gimpcontext.h" #include "core/gimpprogress.h" #include "plug-in/plug-in-run.h" #include "internal_procs.h" #include "procedural_db.h" #include "gimp-intl.h" typedef struct _PDBData PDBData; struct _PDBData { gchar *identifier; gint32 bytes; guint8 *data; }; /* local function prototypes */ gchar * procedural_db_type_name (GimpPDBArgType type); /* public functions */ void procedural_db_init (Gimp *gimp) { g_return_if_fail (GIMP_IS_GIMP (gimp)); gimp->procedural_ht = g_hash_table_new (g_str_hash, g_str_equal); gimp->procedural_compat_ht = g_hash_table_new (g_str_hash, g_str_equal); gimp->procedural_db_data_list = NULL; } static void procedural_db_free_entry (gpointer key, gpointer value, gpointer user_data) { if (value) g_list_free (value); } void procedural_db_free (Gimp *gimp) { g_return_if_fail (GIMP_IS_GIMP (gimp)); if (gimp->procedural_ht) { g_hash_table_foreach (gimp->procedural_ht, procedural_db_free_entry, NULL); g_hash_table_destroy (gimp->procedural_ht); gimp->procedural_ht = NULL; } if (gimp->procedural_compat_ht) { g_hash_table_destroy (gimp->procedural_compat_ht); gimp->procedural_compat_ht = NULL; } procedural_db_free_data (gimp); } void procedural_db_init_procs (Gimp *gimp, GimpInitStatusFunc status_callback) { static const struct { const gchar *old_name; const gchar *new_name; } compat_procs[] = { { "gimp-blend", "gimp-edit-blend" }, { "gimp-brushes-list", "gimp-brushes-get-list" }, { "gimp-bucket-fill", "gimp-edit-bucket-fill" }, { "gimp-channel-delete", "gimp-drawable-delete" }, { "gimp-channel-get-name", "gimp-drawable-get-name" }, { "gimp-channel-get-tattoo", "gimp-drawable-get-tattoo" }, { "gimp-channel-get-visible", "gimp-drawable-get-visible" }, { "gimp-channel-set-name", "gimp-drawable-set-name" }, { "gimp-channel-set-tattoo", "gimp-drawable-set-tattoo" }, { "gimp-channel-set-visible", "gimp-drawable-set-visible" }, { "gimp-color-picker", "gimp-image-pick-color" }, { "gimp-convert-grayscale", "gimp-image-convert-grayscale" }, { "gimp-convert-indexed", "gimp-image-convert-indexed" }, { "gimp-convert-rgb", "gimp-image-convert-rgb" }, { "gimp-crop", "gimp-image-crop" }, { "gimp-drawable-bytes", "gimp-drawable-bpp" }, { "gimp-drawable-image", "gimp-drawable-get-image" }, { "gimp-image-active-drawable", "gimp-image-get-active-drawable" }, { "gimp-image-floating-selection", "gimp-image-get-floating-sel" }, { "gimp-layer-delete", "gimp-drawable-delete" }, { "gimp-layer-get-linked", "gimp-drawable-get-linked" }, { "gimp-layer-get-name", "gimp-drawable-get-name" }, { "gimp-layer-get-tattoo", "gimp-drawable-get-tattoo" }, { "gimp-layer-get-visible", "gimp-drawable-get-visible" }, { "gimp-layer-mask", "gimp-layer-get-mask" }, { "gimp-layer-set-linked", "gimp-drawable-set-linked" }, { "gimp-layer-set-name", "gimp-drawable-set-name" }, { "gimp-layer-set-tattoo", "gimp-drawable-set-tattoo" }, { "gimp-layer-set-visible", "gimp-drawable-set-visible" }, { "gimp-palette-refresh", "gimp-palettes-refresh" }, { "gimp-patterns-list", "gimp-patterns-get-list" }, { "gimp-temp-PDB-name", "gimp-procedural-db-temp-name" }, { "gimp-undo-push-group-end", "gimp-image-undo-group-end" }, { "gimp-undo-push-group-start", "gimp-image-undo-group-start" }, /* deprecations since 2.0 */ { "gimp-brushes-get-opacity", "gimp-context-get-opacity" }, { "gimp-brushes-get-paint-mode", "gimp-context-get-paint-mode" }, { "gimp-brushes-set-brush", "gimp-context-set-brush" }, { "gimp-brushes-set-opacity", "gimp-context-set-opacity" }, { "gimp-brushes-set-paint-mode", "gimp-context-set-paint-mode" }, { "gimp-channel-ops-duplicate", "gimp-image-duplicate" }, { "gimp-channel-ops-offset", "gimp-drawable-offset" }, { "gimp-gradients-get-active", "gimp-context-get-gradient" }, { "gimp-gradients-get-gradient", "gimp-context-get-gradient" }, { "gimp-gradients-set-active", "gimp-context-set-gradient" }, { "gimp-gradients-set-gradient", "gimp-context-set-gradient" }, { "gimp-image-get-cmap", "gimp-image-get-colormap" }, { "gimp-image-set-cmap", "gimp-image-set-colormap" }, { "gimp-palette-get-background", "gimp-context-get-background" }, { "gimp-palette-get-foreground", "gimp-context-get-foreground" }, { "gimp-palette-set-background", "gimp-context-set-background" }, { "gimp-palette-set-default-colors", "gimp-context-set-default-colors" }, { "gimp-palette-set-foreground", "gimp-context-set-foreground" }, { "gimp-palette-swap-colors", "gimp-context-swap-colors" }, { "gimp-palettes-set-palette", "gimp-context-set-palette" }, { "gimp-patterns-set-pattern", "gimp-context-set-pattern" }, { "gimp-selection-clear", "gimp-selection-none" }, /* deprecations since 2.2 */ { "gimp-layer-get-preserve-trans", "gimp-drawable-get-lock-alpha" }, { "gimp-layer-set-preserve-trans", "gimp-drawable-set-lock-alpha" } }; g_return_if_fail (GIMP_IS_GIMP (gimp)); g_return_if_fail (status_callback != NULL); internal_procs_init (gimp, status_callback); if (gimp->pdb_compat_mode != GIMP_PDB_COMPAT_OFF) { gint i; for (i = 0; i < G_N_ELEMENTS (compat_procs); i++) g_hash_table_insert (gimp->procedural_compat_ht, (gpointer) compat_procs[i].old_name, (gpointer) compat_procs[i].new_name); } } void procedural_db_register (Gimp *gimp, ProcRecord *procedure) { GList *list; g_return_if_fail (GIMP_IS_GIMP (gimp)); g_return_if_fail (procedure != NULL); list = g_hash_table_lookup (gimp->procedural_ht, procedure->name); list = g_list_prepend (list, (gpointer) procedure); g_hash_table_insert (gimp->procedural_ht, (gpointer) procedure->name, (gpointer) list); } void procedural_db_unregister (Gimp *gimp, const gchar *name) { GList *list; g_return_if_fail (GIMP_IS_GIMP (gimp)); g_return_if_fail (name != NULL); list = g_hash_table_lookup (gimp->procedural_ht, name); if (list) { list = g_list_remove (list, list->data); if (list) g_hash_table_insert (gimp->procedural_ht, (gpointer) name, list); else g_hash_table_remove (gimp->procedural_ht, name); } } ProcRecord * procedural_db_lookup (Gimp *gimp, const gchar *name) { GList *list; g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL); g_return_val_if_fail (name != NULL, NULL); list = g_hash_table_lookup (gimp->procedural_ht, name); if (list) return (ProcRecord *) list->data; else return NULL; } Argument * procedural_db_execute (Gimp *gimp, GimpContext *context, GimpProgress *progress, const gchar *name, Argument *args) { Argument *return_args = NULL; GList *list; g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL); g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL); g_return_val_if_fail (progress == NULL || GIMP_IS_PROGRESS (progress), NULL); g_return_val_if_fail (name != NULL, NULL); list = g_hash_table_lookup (gimp->procedural_ht, name); if (list == NULL) { g_message (_("PDB calling error:\nprocedure '%s' not found"), name); return_args = g_new (Argument, 1); return_args->arg_type = GIMP_PDB_STATUS; return_args->value.pdb_int = GIMP_PDB_CALLING_ERROR; return return_args; } for (; list; list = g_list_next (list)) { ProcRecord *procedure = list->data; gint i; g_return_val_if_fail (procedure != NULL, NULL); /* check the arguments */ for (i = 0; i < procedure->num_args; i++) { if (args[i].arg_type != procedure->args[i].arg_type) { gchar *expected; gchar *got; expected = procedural_db_type_name (procedure->args[i].arg_type); got = procedural_db_type_name (args[i].arg_type); g_message (_("PDB calling error for procedure '%s':\n" "Argument #%d type mismatch (expected %s, got %s)"), procedure->name, i + 1, expected, got); g_free (expected); g_free (got); return_args = g_new (Argument, 1); return_args->arg_type = GIMP_PDB_STATUS; return_args->value.pdb_int = GIMP_PDB_CALLING_ERROR; return return_args; } } /* call the procedure */ switch (procedure->proc_type) { case GIMP_INTERNAL: return_args = (* procedure->exec_method.internal.marshal_func) (gimp, context, progress, args); break; case GIMP_PLUGIN: case GIMP_EXTENSION: case GIMP_TEMPORARY: return_args = plug_in_run (gimp, context, progress, procedure, args, procedure->num_args, TRUE, FALSE, -1); /* If there are no return arguments, assume * an execution error and fall through. */ if (return_args) break; default: return_args = g_new (Argument, 1); return_args->arg_type = GIMP_PDB_STATUS; return_args->value.pdb_int = GIMP_PDB_EXECUTION_ERROR; return return_args; } if (return_args[0].value.pdb_int != GIMP_PDB_SUCCESS && return_args[0].value.pdb_int != GIMP_PDB_PASS_THROUGH && procedure->num_values > 0) { memset (&return_args[1], 0, sizeof (Argument) * procedure->num_values); } if (return_args[0].value.pdb_int == GIMP_PDB_PASS_THROUGH) { /* If the return value is GIMP_PDB_PASS_THROUGH and there is * a next procedure in the list, destroy the return values * and run the next procedure. */ if (g_list_next (list)) procedural_db_destroy_args (return_args, procedure->num_values); } else { /* No GIMP_PDB_PASS_THROUGH, break out of the list of * procedures and return the current return values. */ break; } } return return_args; } Argument * procedural_db_run_proc (Gimp *gimp, GimpContext *context, GimpProgress *progress, const gchar *name, gint *nreturn_vals, ...) { ProcRecord *proc; Argument *params; Argument *return_vals; va_list args; gint i; g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL); g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL); g_return_val_if_fail (progress == NULL || GIMP_IS_PROGRESS (progress), NULL); g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (nreturn_vals != NULL, NULL); proc = procedural_db_lookup (gimp, name); if (proc == NULL) { *nreturn_vals = 1; return_vals = g_new (Argument, 1); return_vals->arg_type = GIMP_PDB_STATUS; return_vals->value.pdb_int = GIMP_PDB_CALLING_ERROR; return return_vals; } /* allocate the parameter array */ params = g_new (Argument, proc->num_args); va_start (args, nreturn_vals); for (i = 0; i < proc->num_args; i++) { params[i].arg_type = va_arg (args, GimpPDBArgType); if (proc->args[i].arg_type != params[i].arg_type) { gchar *expected; gchar *got; expected = procedural_db_type_name (proc->args[i].arg_type); got = procedural_db_type_name (params[i].arg_type); g_free (params); g_message (_("PDB calling error for procedure '%s':\n" "Argument #%d type mismatch (expected %s, got %s)"), proc->name, i + 1, expected, got); g_free (expected); g_free (got); *nreturn_vals = 0; return NULL; } switch (proc->args[i].arg_type) { case GIMP_PDB_INT32: case GIMP_PDB_INT16: case GIMP_PDB_INT8: case GIMP_PDB_DISPLAY: params[i].value.pdb_int = (gint32) va_arg (args, gint); break; case GIMP_PDB_FLOAT: params[i].value.pdb_float = (gdouble) va_arg (args, gdouble); break; case GIMP_PDB_STRING: case GIMP_PDB_INT32ARRAY: case GIMP_PDB_INT16ARRAY: case GIMP_PDB_INT8ARRAY: case GIMP_PDB_FLOATARRAY: case GIMP_PDB_STRINGARRAY: params[i].value.pdb_pointer = va_arg (args, gpointer); break; case GIMP_PDB_COLOR: params[i].value.pdb_color = va_arg (args, GimpRGB); break; case GIMP_PDB_REGION: break; case GIMP_PDB_IMAGE: case GIMP_PDB_LAYER: case GIMP_PDB_CHANNEL: case GIMP_PDB_DRAWABLE: case GIMP_PDB_SELECTION: case GIMP_PDB_BOUNDARY: case GIMP_PDB_PATH: params[i].value.pdb_int = (gint32) va_arg (args, gint); break; case GIMP_PDB_PARASITE: params[i].value.pdb_pointer = va_arg (args, gpointer); break; case GIMP_PDB_STATUS: params[i].value.pdb_int = (gint32) va_arg (args, gint); break; case GIMP_PDB_END: break; } } va_end (args); *nreturn_vals = proc->num_values; return_vals = procedural_db_execute (gimp, context, progress, name, params); g_free (params); return return_vals; } Argument * procedural_db_return_args (ProcRecord *procedure, gboolean success) { Argument *return_args; gint i; g_return_val_if_fail (procedure != NULL, NULL); return_args = g_new0 (Argument, procedure->num_values + 1); return_args[0].arg_type = GIMP_PDB_STATUS; if (success) return_args[0].value.pdb_int = GIMP_PDB_SUCCESS; else return_args[0].value.pdb_int = GIMP_PDB_EXECUTION_ERROR; /* Set the arg types for the return values */ for (i = 0; i < procedure->num_values; i++) return_args[i + 1].arg_type = procedure->values[i].arg_type; return return_args; } void procedural_db_destroy_args (Argument *args, gint nargs) { gint i; if (! args) return; for (i = 0; i < nargs; i++) { switch (args[i].arg_type) { case GIMP_PDB_INT32: case GIMP_PDB_INT16: case GIMP_PDB_INT8: case GIMP_PDB_FLOAT: break; case GIMP_PDB_STRING: case GIMP_PDB_INT32ARRAY: case GIMP_PDB_INT16ARRAY: case GIMP_PDB_INT8ARRAY: case GIMP_PDB_FLOATARRAY: g_free (args[i].value.pdb_pointer); break; case GIMP_PDB_STRINGARRAY: { gchar **stringarray; gint count; gint j; count = args[i - 1].value.pdb_int; stringarray = args[i].value.pdb_pointer; for (j = 0; j < count; j++) g_free (stringarray[j]); g_free (args[i].value.pdb_pointer); } break; case GIMP_PDB_COLOR: case GIMP_PDB_REGION: case GIMP_PDB_DISPLAY: case GIMP_PDB_IMAGE: case GIMP_PDB_LAYER: case GIMP_PDB_CHANNEL: case GIMP_PDB_DRAWABLE: case GIMP_PDB_SELECTION: case GIMP_PDB_BOUNDARY: case GIMP_PDB_PATH: break; case GIMP_PDB_PARASITE: gimp_parasite_free ((GimpParasite *) (args[i].value.pdb_pointer)); break; case GIMP_PDB_STATUS: case GIMP_PDB_END: break; } } g_free (args); } void procedural_db_free_data (Gimp *gimp) { g_return_if_fail (GIMP_IS_GIMP (gimp)); if (gimp->procedural_db_data_list) { GList *list; for (list = gimp->procedural_db_data_list; list; list = g_list_next (list)) { PDBData *data = list->data; g_free (data->identifier); g_free (data->data); g_free (data); } g_list_free (gimp->procedural_db_data_list); gimp->procedural_db_data_list = NULL; } } void procedural_db_set_data (Gimp *gimp, const gchar *identifier, gint32 bytes, const guint8 *data) { GList *list; PDBData *pdb_data; g_return_if_fail (GIMP_IS_GIMP (gimp)); g_return_if_fail (identifier != NULL); g_return_if_fail (bytes > 0); g_return_if_fail (data != NULL); for (list = gimp->procedural_db_data_list; list; list = g_list_next (list)) { pdb_data = (PDBData *) list->data; if (! strcmp (pdb_data->identifier, identifier)) break; } /* If there isn't already data with the specified identifier, create one */ if (list == NULL) { pdb_data = g_new0 (PDBData, 1); pdb_data->identifier = g_strdup (identifier); gimp->procedural_db_data_list = g_list_prepend (gimp->procedural_db_data_list, pdb_data); } else { g_free (pdb_data->data); } pdb_data->bytes = bytes; pdb_data->data = g_memdup (data, bytes); } const guint8 * procedural_db_get_data (Gimp *gimp, const gchar *identifier, gint32 *bytes) { GList *list; g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL); g_return_val_if_fail (identifier != NULL, NULL); g_return_val_if_fail (bytes != NULL, NULL); *bytes = 0; for (list = gimp->procedural_db_data_list; list; list = g_list_next (list)) { PDBData *pdb_data = list->data; if (! strcmp (pdb_data->identifier, identifier)) { *bytes = pdb_data->bytes; return pdb_data->data; } } return NULL; } /* private functions */ gchar * procedural_db_type_name (GimpPDBArgType type) { const gchar *name; if (! gimp_enum_get_value (GIMP_TYPE_PDB_ARG_TYPE, type, &name, NULL, NULL, NULL)) { return g_strdup_printf ("(PDB type %d unknown)", type); } return g_strdup (name); }