[gnome-music/wip/mschraal/file-exists-async: 1/5] fileexistsasync: Async version of file_exists




commit 168ae84167a45e84c9ea53a40ddb4dd23408b031
Author: Marinus Schraal <mschraal gnome org>
Date:   Sun Aug 15 22:18:24 2021 +0200

    fileexistsasync: Async version of file_exists
    
    Gio.File.file_exists is a blocking operation, provide an async version.

 gnomemusic/fileexistsasync.py | 52 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
---
diff --git a/gnomemusic/fileexistsasync.py b/gnomemusic/fileexistsasync.py
new file mode 100644
index 000000000..7abfe93b5
--- /dev/null
+++ b/gnomemusic/fileexistsasync.py
@@ -0,0 +1,52 @@
+# Copyright 2021 The GNOME Music developers
+#
+# GNOME Music is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GNOME Music is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with GNOME Music; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+# The GNOME Music authors hereby grant permission for non-GPL compatible
+# GStreamer plugins to be used and distributed together with GStreamer
+# and GNOME Music.  This permission is above and beyond the permissions
+# granted by the GPL license by which GNOME Music is covered.  If you
+# modify this code, you may extend this exception to your version of the
+# code, but you are not obligated to do so.  If you do not wish to do so,
+# delete this exception statement from your version.
+
+from gi.repository import GLib, GObject, Gio
+
+
+class FileExistsAsync(GObject.GObject):
+
+    __gtype_name__ = "FileExistsAsync"
+
+    __gsignals__ = {
+        "finished": (GObject.SignalFlags.RUN_FIRST, None, (bool, ))
+    }
+
+    def __init__(self) -> None:
+        super().__init__()
+
+    def start(self, thumb_file: Gio.File) -> None:
+        thumb_file.query_info_async(
+            Gio.FILE_ATTRIBUTE_STANDARD_TYPE, Gio.FileQueryInfoFlags.NONE,
+            GLib.PRIORITY_HIGH_IDLE, None, self._on_query_info_finished)
+
+    def _on_query_info_finished(
+            self, thumb_file: Gio.File, res: Gio.AsyncResult) -> None:
+        exists = True
+        try:
+            thumb_file.query_info_finish(res)
+        except GLib.Error:
+            exists = False
+
+        self.emit("finished", exists)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]