1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
23 #include "gloadableicon.h"
24 #include "gasyncresult.h"
30 * SECTION:gloadableicon
31 * @short_description: Loadable Icons
33 * @see_also: #GIcon, #GThemedIcon
35 * Extends the #GIcon interface and adds the ability to
36 * load icons from streams.
39 static void g_loadable_icon_real_load_async (GLoadableIcon
*icon
,
41 GCancellable
*cancellable
,
42 GAsyncReadyCallback callback
,
44 static GInputStream
*g_loadable_icon_real_load_finish (GLoadableIcon
*icon
,
49 typedef GLoadableIconIface GLoadableIconInterface
;
50 G_DEFINE_INTERFACE(GLoadableIcon
, g_loadable_icon
, G_TYPE_ICON
)
53 g_loadable_icon_default_init (GLoadableIconIface
*iface
)
55 iface
->load_async
= g_loadable_icon_real_load_async
;
56 iface
->load_finish
= g_loadable_icon_real_load_finish
;
60 * g_loadable_icon_load:
61 * @icon: a #GLoadableIcon.
63 * @type: (out) (optional): a location to store the type of the loaded
64 * icon, %NULL to ignore.
65 * @cancellable: (nullable): optional #GCancellable object, %NULL to
67 * @error: a #GError location to store the error occurring, or %NULL
70 * Loads a loadable icon. For the asynchronous version of this function,
71 * see g_loadable_icon_load_async().
73 * Returns: (transfer full): a #GInputStream to read the icon from.
76 g_loadable_icon_load (GLoadableIcon
*icon
,
79 GCancellable
*cancellable
,
82 GLoadableIconIface
*iface
;
84 g_return_val_if_fail (G_IS_LOADABLE_ICON (icon
), NULL
);
86 iface
= G_LOADABLE_ICON_GET_IFACE (icon
);
88 return (* iface
->load
) (icon
, size
, type
, cancellable
, error
);
92 * g_loadable_icon_load_async:
93 * @icon: a #GLoadableIcon.
95 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
96 * @callback: (scope async): a #GAsyncReadyCallback to call when the
97 * request is satisfied
98 * @user_data: (closure): the data to pass to callback function
100 * Loads an icon asynchronously. To finish this function, see
101 * g_loadable_icon_load_finish(). For the synchronous, blocking
102 * version of this function, see g_loadable_icon_load().
105 g_loadable_icon_load_async (GLoadableIcon
*icon
,
107 GCancellable
*cancellable
,
108 GAsyncReadyCallback callback
,
111 GLoadableIconIface
*iface
;
113 g_return_if_fail (G_IS_LOADABLE_ICON (icon
));
115 iface
= G_LOADABLE_ICON_GET_IFACE (icon
);
117 (* iface
->load_async
) (icon
, size
, cancellable
, callback
, user_data
);
121 * g_loadable_icon_load_finish:
122 * @icon: a #GLoadableIcon.
123 * @res: a #GAsyncResult.
124 * @type: (out) (optional): a location to store the type of the loaded
125 * icon, %NULL to ignore.
126 * @error: a #GError location to store the error occurring, or %NULL to
129 * Finishes an asynchronous icon load started in g_loadable_icon_load_async().
131 * Returns: (transfer full): a #GInputStream to read the icon from.
134 g_loadable_icon_load_finish (GLoadableIcon
*icon
,
139 GLoadableIconIface
*iface
;
141 g_return_val_if_fail (G_IS_LOADABLE_ICON (icon
), NULL
);
142 g_return_val_if_fail (G_IS_ASYNC_RESULT (res
), NULL
);
144 if (g_async_result_legacy_propagate_error (res
, error
))
147 iface
= G_LOADABLE_ICON_GET_IFACE (icon
);
149 return (* iface
->load_finish
) (icon
, res
, type
, error
);
152 /********************************************
153 * Default implementation of async load *
154 ********************************************/
162 load_data_free (LoadData
*data
)
169 load_async_thread (GTask
*task
,
170 gpointer source_object
,
172 GCancellable
*cancellable
)
174 GLoadableIcon
*icon
= source_object
;
175 LoadData
*data
= task_data
;
176 GLoadableIconIface
*iface
;
177 GInputStream
*stream
;
178 GError
*error
= NULL
;
180 iface
= G_LOADABLE_ICON_GET_IFACE (icon
);
181 stream
= iface
->load (icon
, data
->size
, &data
->type
,
182 cancellable
, &error
);
185 g_task_return_pointer (task
, stream
, g_object_unref
);
187 g_task_return_error (task
, error
);
193 g_loadable_icon_real_load_async (GLoadableIcon
*icon
,
195 GCancellable
*cancellable
,
196 GAsyncReadyCallback callback
,
202 task
= g_task_new (icon
, cancellable
, callback
, user_data
);
203 g_task_set_source_tag (task
, g_loadable_icon_real_load_async
);
204 data
= g_new0 (LoadData
, 1);
205 g_task_set_task_data (task
, data
, (GDestroyNotify
) load_data_free
);
206 g_task_run_in_thread (task
, load_async_thread
);
207 g_object_unref (task
);
210 static GInputStream
*
211 g_loadable_icon_real_load_finish (GLoadableIcon
*icon
,
218 GInputStream
*stream
;
220 g_return_val_if_fail (g_task_is_valid (res
, icon
), NULL
);
223 data
= g_task_get_task_data (task
);
225 stream
= g_task_propagate_pointer (task
, error
);