[gimp] plug-ins: port file-csource to GimpPlugIn and libgimp objects



commit 037e8a6e498d26b0887050678c120d67e363af87
Author: Michael Natterer <mitch gimp org>
Date:   Sat Aug 24 13:33:54 2019 +0200

    plug-ins: port file-csource to GimpPlugIn and libgimp objects

 plug-ins/common/Makefile.am    |   2 -
 plug-ins/common/file-csource.c | 297 ++++++++++++++++++++++-------------------
 plug-ins/common/plugin-defs.pl |   2 +-
 3 files changed, 161 insertions(+), 140 deletions(-)
---
diff --git a/plug-ins/common/Makefile.am b/plug-ins/common/Makefile.am
index badc1f2ce6..576b3556c6 100644
--- a/plug-ins/common/Makefile.am
+++ b/plug-ins/common/Makefile.am
@@ -608,8 +608,6 @@ file_compressor_LDADD = \
        $(INTLLIBS)             \
        $(file_compressor_RC)
 
-file_csource_CPPFLAGS = $(AM_CPPFLAGS) -DGIMP_DEPRECATED_REPLACE_NEW_API
-
 file_csource_SOURCES = \
        file-csource.c
 
diff --git a/plug-ins/common/file-csource.c b/plug-ins/common/file-csource.c
index a9a9413e1b..38537d7c1d 100644
--- a/plug-ins/common/file-csource.c
+++ b/plug-ins/common/file-csource.c
@@ -50,29 +50,50 @@ typedef struct
 } Config;
 
 
-static void     query           (void);
-static void     run             (const gchar      *name,
-                                 gint              nparams,
-                                 const GimpParam  *param,
-                                 gint             *nreturn_vals,
-                                 GimpParam       **return_vals);
-
-static gboolean save_image      (GFile            *file,
-                                 Config           *config,
-                                 gint32            image_ID,
-                                 gint32            drawable_ID,
-                                 GError          **error);
-static gboolean run_save_dialog (Config           *config);
-
-
-const GimpPlugInInfo PLUG_IN_INFO =
+typedef struct _Csource      Csource;
+typedef struct _CsourceClass CsourceClass;
+
+struct _Csource
+{
+  GimpPlugIn      parent_instance;
+};
+
+struct _CsourceClass
 {
-  NULL,  /* init_proc  */
-  NULL,  /* quit_proc  */
-  query, /* query_proc */
-  run,   /* run_proc   */
+  GimpPlugInClass parent_class;
 };
 
+
+#define CSOURCE_TYPE  (csource_get_type ())
+#define CSOURCE (obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CSOURCE_TYPE, Csource))
+
+GType                   csource_get_type         (void) G_GNUC_CONST;
+
+static GList          * csource_query_procedures (GimpPlugIn           *plug_in);
+static GimpProcedure  * csource_create_procedure (GimpPlugIn           *plug_in,
+                                                  const gchar          *name);
+
+static GimpValueArray * csource_save             (GimpProcedure        *procedure,
+                                                  GimpRunMode           run_mode,
+                                                  GimpImage            *image,
+                                                  GimpDrawable         *drawable,
+                                                  GFile                *file,
+                                                  const GimpValueArray *args,
+                                                  gpointer              run_data);
+
+static gboolean         save_image               (GFile                *file,
+                                                  Config               *config,
+                                                  GimpImage            *image,
+                                                  GimpDrawable         *drawable,
+                                                  GError              **error);
+static gboolean         save_dialog              (Config               *config);
+
+
+G_DEFINE_TYPE (Csource, csource, GIMP_TYPE_PLUG_IN)
+
+GIMP_MAIN (CSOURCE_TYPE)
+
+
 static Config config =
 {
   "gimp_image", /* prefixed_name */
@@ -87,148 +108,150 @@ static Config config =
 };
 
 
-MAIN ()
+static void
+csource_class_init (CsourceClass *klass)
+{
+  GimpPlugInClass *plug_in_class = GIMP_PLUG_IN_CLASS (klass);
 
+  plug_in_class->query_procedures = csource_query_procedures;
+  plug_in_class->create_procedure = csource_create_procedure;
+}
 
 static void
-query (void)
+csource_init (Csource *csource)
 {
-  static const GimpParamDef save_args[] =
-  {
-    { GIMP_PDB_INT32,    "run-mode",     "The run mode { RUN-INTERACTIVE (0) }" },
-    { GIMP_PDB_IMAGE,    "image",        "Input image" },
-    { GIMP_PDB_DRAWABLE, "drawable",     "Drawable to save" },
-    { GIMP_PDB_STRING,   "filename",     "The name of the file to save the image in" },
-    { GIMP_PDB_STRING,   "raw-filename", "The name of the file to save the image in" }
-  };
-
-  gimp_install_procedure (SAVE_PROC,
-                          "Dump image data in RGB(A) format for C source",
-                          "CSource cannot be run non-interactively.",
-                          "Tim Janik",
-                          "Tim Janik",
-                          "1999",
-                          N_("C source code"),
-                          "*",
-                          GIMP_PLUGIN,
-                          G_N_ELEMENTS (save_args), 0,
-                          save_args, NULL);
-
-  gimp_register_file_handler_mime (SAVE_PROC, "text/x-csrc");
-  gimp_register_file_handler_remote (SAVE_PROC);
-  gimp_register_save_handler (SAVE_PROC, "c", "");
 }
 
-static void
-run (const gchar      *name,
-     gint              nparams,
-     const GimpParam  *param,
-     gint             *nreturn_vals,
-     GimpParam       **return_vals)
+static GList *
+csource_query_procedures (GimpPlugIn *plug_in)
 {
-  static GimpParam   values[2];
-  GimpRunMode        run_mode;
-  GimpPDBStatusType  status = GIMP_PDB_SUCCESS;
-  GimpExportReturn   export = GIMP_EXPORT_CANCEL;
-  GError            *error  = NULL;
+  return  g_list_append (NULL, g_strdup (SAVE_PROC));
+}
 
-  INIT_I18N ();
-  gegl_init (NULL, NULL);
+static GimpProcedure *
+csource_create_procedure (GimpPlugIn  *plug_in,
+                          const gchar *name)
+{
+  GimpProcedure *procedure = NULL;
+
+  if (! strcmp (name, SAVE_PROC))
+    {
+      procedure = gimp_save_procedure_new (plug_in, name, GIMP_PLUGIN,
+                                           csource_save, NULL, NULL);
+
+      gimp_procedure_set_image_types (procedure, "*");
+
+      gimp_procedure_set_menu_label (procedure, N_("C source code"));
+
+      gimp_procedure_set_documentation (procedure,
+                                        "Dump image data in RGB(A) format "
+                                        "for C source",
+                                        "CSource cannot be run non-interactively.",
+                                        name);
+      gimp_procedure_set_attribution (procedure,
+                                      "Tim Janik",
+                                      "Tim Janik",
+                                      "1999");
+
+      gimp_file_procedure_set_handles_remote (GIMP_FILE_PROCEDURE (procedure),
+                                              TRUE);
+      gimp_file_procedure_set_mime_types (GIMP_FILE_PROCEDURE (procedure),
+                                          "image/x-csrc");
+      gimp_file_procedure_set_extensions (GIMP_FILE_PROCEDURE (procedure),
+                                          "c");
+    }
 
-  run_mode = param[0].data.d_int32;
+  return procedure;
+}
 
-  *nreturn_vals = 1;
-  *return_vals  = values;
+static GimpValueArray *
+csource_save (GimpProcedure        *procedure,
+              GimpRunMode           run_mode,
+              GimpImage            *image,
+              GimpDrawable         *drawable,
+              GFile                *file,
+              const GimpValueArray *args,
+              gpointer              run_data)
+{
+  GimpPDBStatusType  status       = GIMP_PDB_SUCCESS;
+  GimpExportReturn   export       = GIMP_EXPORT_CANCEL;
+  GimpParasite      *parasite;
+  gchar             *x;
+  GError            *error        = NULL;
 
-  values[0].type          = GIMP_PDB_STATUS;
-  values[0].data.d_status = GIMP_PDB_EXECUTION_ERROR;
+  INIT_I18N ();
+  gegl_init (NULL, NULL);
 
-  if (run_mode == GIMP_RUN_INTERACTIVE &&
-      strcmp (name, SAVE_PROC) == 0)
-    {
-      gint32         image_ID    = param[1].data.d_int32;
-      gint32         drawable_ID = param[2].data.d_int32;
-      GimpParasite  *parasite;
-      gchar         *x;
+  if (run_mode != GIMP_RUN_INTERACTIVE)
+    return gimp_procedure_new_return_values (procedure,
+                                             GIMP_PDB_CALLING_ERROR,
+                                             NULL);
 
-      gimp_get_data (SAVE_PROC, &config);
+  gimp_get_data (SAVE_PROC, &config);
 
-      config.prefixed_name = "gimp_image";
-      config.comment       = NULL;
-      config.alpha         = gimp_drawable_has_alpha (drawable_ID);
+  config.prefixed_name = "gimp_image";
+  config.comment       = NULL;
+  config.alpha         = gimp_drawable_has_alpha (drawable);
 
-      parasite = gimp_image_get_parasite (image_ID, "gimp-comment");
-      if (parasite)
-        {
-          config.comment = g_strndup (gimp_parasite_data (parasite),
-                                      gimp_parasite_data_size (parasite));
-          gimp_parasite_free (parasite);
-        }
-      x = config.comment;
+  parasite = gimp_image_get_parasite (image, "gimp-comment");
+  if (parasite)
+    {
+      config.comment = g_strndup (gimp_parasite_data (parasite),
+                                  gimp_parasite_data_size (parasite));
+      gimp_parasite_free (parasite);
+    }
+  x = config.comment;
 
-      gimp_ui_init (PLUG_IN_BINARY, FALSE);
+  gimp_ui_init (PLUG_IN_BINARY, FALSE);
 
-      export = gimp_export_image (&image_ID, &drawable_ID, "C Source",
-                                  GIMP_EXPORT_CAN_HANDLE_RGB |
-                                  GIMP_EXPORT_CAN_HANDLE_ALPHA);
+  export = gimp_export_image (&image, &drawable, "C Source",
+                              GIMP_EXPORT_CAN_HANDLE_RGB |
+                              GIMP_EXPORT_CAN_HANDLE_ALPHA);
 
-      if (export == GIMP_EXPORT_CANCEL)
-        {
-          values[0].data.d_status = GIMP_PDB_CANCEL;
-          return;
-        }
+  if (export == GIMP_EXPORT_CANCEL)
+    return gimp_procedure_new_return_values (procedure,
+                                             GIMP_PDB_CANCEL,
+                                             NULL);
 
-      if (run_save_dialog (&config))
+  if (save_dialog (&config))
+    {
+      if (x != config.comment &&
+          ! (x && config.comment && strcmp (x, config.comment) == 0))
         {
-          if (x != config.comment &&
-              !(x && config.comment && strcmp (x, config.comment) == 0))
-            {
-              if (!config.comment || !config.comment[0])
-                {
-                  gimp_image_detach_parasite (image_ID, "gimp-comment");
-                }
-              else
-                {
-                  parasite = gimp_parasite_new ("gimp-comment",
-                                                GIMP_PARASITE_PERSISTENT,
-                                                strlen (config.comment) + 1,
-                                                config.comment);
-                  gimp_image_attach_parasite (image_ID, parasite);
-                  gimp_parasite_free (parasite);
-                }
-            }
-
-          if (! save_image (g_file_new_for_uri (param[3].data.d_string),
-                            &config, image_ID, drawable_ID, &error))
+          if (! config.comment || ! config.comment[0])
             {
-              status = GIMP_PDB_EXECUTION_ERROR;
-
-              if (error)
-                {
-                  *nreturn_vals = 2;
-                  values[1].type          = GIMP_PDB_STRING;
-                  values[1].data.d_string = error->message;
-                }
+              gimp_image_detach_parasite (image, "gimp-comment");
             }
           else
             {
-              gimp_set_data (SAVE_PROC, &config, sizeof (config));
+              parasite = gimp_parasite_new ("gimp-comment",
+                                            GIMP_PARASITE_PERSISTENT,
+                                            strlen (config.comment) + 1,
+                                            config.comment);
+              gimp_image_attach_parasite (image, parasite);
+              gimp_parasite_free (parasite);
             }
         }
+
+      if (! save_image (file, &config, image, drawable,
+                        &error))
+        {
+          status = GIMP_PDB_EXECUTION_ERROR;
+        }
       else
         {
-          status = GIMP_PDB_CANCEL;
+          gimp_set_data (SAVE_PROC, &config, sizeof (config));
         }
-
-      if (export == GIMP_EXPORT_EXPORT)
-        gimp_image_delete (image_ID);
     }
   else
     {
-      status = GIMP_PDB_CALLING_ERROR;
+      status = GIMP_PDB_CANCEL;
     }
 
-  values[0].data.d_status = status;
+  if (export == GIMP_EXPORT_EXPORT)
+    gimp_image_delete (image);
+
+  return gimp_procedure_new_return_values (procedure, status, error);
 }
 
 static gboolean
@@ -447,16 +470,16 @@ save_uchar (GOutputStream  *output,
 }
 
 static gboolean
-save_image (GFile   *file,
-            Config  *config,
-            gint32   image_ID,
-            gint32   drawable_ID,
-            GError **error)
+save_image (GFile         *file,
+            Config        *config,
+            GimpImage     *image,
+            GimpDrawable  *drawable,
+            GError        **error)
 {
   GOutputStream *output;
   GeglBuffer    *buffer;
   GCancellable  *cancellable;
-  GimpImageType  drawable_type = gimp_drawable_type (drawable_ID);
+  GimpImageType  drawable_type = gimp_drawable_type (drawable);
   gchar         *s_uint_8, *s_uint, *s_char, *s_null;
   guint          c;
   gchar         *macro_name;
@@ -486,12 +509,12 @@ save_image (GFile   *file,
       return FALSE;
     }
 
-  buffer = gimp_drawable_get_buffer (drawable_ID);
+  buffer = gimp_drawable_get_buffer (drawable);
 
   width  = gegl_buffer_get_width  (buffer);
   height = gegl_buffer_get_height (buffer);
 
-  if (gimp_drawable_has_alpha (drawable_ID))
+  if (gimp_drawable_has_alpha (drawable))
     drawable_format = babl_format ("R'G'B'A u8");
   else
     drawable_format = babl_format ("R'G'B' u8");
@@ -883,7 +906,7 @@ rgb565_toggle_button_update (GtkWidget *toggle,
 }
 
 static gboolean
-run_save_dialog (Config *config)
+save_dialog (Config *config)
 {
   GtkWidget     *dialog;
   GtkWidget     *vbox;
diff --git a/plug-ins/common/plugin-defs.pl b/plug-ins/common/plugin-defs.pl
index 0d6ea4d7df..6a1976e055 100644
--- a/plug-ins/common/plugin-defs.pl
+++ b/plug-ins/common/plugin-defs.pl
@@ -18,7 +18,7 @@
     'destripe' => { ui => 1, gegl => 1 },
     'file-aa' => { ui => 1, gegl => 1, optional => 1, libs => 'AA_LIBS', old_api => 1 },
     'file-cel' => { ui => 1, gegl => 1, old_api => 1 },
-    'file-csource' => { ui => 1, gegl => 1, old_api => 1 },
+    'file-csource' => { ui => 1, gegl => 1 },
     'file-compressor' => { gio => 1, libdep => 'Z:BZIP2:LZMA', cflags => 'LZMA_CFLAGS' },
     'file-desktop-link' => { gio => 1 },
     'file-dicom' => { ui => 1, gegl => 1, cflags => '-fno-strict-aliasing', old_api => 1 },


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]