Blame operations/common/gegl-buffer-load-op.c

Packit Service 2781ba
/* This file is an image processing operation for GEGL
Packit Service 2781ba
 *
Packit Service 2781ba
 * GEGL is free software; you can redistribute it and/or
Packit Service 2781ba
 * modify it under the terms of the GNU Lesser General Public
Packit Service 2781ba
 * License as published by the Free Software Foundation; either
Packit Service 2781ba
 * version 3 of the License, or (at your option) any later version.
Packit Service 2781ba
 *
Packit Service 2781ba
 * GEGL is distributed in the hope that it will be useful,
Packit Service 2781ba
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 2781ba
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 2781ba
 * Lesser General Public License for more details.
Packit Service 2781ba
 *
Packit Service 2781ba
 * You should have received a copy of the GNU Lesser General Public
Packit Service 2781ba
 * License along with GEGL; if not, see <http://www.gnu.org/licenses/>.
Packit Service 2781ba
 *
Packit Service 2781ba
 * Copyright 2010 Martin Nordholts <martinn@src.gnome.org>
Packit Service 2781ba
 */
Packit Service 2781ba
Packit Service 2781ba
#include "config.h"
Packit Service 2781ba
#include <glib/gi18n-lib.h>
Packit Service 2781ba
Packit Service 2781ba
#ifdef GEGL_CHANT_PROPERTIES
Packit Service 2781ba
Packit Service 2781ba
gegl_chant_file_path (path, _("File"), "/tmp/gegl-buffer.gegl", _("Path of GeglBuffer file to load."))
Packit Service 2781ba
Packit Service 2781ba
#else
Packit Service 2781ba
Packit Service 2781ba
#define GEGL_CHANT_TYPE_SOURCE
Packit Service 2781ba
#define GEGL_CHANT_C_FILE       "gegl-buffer-load-op.c"
Packit Service 2781ba
Packit Service 2781ba
#include "gegl-chant.h"
Packit Service 2781ba
Packit Service 2781ba
Packit Service 2781ba
static void
Packit Service 2781ba
gegl_buffer_load_op_ensure_buffer (GeglChantO *o)
Packit Service 2781ba
{
Packit Service 2781ba
  if (!o->chant_data)
Packit Service 2781ba
    o->chant_data = gegl_buffer_load (o->path);
Packit Service 2781ba
}
Packit Service 2781ba
Packit Service 2781ba
static GeglRectangle
Packit Service 2781ba
gegl_buffer_load_op_get_bounding_box (GeglOperation *operation)
Packit Service 2781ba
{
Packit Service 2781ba
  GeglRectangle  result = { 0, 0, 0, 0 };
Packit Service 2781ba
  GeglChantO    *o      = GEGL_CHANT_PROPERTIES (operation);
Packit Service 2781ba
Packit Service 2781ba
  gegl_buffer_load_op_ensure_buffer (o);
Packit Service 2781ba
Packit Service 2781ba
  if (o->chant_data)
Packit Service 2781ba
    {
Packit Service 2781ba
      result.width  = gegl_buffer_get_width  (GEGL_BUFFER (o->chant_data));
Packit Service 2781ba
      result.height = gegl_buffer_get_height (GEGL_BUFFER (o->chant_data));
Packit Service 2781ba
    }
Packit Service 2781ba
Packit Service 2781ba
  return result;
Packit Service 2781ba
}
Packit Service 2781ba
Packit Service 2781ba
static gboolean
Packit Service 2781ba
gegl_buffer_load_op_process (GeglOperation        *operation,
Packit Service 2781ba
                             GeglOperationContext *context,
Packit Service 2781ba
                             const gchar          *output_pad,
Packit Service 2781ba
                             const GeglRectangle  *result,
Packit Service 2781ba
                             gint                  level)
Packit Service 2781ba
{
Packit Service 2781ba
  GeglChantO *o = GEGL_CHANT_PROPERTIES (operation);
Packit Service 2781ba
Packit Service 2781ba
  gegl_buffer_load_op_ensure_buffer (o);
Packit Service 2781ba
Packit Service 2781ba
  gegl_operation_context_take_object (context, output_pad, o->chant_data);
Packit Service 2781ba
  o->chant_data = NULL;
Packit Service 2781ba
Packit Service 2781ba
  return TRUE;
Packit Service 2781ba
}
Packit Service 2781ba
Packit Service 2781ba
static void
Packit Service 2781ba
gegl_chant_class_init (GeglChantClass *klass)
Packit Service 2781ba
{
Packit Service 2781ba
  GeglOperationClass *operation_class;
Packit Service 2781ba
Packit Service 2781ba
  operation_class = GEGL_OPERATION_CLASS (klass);
Packit Service 2781ba
Packit Service 2781ba
  operation_class->process          = gegl_buffer_load_op_process;
Packit Service 2781ba
  operation_class->get_bounding_box = gegl_buffer_load_op_get_bounding_box;
Packit Service 2781ba
Packit Service 2781ba
  gegl_operation_class_set_keys (operation_class,
Packit Service 2781ba
    "name"       , "gegl:gegl-buffer-load",
Packit Service 2781ba
    "categories" , "hidden",
Packit Service 2781ba
    "description", _("GeglBuffer file loader."),
Packit Service 2781ba
    NULL);
Packit Service 2781ba
Packit Service 2781ba
  gegl_extension_handler_register (".gegl", "gegl:gegl-buffer-load");
Packit Service 2781ba
}
Packit Service 2781ba
Packit Service 2781ba
#endif