]> Pileus Git - ~andy/gtk/blob - gdk-pixbuf/gdk-pixbuf-loader.c
Make the arguments to the write/load_increment operations const-correct.
[~andy/gtk] / gdk-pixbuf / gdk-pixbuf-loader.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
3 /* GdkPixbuf library - Main header file
4  *
5  * Copyright (C) 1999 The Free Software Foundation
6  *
7  * Authors: Mark Crichton <crichton@gimp.org>
8  *          Miguel de Icaza <miguel@gnu.org>
9  *          Federico Mena-Quintero <federico@gimp.org>
10  *          Jonathan Blandford <jrb@redhat.com>
11  *
12  * This library is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Library General Public
14  * License as published by the Free Software Foundation; either
15  * version 2 of the License, or (at your option) any later version.
16  *
17  * This library is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * Library General Public License for more details.
21  *
22  * You should have received a copy of the GNU Library General Public
23  * License along with this library; if not, write to the
24  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25  * Boston, MA 02111-1307, USA.
26  */
27
28 #include "gdk-pixbuf-loader.h"
29 #include "gdk-pixbuf-io.h"
30 #include <gtk/gtksignal.h>
31
32 \f
33
34 enum {
35         AREA_UPDATED,
36         AREA_PREPARED,
37         CLOSED,
38         LAST_SIGNAL
39 };
40
41 static GtkObjectClass *parent_class;
42
43 static void gdk_pixbuf_loader_class_init    (GdkPixbufLoaderClass   *klass);
44 static void gdk_pixbuf_loader_init          (GdkPixbufLoader        *loader);
45 static void gdk_pixbuf_loader_destroy       (GtkObject              *loader);
46 static void gdk_pixbuf_loader_finalize      (GtkObject              *loader);
47
48 static guint pixbuf_loader_signals[LAST_SIGNAL] = { 0 };
49
50 \f
51
52 /* Internal data */
53
54 #define LOADER_HEADER_SIZE 128
55
56 typedef struct {
57         GdkPixbuf *pixbuf;
58         gboolean closed;
59         gchar header_buf[LOADER_HEADER_SIZE];
60         gint header_buf_offset;
61         GdkPixbufModule *image_module;
62         gpointer context;
63 } GdkPixbufLoaderPrivate;
64
65 \f
66
67 /* our marshaller */
68 typedef void (* GtkSignal_NONE__INT_INT_INT_INT) (GtkObject *object,
69                                                   gint arg1, gint arg2, gint arg3, gint arg4,
70                                                   gpointer user_data);
71 static void
72 gtk_marshal_NONE__INT_INT_INT_INT (GtkObject *object, GtkSignalFunc func, gpointer func_data,
73                                    GtkArg * args)
74 {
75         GtkSignal_NONE__INT_INT_INT_INT rfunc;
76
77         rfunc = (GtkSignal_NONE__INT_INT_INT_INT) func;
78         (*rfunc) (object,
79                   GTK_VALUE_INT (args[0]),
80                   GTK_VALUE_INT (args[1]),
81                   GTK_VALUE_INT (args[2]),
82                   GTK_VALUE_INT (args[3]),
83                   func_data);
84 }
85
86 \f
87
88 /**
89  * gdk_pixbuf_loader_get_type:
90  * @void: 
91  * 
92  * Registers the &GdkPixubfLoader class if necessary, and returns the type ID
93  * associated to it.
94  * 
95  * Return value: The type ID of the &GdkPixbufLoader class.
96  **/
97 GtkType
98 gdk_pixbuf_loader_get_type (void)
99 {
100         static GtkType loader_type = 0;
101
102         if (!loader_type) {
103                 static const GtkTypeInfo loader_info = {
104                         "GdkPixbufLoader",
105                         sizeof (GdkPixbufLoader),
106                         sizeof (GdkPixbufLoaderClass),
107                         (GtkClassInitFunc) gdk_pixbuf_loader_class_init,
108                         (GtkObjectInitFunc) gdk_pixbuf_loader_init,
109                         /* reserved_1 */ NULL,
110                         /* reserved_2 */ NULL,
111                         (GtkClassInitFunc) NULL,
112                 };
113
114                 loader_type = gtk_type_unique (GTK_TYPE_OBJECT, &loader_info);
115         }
116
117         return loader_type;
118 }
119
120 static void
121 gdk_pixbuf_loader_class_init (GdkPixbufLoaderClass *class)
122 {
123         GtkObjectClass *object_class;
124
125         object_class = (GtkObjectClass *) class;
126
127         parent_class = gtk_type_class (gtk_object_get_type ());
128
129         pixbuf_loader_signals[AREA_PREPARED] =
130                 gtk_signal_new ("area_prepared",
131                                 GTK_RUN_LAST,
132                                 parent_class->type,
133                                 GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, area_prepared),
134                                 gtk_marshal_NONE__NONE,
135                                 GTK_TYPE_NONE, 0);
136
137         pixbuf_loader_signals[AREA_UPDATED] =
138                 gtk_signal_new ("area_updated",
139                                 GTK_RUN_LAST,
140                                 parent_class->type,
141                                 GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, area_updated),
142                                 gtk_marshal_NONE__INT_INT_INT_INT,
143                                 GTK_TYPE_NONE, 4,
144                                 GTK_TYPE_INT,
145                                 GTK_TYPE_INT,
146                                 GTK_TYPE_INT,
147                                 GTK_TYPE_INT);
148
149         pixbuf_loader_signals[CLOSED] =
150                 gtk_signal_new ("closed",
151                                 GTK_RUN_LAST,
152                                 parent_class->type,
153                                 GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, closed),
154                                 gtk_marshal_NONE__NONE,
155                                 GTK_TYPE_NONE, 0);
156
157         gtk_object_class_add_signals (object_class, pixbuf_loader_signals, LAST_SIGNAL);
158
159         object_class->destroy = gdk_pixbuf_loader_destroy;
160         object_class->finalize = gdk_pixbuf_loader_finalize;
161 }
162
163 static void
164 gdk_pixbuf_loader_init (GdkPixbufLoader *loader)
165 {
166         GdkPixbufLoaderPrivate *priv;
167
168         priv = g_new0 (GdkPixbufLoaderPrivate, 1);
169         loader->private = priv;
170 }
171
172 static void
173 gdk_pixbuf_loader_destroy (GtkObject *object)
174 {
175         GdkPixbufLoader *loader;
176         GdkPixbufLoaderPrivate *priv = NULL;
177
178         g_return_if_fail (object != NULL);
179         g_return_if_fail (GDK_IS_PIXBUF_LOADER (object));
180
181         loader = GDK_PIXBUF_LOADER (object);
182         priv = loader->private;
183
184         if (!priv->closed)
185                 gdk_pixbuf_loader_close (loader);
186
187         if (priv->pixbuf)
188                 gdk_pixbuf_unref (priv->pixbuf);
189
190         if (GTK_OBJECT_CLASS (parent_class)->destroy)
191                 (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
192 }
193
194 static void
195 gdk_pixbuf_loader_finalize (GtkObject *object)
196 {
197         GdkPixbufLoader *loader;
198         GdkPixbufLoaderPrivate *priv = NULL;
199
200         loader = GDK_PIXBUF_LOADER (object);
201         priv = loader->private;
202
203         g_free (priv);
204
205         if (GTK_OBJECT_CLASS (parent_class)->finalize)
206                 (* GTK_OBJECT_CLASS (parent_class)->finalize) (object);
207 }
208
209 static void
210 gdk_pixbuf_loader_prepare (GdkPixbuf *pixbuf, gpointer loader)
211 {
212         GdkPixbufLoaderPrivate *priv = NULL;
213
214         priv = GDK_PIXBUF_LOADER (loader)->private;
215         gdk_pixbuf_ref (pixbuf);
216         g_assert (priv->pixbuf == NULL);
217
218         priv->pixbuf = pixbuf;
219         gtk_signal_emit (GTK_OBJECT (loader), pixbuf_loader_signals[AREA_PREPARED]);
220 }
221
222 \f
223
224 /**
225  * gdk_pixbuf_loader_new:
226  * @void: 
227  * 
228  * Creates a new pixbuf loader object.
229  * 
230  * Return value: A newly-created pixbuf loader.
231  **/
232 GdkPixbufLoader *
233 gdk_pixbuf_loader_new (void)
234 {
235         return gtk_type_new (gdk_pixbuf_loader_get_type ());
236 }
237
238 static int
239 gdk_pixbuf_loader_load_module(GdkPixbufLoader *loader)
240 {
241         GdkPixbufLoaderPrivate *priv = loader->private;
242
243         priv->image_module = gdk_pixbuf_get_module (priv->header_buf, priv->header_buf_offset);
244
245         if (priv->image_module == NULL)
246                 return 0;
247
248         if (priv->image_module->module == NULL)
249                 gdk_pixbuf_load_module (priv->image_module);
250
251         if (priv->image_module->module == NULL)
252                 return 0;
253
254         if ((priv->image_module->begin_load == NULL) ||
255             (priv->image_module->stop_load == NULL) ||
256             (priv->image_module->load_increment == NULL)) {
257                 g_warning ("module %s does not support incremental loading.\n",
258                            priv->image_module->module_name);
259                 return 0;
260         }
261
262         priv->context = (*priv->image_module->begin_load) (gdk_pixbuf_loader_prepare, loader);
263
264         if (priv->context == NULL) {
265                 g_warning("Failed to begin progressive load");
266                 return 0;
267         }
268
269         if( (* priv->image_module->load_increment) (priv->context, priv->header_buf, priv->header_buf_offset) )
270                 return priv->header_buf_offset;
271  
272         return 0;
273 }
274
275 static int
276 gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const gchar *buf, size_t count)
277 {
278         int nbytes;
279         GdkPixbufLoaderPrivate *priv = loader->private;
280
281         nbytes = MIN(LOADER_HEADER_SIZE - priv->header_buf_offset, count);
282         memcpy (priv->header_buf + priv->header_buf_offset, buf, nbytes);
283             
284         priv->header_buf_offset += nbytes;
285             
286         if(priv->header_buf_offset >= LOADER_HEADER_SIZE)
287                 gdk_pixbuf_loader_load_module(loader);
288
289         return nbytes;
290 }
291
292 /**
293  * gdk_pixbuf_loader_write:
294  * @loader: A pixbuf loader.
295  * @buf: The image data.
296  * @count: The length of @buf in bytes.
297  *
298  * This will load the next @size bytes of the image.  It will return TRUE if the
299  * data was loaded successfully, and FALSE if an error occurred. In this case,
300  * the loader will be closed, and will not accept further writes.
301  *
302  * Return value: Returns TRUE if the write was successful -- FALSE if the loader
303  * cannot parse the buf.
304  **/
305 gboolean
306 gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const gchar *buf, size_t count)
307 {
308         GdkPixbufLoaderPrivate *priv;
309
310         g_return_val_if_fail (loader != NULL, FALSE);
311         g_return_val_if_fail (GDK_IS_PIXBUF_LOADER (loader), FALSE);
312
313         g_return_val_if_fail (buf != NULL, FALSE);
314         g_return_val_if_fail (count >= 0, FALSE);
315
316         priv = loader->private;
317
318         /* we expect it's not to be closed */
319         g_return_val_if_fail (priv->closed == FALSE, FALSE);
320
321         if (priv->image_module == NULL) {
322                 int eaten;
323
324                 eaten = gdk_pixbuf_loader_eat_header_write(loader, buf, count);
325                 if (eaten <= 0)
326                         return FALSE;
327
328                 count -= eaten;
329                 buf += eaten;
330         }
331
332         if (count > 0 && priv->image_module->load_increment)
333                 return (* priv->image_module->load_increment) (priv->context, buf, count);
334
335         return TRUE;
336 }
337
338 /**
339  * gdk_pixbuf_loader_get_pixbuf:
340  * @loader: A pixbuf loader.
341  *
342  * Gets the GdkPixbuf that the loader is currently loading.  If the loader
343  * hasn't been enough data via gdk_pixbuf_loader_write, then NULL is returned.
344  * Any application using this function should check for this value when it is
345  * used.  The pixbuf returned will be the same in all future calls to the
346  * loader, so simply calling a gdk_pixbuf_ref() should be sufficient to continue
347  * using it.
348  *
349  * Return value: The GdkPixbuf that the loader is loading.
350  **/
351 GdkPixbuf *
352 gdk_pixbuf_loader_get_pixbuf (GdkPixbufLoader *loader)
353 {
354         GdkPixbufLoaderPrivate *priv;
355
356         g_return_val_if_fail (loader != NULL, NULL);
357         g_return_val_if_fail (GDK_IS_PIXBUF_LOADER (loader), NULL);
358
359         priv = loader->private;
360
361         return priv->pixbuf;
362 }
363
364 /**
365  * gdk_pixbuf_loader_close:
366  * @loader: A pixbuf loader.
367  *
368  * Tells the loader to stop accepting writes.
369  **/
370 void
371 gdk_pixbuf_loader_close (GdkPixbufLoader *loader)
372 {
373         GdkPixbufLoaderPrivate *priv;
374
375         g_return_if_fail (loader != NULL);
376         g_return_if_fail (GDK_IS_PIXBUF_LOADER (loader));
377
378         priv = loader->private;
379
380         /* we expect it's not closed */
381         g_return_if_fail (priv->closed == FALSE);
382
383         /* We have less the 128 bytes in the image.  Flush it, and keep going. */
384         if (priv->image_module == NULL)
385                 gdk_pixbuf_loader_load_module (loader);
386
387         if (priv->image_module && priv->image_module->stop_load)
388                 (* priv->image_module->stop_load) (priv->context);
389
390         priv->closed = TRUE;
391 }