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 339809 - When downloading a large file, my laptop auto-suspended
When downloading a large file, my laptop auto-suspended
Status: RESOLVED FIXED
Product: epiphany
Classification: Core
Component: Downloads
git master
Other Linux
: Normal enhancement
: Ephy/XR
Assigned To: Epiphany Maintainers
Epiphany Maintainers
polish
: 534955 (view as bug list)
Depends on: 326608 457744
Blocks:
 
 
Reported: 2006-04-26 13:00 UTC by Richard Hughes
Modified: 2015-07-24 16:13 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement


Attachments
Inhibit logout and suspend while downloading files (2.95 KB, patch)
2015-07-17 15:11 UTC, Michael Catanzaro
none Details | Review
Inhibit logout and suspend while downloading files (3.35 KB, patch)
2015-07-22 14:39 UTC, Michael Catanzaro
none Details | Review
Inhibit logout and suspend while downloading files (3.46 KB, patch)
2015-07-23 16:19 UTC, Michael Catanzaro
committed Details | Review
EphyDownload: cancel download in dispose (906 bytes, patch)
2015-07-23 16:19 UTC, Michael Catanzaro
none Details | Review
Inhibit logout and suspend while downloading files (3.53 KB, patch)
2015-07-24 16:13 UTC, Michael Catanzaro
committed Details | Review

Description Richard Hughes 2006-04-26 13:00:57 UTC
I'm the developer of gnome-power-manager.

Stuff like nautilus can (and will) tell g-p-m that it's doing something in the background, and shouldn't auto-suspend.

All Epiphany has to do is call a simple dbus method when a download starts, and a simple dbus method when it's finished. This way g-p-m doesn't auto-suspend or power-down.

See http://live.gnome.org/GnomePowerManager/Faq and look at the
"How do I make my application stop the computer auto-suspending?" section.

If you have any questions/concerns then feel free to email me, or just close this WONTFIX :-)

Thanks.

Richard.
Comment 1 Crispin Flowerday (not receiving bugmail) 2006-04-26 13:13:55 UTC
I have been wondering how to do this for a while .... thanks for the info, I will try and do this when I am back online at home. 

Does g-p-m 2.14 support this or do we need CVS to test ? CVS g-p-m is a bit of a problem for me as dapper doesn't have the appropriate version of dbus :-(
Comment 2 Richard Hughes 2006-04-26 13:28:24 UTC
(In reply to comment #1)
> I have been wondering how to do this for a while .... thanks for the info, I
> will try and do this when I am back online at home. 

Cool, thanks.

> Does g-p-m 2.14 support this or do we need CVS to test ? CVS g-p-m is a bit of
> a problem for me as dapper doesn't have the appropriate version of dbus :-(

Just CVS I'm afraid, as it needed large arcitectural changes. I can lower the DBUS dep on CVS (adding back the compat-code) if that makes things easier.

Richard.

Comment 3 Crispin Flowerday (not receiving bugmail) 2006-04-26 13:38:22 UTC
If it isn't too much of a pain, adding the compat-code back to CVS would be very useful to people wanting to try g-p-m CVS on dapper (like me), I had to stop using CVS g-p-m when the compat code went :-(
Comment 4 Richard Hughes 2006-04-26 22:37:28 UTC
Can you try now please :-)

2006-04-26  Richard Hughes  <richard@hughsie.com>
 * src/gpm-hal-monitor.c: (watch_device_connect_property_modified):
 * configure.in: Depend on a lower version of DBUS, as I've upset crispin and I need his help. #339809.

Thanks,

Richard.
Comment 5 Richard Hughes 2006-06-10 11:15:10 UTC
You'll want to use Inhibit() and UnInhibit(). See http://cvs.gnome.org/viewcvs/*checkout*/gnome-power-manager/docs/gnome-power-manager.html#pm-Compatibility This is due to XDG standardisation.
Comment 6 Christian Persch 2006-08-17 14:05:02 UTC
Mass changing target 2.16 -> 2.18
Comment 7 Diego Escalante Urrelo (not reading bugmail) 2006-12-18 12:20:33 UTC
For quick reference:

#!/usr/bin/python
import dbus
import time
bus = dbus.Bus(dbus.Bus.TYPE_SESSION)
devobj = bus.get_object('org.gnome.PowerManager', '/org/gnome/PowerManager')
dev = dbus.Interface(devobj, "org.gnome.PowerManager")
cookie = dev.Inhibit('Nautilus', 'Copying files')
time.sleep(100)
dev.UnInhibit(cookie)
Comment 8 Diego Escalante Urrelo (not reading bugmail) 2006-12-18 12:59:56 UTC
We need to get rid of bugs like
#326608, #319500 and #327121

since they can make suspend capabilities useless.

Marking #326608 as a dependency (the other two are related but doesn't seem directly blocking this).

Also marking with mathusalem keyword since it will handle all of this in case it's ready before we fix #326608.
Comment 9 Christian Persch 2007-03-12 12:25:21 UTC
Moving to 2.20 target due to feature and UI freeze for 2.18.
Comment 10 Diego Escalante Urrelo (not reading bugmail) 2008-05-27 14:50:13 UTC
*** Bug 534955 has been marked as a duplicate of this bug. ***
Comment 11 Wouter Bolsterlee (uws) 2010-01-02 17:19:26 UTC
I think the current Gnome infrastructure supports everything we need here, right?
Comment 12 Bastien Nocera 2014-01-07 14:46:36 UTC
Ephy is a GtkApplication, so this should be as easy as:
app = g_application_get_default();
cookie = gtk_application_inhibit (app, window, GTK_APPLICATION_INHIBIT_SUSPEND, "Downloading");

Should this be in the ephy-download object, or the download widget?
Comment 13 Claudio Saavedra 2014-01-07 15:07:48 UTC
(In reply to comment #12)
> Ephy is a GtkApplication, so this should be as easy as:
> app = g_application_get_default();
> cookie = gtk_application_inhibit (app, window, GTK_APPLICATION_INHIBIT_SUSPEND,
> "Downloading");
> 
> Should this be in the ephy-download object, or the download widget?

Probably in the object, so that each object handles its cookie?
Comment 14 Michael Catanzaro 2015-07-17 15:11:44 UTC
Created attachment 307623 [details] [review]
Inhibit logout and suspend while downloading files

Speculative patch, I haven't tested it yet because my debug build of WebKit master crashes whenever I download a file; I need to look into that....
Comment 15 Michael Catanzaro 2015-07-22 14:34:20 UTC
Review of attachment 307623 [details] [review]:

Inhibitor is never released; not yet sure why.
Comment 16 Michael Catanzaro 2015-07-22 14:39:07 UTC
Created attachment 307912 [details] [review]
Inhibit logout and suspend while downloading files

I missed a spot where I needed to uninhibit. This patch works. To test set org.gnome.settings-daemon.power sleep-inactive-ac-timeout or sleep-inactive-battery-timeout to something small like 10 (seconds).
Comment 17 Carlos Garcia Campos 2015-07-23 06:28:17 UTC
Review of attachment 307912 [details] [review]:

::: embed/ephy-download.c
@@ +525,3 @@
+  shell = ephy_embed_shell_get_default ();
+
+  gtk_application_uninhibit (GTK_APPLICATION (shell), priv->inhibitor_cookie);

This could be called with a 0 cookie, I would return early in case the cookie is 0. that would also allow us to call this on dispose without having to check the cookie.

@@ +542,3 @@
   webkit_download_cancel (download->priv->download);
+
+  release_session_inhibitor (download);

I don't think this is correct, the inhibitor will be released with a 0 cookie. You release the inhibitor here, the download is cancelled and then failed signal is emitted with CACELLED_BY_USER error and the inhibitor is released again in the failed callback. So, the release in the failed callback should be enough. That's why I think it's better to allow the acquire/release methods to be called multiple times.

@@ +800,3 @@
   download->priv->widget = NULL;
+
+  download->priv->inhibitor_cookie = 0;

This is already 0, glib fills with 0 the instance structs on allocation.

@@ +858,3 @@
   g_signal_emit_by_name (download, "error", 0, error->code, error->message, &ret);
+
+  release_session_inhibitor (download);

I think we should also release the inhibitor on dispose, in case the download object is destroyed in the middle of a download. Maybe we should also cancel a download on dispose if it's still running.
Comment 18 Michael Catanzaro 2015-07-23 16:15:48 UTC
(In reply to Carlos Garcia Campos from comment #17)
> This could be called with a 0 cookie, I would return early in case the
> cookie is 0. that would also allow us to call this on dispose without having
> to check the cookie.

OK

> I don't think this is correct, the inhibitor will be released with a 0
> cookie. You release the inhibitor here, the download is cancelled and then
> failed signal is emitted with CACELLED_BY_USER error and the inhibitor is
> released again in the failed callback. So, the release in the failed
> callback should be enough. That's why I think it's better to allow the
> acquire/release methods to be called multiple times.

OK, good catch.

> @@ +800,3 @@
>    download->priv->widget = NULL;
> +
> +  download->priv->inhibitor_cookie = 0;
> 
> This is already 0, glib fills with 0 the instance structs on allocation.

Good to know. I will remove it, although that function already initializes various widgets to NULL unnecessarily.

> @@ +858,3 @@
>    g_signal_emit_by_name (download, "error", 0, error->code, error->message,
> &ret);
> +
> +  release_session_inhibitor (download);
> 
> I think we should also release the inhibitor on dispose, in case the
> download object is destroyed in the middle of a download. Maybe we should
> also cancel a download on dispose if it's still running.

I will add another commit for this.
Comment 19 Michael Catanzaro 2015-07-23 16:19:47 UTC
Created attachment 308001 [details] [review]
Inhibit logout and suspend while downloading files
Comment 20 Michael Catanzaro 2015-07-23 16:19:52 UTC
Created attachment 308002 [details] [review]
EphyDownload: cancel download in dispose

As suggested by Carlos, just in case the download object is destroyed in
the middle of a download.
Comment 21 Carlos Garcia Campos 2015-07-24 10:36:42 UTC
Review of attachment 308001 [details] [review]:

Please, see my comment before pushing

::: embed/ephy-download.c
@@ +547,3 @@
   webkit_download_cancel (download->priv->download);
+
+  release_session_inhibitor (download);

As I said , this is no the right place, after a cancellation, failed_cb is called. Move this one to the dispose method.
Comment 22 Carlos Garcia Campos 2015-07-24 10:39:00 UTC
Review of attachment 308002 [details] [review]:

I wonder if we should check somehow if the download is still ongoing in cancel to return early. WebKit doesn't check that, I don't know what happens if a finished download is cancelled.
Comment 23 Michael Catanzaro 2015-07-24 15:52:37 UTC
(In reply to Carlos Garcia Campos from comment #21)
> ::: embed/ephy-download.c
> @@ +547,3 @@
>    webkit_download_cancel (download->priv->download);
> +
> +  release_session_inhibitor (download);
> 
> As I said , this is no the right place, after a cancellation, failed_cb is
> called.

No, failed_cb() is not called, because EphyDownloadWidget destroys itself after calling ephy_download_cancel() in cancel_activate_cb(), and I guess removes the last reference to the EphyDownload in ephy_download_widget_dispose(). But releasing it in dispose as well would take care of that case, so your suggestion is still good.

(In reply to Michael Catanzaro from comment #20)
> Created attachment 308002 [details] [review] [review]
> EphyDownload: cancel download in dispose
> 
> As suggested by Carlos, just in case the download object is destroyed in
> the middle of a download.

We don't need to do this; Download::platformInvalidate() handles cleaning up the download properly when the download object is destroyed. As it should; applications shouldn't have to bother with this. So instead I will just release the inhibitor explicitly in dispose, instead of relying on ephy_download_cancel() to do this.
Comment 24 Michael Catanzaro 2015-07-24 16:04:08 UTC
(In reply to Carlos Garcia Campos from comment #22)
> Review of attachment 308002 [details] [review] [review]:
> 
> I wonder if we should check somehow if the download is still ongoing in
> cancel to return early. WebKit doesn't check that, I don't know what happens
> if a finished download is cancelled.

Nothing happens if a finished download is cancelled, because m_resourceHandle will be null in Download::cancel in DownloadSoup.cpp. I'd say that's the expected behavior.
Comment 25 Michael Catanzaro 2015-07-24 16:13:16 UTC
The following fix has been pushed:
f8739c4 Inhibit logout and suspend while downloading files
Comment 26 Michael Catanzaro 2015-07-24 16:13:21 UTC
Created attachment 308090 [details] [review]
Inhibit logout and suspend while downloading files