[maemo-commits] [maemo-commits] r16544 - in projects/haf/trunk/hildon-thumbnail: . thumbs
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Fri Oct 31 15:51:15 EET 2008
- Previous message: [maemo-commits] r16543 - projects/haf/tags/epeg
- Next message: [maemo-commits] r16545 - in projects/haf/trunk/hildon-thumbnail: . thumbs
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: pvanhoof Date: 2008-10-31 15:51:13 +0200 (Fri, 31 Oct 2008) New Revision: 16544 Modified: projects/haf/trunk/hildon-thumbnail/ChangeLog projects/haf/trunk/hildon-thumbnail/thumbs/hildon-thumbnail-factory.c projects/haf/trunk/hildon-thumbnail/thumbs/hildon-thumbnail-factory.h Log: 2008-10-31 Philip Van Hoof <philip at codeminded.be> * thumbs/hildon-thumbnail-factory.c * thumbs/hildon-thumbnail-factory.h: Error reporting and added to convenience APIs Modified: projects/haf/trunk/hildon-thumbnail/ChangeLog =================================================================== --- projects/haf/trunk/hildon-thumbnail/ChangeLog 2008-10-31 13:00:54 UTC (rev 16543) +++ projects/haf/trunk/hildon-thumbnail/ChangeLog 2008-10-31 13:51:13 UTC (rev 16544) @@ -1,3 +1,9 @@ +2008-10-31 Philip Van Hoof <philip at codeminded.be> + + * thumbs/hildon-thumbnail-factory.c + * thumbs/hildon-thumbnail-factory.h: Error reporting and added to + convenience APIs + 2008-10-30 Philip Van Hoof <philip at codeminded.be> * daemon/utils.c: Stripping album and artist strings Modified: projects/haf/trunk/hildon-thumbnail/thumbs/hildon-thumbnail-factory.c =================================================================== --- projects/haf/trunk/hildon-thumbnail/thumbs/hildon-thumbnail-factory.c 2008-10-31 13:00:54 UTC (rev 16543) +++ projects/haf/trunk/hildon-thumbnail/thumbs/hildon-thumbnail-factory.c 2008-10-31 13:51:13 UTC (rev 16544) @@ -55,6 +55,7 @@ HildonThumbnailFactoryFinishedCallback callback; gpointer user_data; gboolean canceled; + GString *errors; guint handle_id; @@ -97,6 +98,8 @@ { g_free(item->uri); g_free(item->mime_type); + if (item->errors) + g_string_free (item->errors, TRUE); g_free(item); } @@ -113,7 +116,7 @@ if (item->flags & HILDON_THUMBNAIL_FLAG_CROP) { path = g_strdup (cropped); - } else if (item->width > 128) { + } else if (item->width >= 128) { path = g_strdup (large); } else { path = g_strdup (normal); @@ -140,6 +143,16 @@ /* Callback user function, passing the pixbuf and error */ + if (item->errors) { + if (!error) + g_set_error (&error, FACTORY_ERROR, 0, item->errors->str); + else { + g_string_append (item->errors, " - "); + g_string_append (item->errors, error->message); + g_set_error (&error, FACTORY_ERROR, 0, item->errors->str); + } + } + item->callback (item, item->user_data, pixbuf, error); /* Cleanup */ @@ -159,6 +172,29 @@ } static void +on_task_error (DBusGProxy *proxy, + guint handle, + GStrv failed_uris, + gint error_code, + gchar *error_message, + gpointer user_data) +{ + gchar *key = g_strdup_printf ("%d", handle); + ThumbsItem *item = g_hash_table_lookup (tasks, key); + + if (item) { + if (!item->errors) { + item->errors = g_string_new (error_message); + } else { + g_string_append (item->errors, " - "); + g_string_append (item->errors, error_message); + } + } + + g_free (key); +} + +static void on_task_finished (DBusGProxy *proxy, guint handle, gpointer user_data) @@ -167,24 +203,24 @@ ThumbsItem *item = g_hash_table_lookup (tasks, key); if (item) { - gchar *large = NULL, *normal = NULL, *cropped = NULL; + gchar *large = NULL, *normal = NULL, *cropped = NULL; - /* Get the large small and cropped path for the original - * URI */ - - hildon_thumbnail_util_get_thumb_paths (item->uri, &large, - &normal, &cropped, - NULL, NULL, NULL); + /* Get the large small and cropped path for the original + * URI */ + + hildon_thumbnail_util_get_thumb_paths (item->uri, &large, + &normal, &cropped, + NULL, NULL, NULL); - create_pixbuf_and_callback (item, large, normal, cropped, FALSE); + create_pixbuf_and_callback (item, large, normal, cropped, FALSE); - g_free (cropped); - g_free (normal); - g_free (large); + g_free (cropped); + g_free (normal); + g_free (large); - /* Remove the key from the hash, which means that we declare it - * handled. */ - g_hash_table_remove (tasks, key); + /* Remove the key from the hash, which means that we declare it + * handled. */ + g_hash_table_remove (tasks, key); } g_free (key); @@ -317,9 +353,13 @@ ThumbsItem *item = userdata; gchar *key = g_strdup_printf ("%d", OUT_handle); item->handle_id = OUT_handle; - - /* Register the item as being handled */ - g_hash_table_replace (tasks, key, item); + if (!error) { + /* Register the item as being handled */ + g_hash_table_replace (tasks, key, item); + } else { + item->callback (item, item->user_data, NULL, error); + g_free (key); + } } typedef struct { @@ -417,7 +457,7 @@ if (flags & HILDON_THUMBNAIL_FLAG_CROP) { path = cropped; luri = local_cropped; - } else if (width > 128) { + } else if (width >= 128) { path = large; luri = local_large; } else { @@ -443,6 +483,7 @@ item->flags = flags; item->canceled = FALSE; item->handle_id = 0; + item->errors = NULL; if (have_all) { ThumbsItemAndPaths *info = g_slice_new (ThumbsItemAndPaths); @@ -664,12 +705,24 @@ dbus_g_proxy_add_signal (proxy, "Finished", G_TYPE_UINT, G_TYPE_INVALID); + dbus_g_proxy_add_signal (proxy, "Error", + G_TYPE_UINT, + G_TYPE_BOXED, + G_TYPE_INT, + G_TYPE_STRING, G_TYPE_INVALID); dbus_g_proxy_connect_signal (proxy, "Finished", G_CALLBACK (on_task_finished), NULL, NULL); + + dbus_g_proxy_connect_signal (proxy, "Error", + G_CALLBACK (on_task_error), + NULL, + NULL); + } + had_init = TRUE; } @@ -691,3 +744,65 @@ { return FACTORY_ERROR; } + +gboolean +hildon_thumbnail_is_cached (const gchar *uri, guint width, guint height, gboolean is_cropped) +{ + gboolean retval; + gchar *path; + + path = hildon_thumbnail_get_path (uri, width, height, is_cropped); + + retval = g_file_test (path, G_FILE_TEST_EXISTS); + + g_free (path); + + return retval; +} + +gchar * +hildon_thumbnail_get_path (const gchar *uri, guint width, guint height, gboolean is_cropped) +{ + gchar *large, *normal, *cropped, *local_large, *local_normal, *local_cropped; + gchar *path; + + hildon_thumbnail_util_get_thumb_paths (uri, &large, &normal, + &cropped, &local_large, + &local_normal, &local_cropped); + + if (is_cropped) { + + GFile *fcropped = g_file_new_for_uri (local_cropped); + if (g_file_query_exists (fcropped, NULL)) + path = g_strdup (local_cropped); + else + path = g_strdup (cropped); + g_object_unref (fcropped); + + } else if (width >= 128) { + + GFile *fnormal = g_file_new_for_uri (local_normal); + if (g_file_query_exists (fnormal, NULL)) + path = g_strdup (local_normal); + else + path = g_strdup (normal); + g_object_unref (fnormal); + } else { + GFile *flarge = g_file_new_for_uri (local_large); + if (g_file_query_exists (flarge, NULL)) + path = g_strdup (local_large); + else + path = g_strdup (large); + g_object_unref (flarge); + } + + g_free (large); + g_free (normal); + g_free (cropped); + g_free (local_large); + g_free (local_normal); + g_free (local_cropped); + + return path; +} + Modified: projects/haf/trunk/hildon-thumbnail/thumbs/hildon-thumbnail-factory.h =================================================================== --- projects/haf/trunk/hildon-thumbnail/thumbs/hildon-thumbnail-factory.h 2008-10-31 13:00:54 UTC (rev 16543) +++ projects/haf/trunk/hildon-thumbnail/thumbs/hildon-thumbnail-factory.h 2008-10-31 13:51:13 UTC (rev 16544) @@ -147,7 +147,39 @@ typedef gpointer HildonThumbnailFactoryHandle; + /** + * hildon_thumbnail_is_cached: + * @uri: URI of the original + * @width: width + * @height: height + * @is_cropped: is cropped + * + * Determines whether or not the there's already a thumbnail for @uri + * + * Returns: Whether or not a thumbnail was once made + **/ + +gboolean hildon_thumbnail_is_cached (const gchar *uri, guint width, guint height, gboolean is_cropped); + +/** + * hildon_thumbnail_get_path: + * @uri: URI of the original + * @width: width + * @height: height + * @is_cropped: is cropped + * + * Gives you the absolute predicted path to the thumbnail for @uri. This function + * doesn't care about the thumbnail having been created (cached) already or not, + * it just returns the predicted path. + * + * Returns: (caller-owns): the path to the thumbnail. You must free this. + **/ +gchar * hildon_thumbnail_get_path (const gchar *uri, guint width, guint height, gboolean is_cropped); + + + +/** * HildonThumbnailFlags: * * Flags to use for thumbnail creation
- Previous message: [maemo-commits] r16543 - projects/haf/tags/epeg
- Next message: [maemo-commits] r16545 - in projects/haf/trunk/hildon-thumbnail: . thumbs
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]