[gnome-music/wip/jfelder/open-audio-files: 5/8] grilowrappers: Add support for filesystem source




commit 8fb5f21769b51d41345de4e53e730d7a42c2d92f
Author: Jean Felder <jfelder src gnome org>
Date:   Fri Dec 3 16:36:25 2021 +0100

    grilowrappers: Add support for filesystem source
    
    This source will be used at launch to load audio files received from
    command line.

 gnomemusic/coregrilo.py                          | 19 ++++-
 gnomemusic/grilowrappers/grlfilesystemwrapper.py | 96 ++++++++++++++++++++++++
 2 files changed, 113 insertions(+), 2 deletions(-)
---
diff --git a/gnomemusic/coregrilo.py b/gnomemusic/coregrilo.py
index 99368882f..8067ba7f0 100644
--- a/gnomemusic/coregrilo.py
+++ b/gnomemusic/coregrilo.py
@@ -22,12 +22,14 @@
 # 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 typing import List
 import weakref
 
 import gi
 gi.require_version('Grl', '0.3')
-from gi.repository import Grl, GLib, GObject
+from gi.repository import Gio, Grl, GLib, GObject
 
+from gnomemusic.grilowrappers.grlfilesystemwrapper import GrlFileSystemWrapper
 from gnomemusic.grilowrappers.grlsearchwrapper import GrlSearchWrapper
 from gnomemusic.grilowrappers.grltrackerwrapper import GrlTrackerWrapper
 from gnomemusic.trackerwrapper import TrackerState, TrackerWrapper
@@ -37,7 +39,6 @@ class CoreGrilo(GObject.GObject):
 
     _blocklist = [
         'grl-bookmarks',
-        'grl-filesystem',
         'grl-itunes-podcast',
         'grl-metadata-store',
         'grl-podcasts'
@@ -157,6 +158,11 @@ class CoreGrilo(GObject.GObject):
             music_dir = GLib.get_user_special_dir(
                 GLib.UserDirectory.DIRECTORY_MUSIC)
             self._log.debug("XDG Music dir is: {}".format(music_dir))
+        elif source.props.source_id == "grl-filesystem":
+            new_wrapper = GrlFileSystemWrapper(
+                source, self._application)
+            self._wrappers[source.props.source_id] = new_wrapper
+            self._log.debug("Adding file system source {}".format(source))
         elif (source.props.source_id not in self._search_wrappers.keys()
                 and source.props.source_id not in self._wrappers.keys()
                 and source.props.source_id != "grl-tracker3-source"
@@ -293,3 +299,12 @@ class CoreGrilo(GObject.GObject):
         if "grl-tracker3-source" in self._wrappers:
             self._wrappers["grl-tracker3-source"].create_playlist(
                 playlist_title, callback)
+
+    def load_files(self, files: List[Gio.File]) -> None:
+        """Use the filesystem plugin to load audio files
+
+        :param list files: list of files
+        """
+        if "grl-filesystem" in self._wrappers:
+            for file in files:
+                self._wrappers["grl-filesystem"].load_file(file)
diff --git a/gnomemusic/grilowrappers/grlfilesystemwrapper.py 
b/gnomemusic/grilowrappers/grlfilesystemwrapper.py
new file mode 100644
index 000000000..dff86b3a2
--- /dev/null
+++ b/gnomemusic/grilowrappers/grlfilesystemwrapper.py
@@ -0,0 +1,96 @@
+# Copyright 2022 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 __future__ import annotations
+from typing import Optional
+import typing
+
+from gi.repository import Gio, GLib, GObject, Grl
+
+from gnomemusic.coresong import CoreSong
+if typing.TYPE_CHECKING:
+    from gnomemusic.application import Application
+
+
+class GrlFileSystemWrapper(GObject.GObject):
+    """Wrapper for the Grilo FileSystem source.
+    """
+
+    METADATA_KEYS = [
+        Grl.METADATA_KEY_ALBUM,
+        Grl.METADATA_KEY_ALBUM_DISC_NUMBER,
+        Grl.METADATA_KEY_ARTIST,
+        Grl.METADATA_KEY_DURATION,
+        Grl.METADATA_KEY_FAVOURITE,
+        Grl.METADATA_KEY_ID,
+        Grl.METADATA_KEY_PLAY_COUNT,
+        Grl.METADATA_KEY_TITLE,
+        Grl.METADATA_KEY_TRACK_NUMBER,
+        Grl.METADATA_KEY_URL
+    ]
+
+    def __init__(self, source: Grl.Source, application: Application) -> None:
+        """Initialize the FileSystem wrapper
+
+        :param Grl.Source source: The Grilo source to wrap
+        :param Application application: Application instance
+        """
+        super().__init__()
+
+        self._application = application
+        self._coreselection = application.props.coreselection
+        self._log = application.props.log
+        self._source = source
+
+        self._fast_options = Grl.OperationOptions()
+        self._fast_options.set_resolution_flags(
+            Grl.ResolutionFlags.FAST_ONLY | Grl.ResolutionFlags.IDLE_RELAY)
+
+        coremodel = application.props.coremodel
+        self._files_model = coremodel.props.files
+
+    def load_file(self, file: Gio.File) -> None:
+        """Load an audio file
+
+        :param Grl.Media media: The directory to browse
+        """
+        def resolve_cb(
+                source: Grl.Source, op_id: int,
+                resolved_media: Optional[Grl.Media],
+                error: Optional[GLib.Error]) -> None:
+            if error:
+                self._log.warning(f"Error: {error.domain}, {error.message}")
+                return
+
+            if (not resolved_media
+                    or not resolved_media.is_audio()):
+                return
+
+            coresong = CoreSong(self._application, resolved_media)
+            self._files_model.append(coresong)
+
+        media = Grl.Media.audio_new()
+        media.set_id(file.get_uri())
+        self._source.resolve(
+            media, self.METADATA_KEYS, self._fast_options, resolve_cb)


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