After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 532725 - non-refreshing thumbnails: at 150% zoom
non-refreshing thumbnails: at 150% zoom
Status: RESOLVED FIXED
Product: nautilus
Classification: Core
Component: Thumbnails
2.22.x
Other Linux
: Normal major
: ---
Assigned To: Nautilus Maintainers
Nautilus Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-05-12 09:59 UTC by Michael Meeks
Modified: 2009-03-12 12:38 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
nautilus-bnc376669-always-update-thumbnail.patch (855 bytes, patch)
2008-05-20 02:18 UTC, Hans Petter Jansson
none Details | Review
Fixes the issue (784 bytes, patch)
2009-03-11 13:56 UTC, Alexander Larsson
accepted-commit_after_freeze Details | Review

Description Michael Meeks 2008-05-12 09:59:25 UTC
I have beautiful thumbnails of simple images on my desktop - when I crop one in gimp & save - it doesn't refresh :-)

Digging in the code & strace - the file-system notification works fine; I get a change, nautilus even prods gently at the file before giving up:

9236  1210244666.331618 <... futex resumed> ) = 0
9236  1210244666.331663 futex(0x81add90, FUTEX_WAKE_PRIVATE, 1) = 0
9236  1210244666.331731 gettimeofday({1210244666, 331752}, NULL) = 0
9236  1210244666.331846 access("/home/michael/Desktop", W_OK) = 0
9236  1210244666.331949 stat64("/home/michael/Desktop", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
9236  1210244666.332166 lstat64("/home/michael/Desktop/mydesktop.png", {st_mode=S_IFREG|0644, st_size=270891, ...}) = 0
9236  1210244666.332437 gettimeofday({1210244666, 332463}, NULL) = 0
9236  1210244666.332534 stat64("/home/michael/.local/share//mime/mime.cache", {st_mode=S_IFREG|0644, st_size=452, ...}) = 0
< snip tone of mime stats >:
9236  1210244666.334282 gettimeofday({1210244666, 334305}, NULL) = 0
9236  1210244666.334380 access("/home/michael/Desktop/mydesktop.png", R_OK) = 0
9236  1210244666.334489 access("/home/michael/Desktop/mydesktop.png", W_OK) = 0
9236  1210244666.334594 access("/home/michael/Desktop/mydesktop.png", X_OK) = -1 EACCES (Permission denied)
9236  1210244666.334736 stat64("/home/michael/.thumbnails/normal/3bdfe05aa572588bb43729033ee55362.png", {st_mode=S_IFREG|0600, st_size=13444, ...}) = 0
9236  1210244666.334959 write(5, "A", 1) = 1
Comment 1 Michael Meeks 2008-05-12 10:14:49 UTC
I chased it some more; it seems that we -nearly- thumbnail, but we get to:

nautilus-directory-async.c (is_needy) which says 'no' because lacks_thumbnail says file->details->thumbnail_is_up_to_date [ie. it is up-to-date].

Of course, sadly it is not ;-)

This leads us to nautilus-file.c (update_info_internal) which seems to do:

	if (file->details->thumbnail != NULL &&
	    file->details->thumbnail_mtime != 0 &&
	    file->details->thumbnail_mtime != mtime) {
		file->details->thumbnail_is_up_to_date = FALSE;
		changed = TRUE;
	}

Unfortunately, at this point: file->details->thumbnail_mtime is 0:

	fprintf (stderr, "thumbnail is up to date %d %d %d %d mtimes [%d vs %d]\n",
		 file->details->thumbnail != NULL,
		 file->details->thumbnail_mtime != 0,
		 file->details->thumbnail_mtime != mtime,
		 file->details->thumbnail_is_up_to_date,
		 file->details->thumbnail_mtime, mtime);
yields:
thumbnail is up to date 1 0 1 1 mtimes [0 vs 1210253410]

So - we don't set thumbnail_is_up_to_date to FALSE.
Comment 2 Michael Meeks 2008-05-12 10:22:32 UTC
This brings us back to: nautilus-directory-async.c (thumbnail_done) - the only place thumbnail_mtime is set.

Interestingly, as you instrument this method - it seems sometimes we get the right mtime, and sometimes we do not:

static void
thumbnail_done (NautilusDirectory *directory,
		NautilusFile *file,
		GdkPixbuf *pixbuf,
		gboolean tried_original)
...
		fprintf (stderr, "thumbnail done '%s'\n", thumb_mtime_str);
		if (thumb_mtime == 0 ||
		    thumb_mtime == file->details->mtime) {
			file->details->thumbnail = g_object_ref (pixbuf);
			file->details->thumbnail_mtime = thumb_mtime;
			fprintf (stderr, "set mtime on '%s' to %d\n",
				 file->details->name, thumb_mtime);

Yields (happily):

thumbnail done '1210253410'
set mtime on 'mydesktop.png' to 1210253410

initially, but then subsequently gives us:

thumbnail done '(null)'
set mtime on 'mydesktop.png' to 0

which is most curious - why would the GdkPixbuf *pixbuf sometimes have a valid tEXt::Thumb::MTime, and sometimes have none (?) - a mystery.
Comment 3 Michael Meeks 2008-05-12 11:24:24 UTC
poking further - it seems that if I add nautilus-directory-async.c (thumbnail_start):

	if (g_getenv ("BAD_CHECK") &&
		file->details->thumbnail_size > 128) {
		fprintf (stderr, "size %d on '%s' set trying_original > 128\n",
			 file->details->thumbnail_size,
			 file->details->name
			);
		state->tried_original = TRUE;
		state->trying_original = TRUE;
		location = nautilus_file_get_location (file);
	} else {
		location = g_file_new_for_path (file->details->thumbnail_path);
	}

Then my thumbnails refresh as I would expect; of course - this is prolly totally wrong ;-) if BAD_CHECK is set I get:

size 144 on 'mydesktop.png' set trying_original > 128

Whence the magic 128 ? :-)

That's about all the time I can spend chasing it; Hope it helps.
Comment 4 Michael Meeks 2008-05-12 11:27:07 UTC
Ah - one more critical thing (I guess based on the size) - I have my default IconView zoom set to 150% - which is an exacerbating factor here - turn that off, and re-thumbnailing works again: making me yet more suspicious of 128.
Comment 5 Hans Petter Jansson 2008-05-20 02:18:36 UTC
Created attachment 111196 [details] [review]
nautilus-bnc376669-always-update-thumbnail.patch

A patch that implements Michael's suggestion. Probably not the right solution, but something to test and criticize. I'd love to hear alexl's take on why the original code does what it does. Is it an optimization?
Comment 6 Sebastien Bacher 2008-05-21 15:55:53 UTC
seems similar to bug #523883
Comment 7 Alexander Larsson 2009-03-11 13:48:26 UTC
Ok, so the issue here is that for large icon sizes we use the actual file as the pixbuf source instead of the thumbnail file. Of course, for theres files tEXt::Thumb::MTime won't be set. However, we should be able to just look at the current file mtime.
Comment 8 Alexander Larsson 2009-03-11 13:56:50 UTC
Created attachment 130462 [details] [review]
Fixes the issue
Comment 9 Cosimo Cecchi 2009-03-11 14:01:43 UTC
Let's mark this as accepted-commit_after_freeze so that we don't lose track of it after branching.
Comment 10 Alexander Larsson 2009-03-12 12:38:28 UTC
I got release-team acks, so commiting.