/usr/lib/python3/dist-packages/gnomemusic/albumartcache.py is in gnome-music 3.28.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 | # Copyright © 2018 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 enum import Enum
import logging
from math import pi
import os
import cairo
import gi
gi.require_version('MediaArt', '2.0')
from gi.repository import (Gdk, GdkPixbuf, Gio, GLib, GObject, Gtk, MediaArt,
Gst, GstTag, GstPbutils)
from gnomemusic import log
from gnomemusic.grilo import grilo
import gnomemusic.utils as utils
logger = logging.getLogger(__name__)
@log
def _make_icon_frame(pixbuf, art_size=None, scale=1):
border = 3
degrees = pi / 180
radius = 3
ratio = pixbuf.get_height() / pixbuf.get_width()
# Scale down the image according to the biggest axis
if ratio > 1:
w = int(art_size.width / ratio)
h = art_size.height
else:
w = art_size.width
h = int(art_size.height * ratio)
surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, w * scale, h * scale)
surface.set_device_scale(scale, scale)
ctx = cairo.Context(surface)
# draw outline
ctx.new_sub_path()
ctx.arc(w - radius, radius, radius - 0.5, -90 * degrees, 0 * degrees)
ctx.arc(w - radius, h - radius, radius - 0.5, 0 * degrees, 90 * degrees)
ctx.arc(radius, h - radius, radius - 0.5, 90 * degrees, 180 * degrees)
ctx.arc(radius, radius, radius - 0.5, 180 * degrees, 270 * degrees)
ctx.close_path()
ctx.set_line_width(0.6)
ctx.set_source_rgb(0.2, 0.2, 0.2)
ctx.stroke_preserve()
# fill the center
ctx.set_source_rgb(1, 1, 1)
ctx.fill()
matrix = cairo.Matrix()
matrix.scale(pixbuf.get_width() / (w - border * 2),
pixbuf.get_height() / (h - border * 2))
matrix.translate(-border, -border)
# paste the scaled pixbuf in the center
Gdk.cairo_set_source_pixbuf(ctx, pixbuf, 0, 0)
pattern = ctx.get_source()
pattern.set_matrix(matrix)
ctx.rectangle(border, border, w - border * 2, h - border * 2)
ctx.fill()
return surface
class DefaultIcon(GObject.GObject):
"""Provides the symbolic fallback and loading icons."""
class Type(Enum):
LOADING = 'content-loading-symbolic'
MUSIC = 'folder-music-symbolic'
_cache = {}
def __repr__(self):
return '<DefaultIcon>'
@log
def __init__(self):
super().__init__()
@log
def _make_default_icon(self, icon_type, art_size, scale):
width = art_size.width * scale
height = art_size.height * scale
icon = Gtk.IconTheme.get_default().load_icon(icon_type.value,
max(width, height) / 4,
0)
# create an empty pixbuf with the requested size
result = GdkPixbuf.Pixbuf.new(icon.get_colorspace(),
True,
icon.get_bits_per_sample(),
width,
height)
result.fill(0xffffffff)
icon.composite(result,
icon.get_width() * 3 / 2,
icon.get_height() * 3 / 2,
icon.get_width(),
icon.get_height(),
icon.get_width() * 3 / 2,
icon.get_height() * 3 / 2,
1, 1, GdkPixbuf.InterpType.HYPER, 0x33)
icon_surface = _make_icon_frame(result, art_size, scale)
return icon_surface
@log
def get(self, icon_type, art_size, scale=1):
"""Returns the requested symbolic icon
Returns a cairo surface of the requested symbolic icon in the
given size.
:param enum icon_type: The DefaultIcon.Type of the icon
:param enum art_size: The Art.Size requested
:return: The symbolic icon
:rtype: cairo.Surface
"""
if (icon_type, art_size, scale) not in self._cache.keys():
new_icon = self._make_default_icon(icon_type, art_size, scale)
self._cache[(icon_type, art_size, scale)] = new_icon
return self._cache[(icon_type, art_size, scale)]
class Art(GObject.GObject):
"""Retrieves art for an album or song
This is the control class for retrieving art.
It looks for art in
1. The MediaArt cache
2. Embedded or in the directory
3. Remotely
"""
__gsignals__ = {
'finished': (GObject.SignalFlags.RUN_FIRST, None, ())
}
_blacklist = {}
class Size(Enum):
"""Enum for icon sizes"""
XSMALL = (34, 34)
SMALL = (48, 48)
MEDIUM = (128, 128)
LARGE = (256, 256)
XLARGE = (512, 512)
def __init__(self, width, height):
"""Intialize width and height"""
self.width = width
self.height = height
def __repr__(self):
return '<Art>'
@log
def __init__(self, size, media, scale=1):
super().__init__()
self._size = size
self._media = media
self._media_url = self._media.get_url()
self._surface = None
self._scale = scale
@log
def lookup(self):
"""Starts the art lookup sequence"""
if self._in_blacklist():
self._no_art_available()
return
cache = Cache()
cache.connect('miss', self._cache_miss)
cache.connect('hit', self._cache_hit)
cache.query(self._media)
@log
def _cache_miss(self, klass):
embedded_art = EmbeddedArt()
embedded_art.connect('found', self._embedded_art_found)
embedded_art.connect('unavailable', self._embedded_art_unavailable)
embedded_art.query(self._media)
@log
def _cache_hit(self, klass, pixbuf):
surface = _make_icon_frame(pixbuf, self._size, self._scale)
self._surface = surface
self._set_grilo_thumbnail_path()
self.emit('finished')
@log
def _embedded_art_found(self, klass):
cache = Cache()
# In case of an error in local art retrieval, there are two
# options:
# 1. Go and check for remote art instead
# 2. Consider it a fail and add it to the blacklist
# Go with option 1 here, because it gives the user the biggest
# chance of getting artwork.
cache.connect('miss', self._embedded_art_unavailable)
cache.connect('hit', self._cache_hit)
cache.query(self._media)
@log
def _embedded_art_unavailable(self, klass):
remote_art = RemoteArt()
remote_art.connect('retrieved', self._remote_art_retrieved)
remote_art.connect('unavailable', self._remote_art_unavailable)
remote_art.query(self._media)
@log
def _remote_art_retrieved(self, klass):
cache = Cache()
cache.connect('miss', self._remote_art_unavailable)
cache.connect('hit', self._cache_hit)
cache.query(self._media)
@log
def _remote_art_unavailable(self, klass):
self._add_to_blacklist()
self._no_art_available()
@log
def _no_art_available(self):
self._surface = DefaultIcon().get(
DefaultIcon.Type.MUSIC, self._size, self._scale)
self.emit('finished')
@log
def _add_to_blacklist(self):
album = utils.get_album_title(self._media)
artist = utils.get_artist_name(self._media)
if artist not in self._blacklist:
self._blacklist[artist] = []
album_stripped = MediaArt.strip_invalid_entities(album)
self._blacklist[artist].append(album_stripped)
@log
def _in_blacklist(self):
album = utils.get_album_title(self._media)
artist = utils.get_artist_name(self._media)
album_stripped = MediaArt.strip_invalid_entities(album)
if artist in self._blacklist:
if album_stripped in self._blacklist[artist]:
return True
return False
def _set_grilo_thumbnail_path(self):
# TODO: This sets the thumbnail path for the Grilo Media object
# to be used by MPRIS. However, calling this by default for
# every cache hit is unnecessary.
album = utils.get_album_title(self._media)
artist = utils.get_artist_name(self._media)
success, thumb_file = MediaArt.get_file(artist, album, "album")
if success:
self._media.set_thumbnail(
GLib.filename_to_uri(thumb_file.get_path(), None))
@GObject.Property
@log
def surface(self):
if self._surface is None:
self._surface = DefaultIcon().get(
DefaultIcon.Type.LOADING, self._size, self._scale)
return self._surface
class ArtImage(Art):
"""Extends Art class to support Gtk.Image specifically"""
def __repr__(self):
return '<ArtImage>'
@log
def __init__(self, size, media):
super().__init__(size, media)
self._image = None
@log
def _cache_hit(self, klass, pixbuf):
super()._cache_hit(klass, pixbuf)
self._image.set_from_surface(self._surface)
@log
def _no_art_available(self):
super()._no_art_available()
self._image.set_from_surface(self._surface)
@GObject.Property
@log
def image(self):
"""Returns the image object of the ArtImage class
:returns: The current image available in the class
:rtype: Gtk.Image
"""
return self._image.set_from_surface(self._surface)
@image.setter
@log
def image(self, image):
"""Set the image of the Art class instance""
And starts the lookup process, automatically updating the image
when found.
:param Gtk.Image image: An Gtk.Image object
"""
self._image = image
self._image.set_property("width-request", self._size.width)
self._image.set_property("height-request", self._size.height)
self._scale = self._image.get_scale_factor()
self._surface = DefaultIcon().get(
DefaultIcon.Type.LOADING, self._size, self._scale)
self._image.set_from_surface(self._surface)
self.lookup()
class Cache(GObject.GObject):
"""Handles retrieval of MediaArt cache art
Uses signals to indicate success or failure.
"""
__gsignals__ = {
'miss': (GObject.SignalFlags.RUN_FIRST, None, ()),
'hit': (GObject.SignalFlags.RUN_FIRST, None, (GObject.GObject, ))
}
def __repr__(self):
return '<Cache>'
@log
def __init__(self):
super().__init__()
self._media_art = MediaArt.Process.new()
# FIXME: async
self.cache_dir = os.path.join(GLib.get_user_cache_dir(), 'media-art')
if not os.path.exists(self.cache_dir):
try:
Gio.file_new_for_path(self.cache_dir).make_directory(None)
except GLib.Error as error:
logger.warning(
"Error: {}, {}".format(error.domain, error.message))
return
@log
def query(self, media):
"""Start the cache query
:param Grl.Media media: The media object to search art for
"""
album = utils.get_album_title(media)
artist = utils.get_artist_name(media)
success, thumb_file = MediaArt.get_file(artist, album, "album")
if (success
and thumb_file.query_exists()):
thumb_file.read_async(
GLib.PRIORITY_LOW, None, self._open_stream, None)
return
self.emit('miss')
@log
def _open_stream(self, thumb_file, result, arguments):
try:
stream = thumb_file.read_finish(result)
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
self.emit('miss')
return
GdkPixbuf.Pixbuf.new_from_stream_async(
stream, None, self._pixbuf_loaded, None)
@log
def _pixbuf_loaded(self, stream, result, data):
try:
pixbuf = GdkPixbuf.Pixbuf.new_from_stream_finish(result)
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
self.emit('miss')
return
stream.close_async(GLib.PRIORITY_LOW, None, self._close_stream, None)
self.emit('hit', pixbuf)
@log
def _close_stream(self, stream, result, data):
try:
stream.close_finish(result)
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
class EmbeddedArt(GObject.GObject):
"""Lookup local art
1. Embedded through Gstreamer
2. Available in the directory through MediaArt
"""
__gsignals__ = {
'found': (GObject.SignalFlags.RUN_FIRST, None, ()),
'unavailable': (GObject.SignalFlags.RUN_FIRST, None, ())
}
def __repr__(self):
return '<EmbeddedArt>'
@log
def __init__(self):
super().__init__()
try:
Gst.init(None)
GstPbutils.pb_utils_init()
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
return
self._media_art = MediaArt.Process.new()
self._album = None
self._artist = None
self._media = None
self._path = None
@log
def query(self, media):
"""Start the local query
:param Grl.Media media: The media object to search art for
"""
if media.get_url() is None:
self.emit('unavailable')
return
self._album = utils.get_album_title(media)
self._artist = utils.get_artist_name(media)
self._media = media
try:
discoverer = GstPbutils.Discoverer.new(Gst.SECOND)
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
self._lookup_cover_in_directory()
return
discoverer.connect('discovered', self._discovered)
discoverer.start()
success, path = MediaArt.get_path(self._artist, self._album, "album")
if not success:
self.emit('unavailable')
discoverer.stop()
return
self._path = path
success = discoverer.discover_uri_async(self._media.get_url())
if not success:
logger.warning("Could not add url to discoverer.")
self.emit('unavailable')
discoverer.stop()
return
@log
def _discovered(self, discoverer, info, error):
tags = info.get_tags()
index = 0
# FIXME: tags should not return as None, but it sometimes is.
# So as a workaround until we figure out what is wrong check
# for it.
# https://bugzilla.gnome.org/show_bug.cgi?id=780980
if (error is not None
or tags is None):
if error:
logger.warning("Discoverer error: {}, {}".format(
Gst.CoreError(error.code), error.message))
discoverer.stop()
self.emit('unavailable')
return
while True:
success, sample = tags.get_sample_index(Gst.TAG_IMAGE, index)
if not success:
break
index += 1
struct = sample.get_info()
success, image_type = struct.get_enum(
'image-type', GstTag.TagImageType)
if not success:
continue
if image_type != GstTag.TagImageType.FRONT_COVER:
continue
buf = sample.get_buffer()
success, map_info = buf.map(Gst.MapFlags.READ)
if not success:
continue
try:
mime = sample.get_caps().get_structure(0).get_name()
MediaArt.buffer_to_jpeg(map_info.data, mime, self._path)
self.emit('found')
discoverer.stop()
return
except GLib.Error as error:
logger.warning("Error: {}, {}".format(
MediaArt.Error(error.code), error.message))
discoverer.stop()
self._lookup_cover_in_directory()
@log
def _lookup_cover_in_directory(self):
# Find local art in cover.jpeg files.
self._media_art.uri_async(
MediaArt.Type.ALBUM, MediaArt.ProcessFlags.NONE,
self._media.get_url(), self._artist, self._album,
GLib.PRIORITY_LOW, None, self._uri_async_cb, None)
@log
def _uri_async_cb(self, src, result, data):
try:
success = self._media_art.uri_finish(result)
if success:
self.emit('found')
return
except GLib.Error as error:
if MediaArt.Error(error.code) == MediaArt.Error.SYMLINK_FAILED:
# This error indicates that the coverart has already
# been linked by another concurrent lookup.
self.emit('found')
return
else:
logger.warning("Error: {}, {}".format(
MediaArt.Error(error.code), error.message))
self.emit('unavailable')
class RemoteArt(GObject.GObject):
"""Looks for remote art through Grilo
Uses Grilo coverart providers to retrieve art.
"""
__gsignals__ = {
'retrieved': (GObject.SignalFlags.RUN_FIRST, None, ()),
'unavailable': (GObject.SignalFlags.RUN_FIRST, None, ())
}
def __repr__(self):
return '<RemoteArt>'
@log
def __init__(self):
super().__init__()
self._artist = None
self._album = None
@log
def query(self, media):
"""Start the remote query
:param Grl.Media media: The media object to search art for
"""
self._album = utils.get_album_title(media)
self._artist = utils.get_artist_name(media)
# FIXME: It seems this Grilo query does not always return,
# especially on queries with little info.
grilo.get_album_art_for_item(media, self._remote_album_art)
@log
def _delete_callback(self, src, result, data):
try:
src.delete_finish(result)
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
@log
def _splice_callback(self, src, result, data):
tmp_file, iostream = data
iostream.close_async(
GLib.PRIORITY_LOW, None, self._close_iostream_callback, None)
try:
src.splice_finish(result)
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
self.emit('unavailable')
return
success, cache_path = MediaArt.get_path(
self._artist, self._album, "album")
if not success:
self.emit('unavailable')
return
try:
# FIXME: I/O blocking
MediaArt.file_to_jpeg(tmp_file.get_path(), cache_path)
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
self.emit('unavailable')
return
self.emit('retrieved')
tmp_file.delete_async(
GLib.PRIORITY_LOW, None, self._delete_callback, None)
@log
def _close_iostream_callback(self, src, result, data):
try:
src.close_finish(result)
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
@log
def _read_callback(self, src, result, data):
try:
istream = src.read_finish(result)
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
self.emit('unavailable')
return
try:
[tmp_file, iostream] = Gio.File.new_tmp()
except GLib.Error as error:
logger.warning("Error: {}, {}".format(error.domain, error.message))
self.emit('unavailable')
return
ostream = iostream.get_output_stream()
# FIXME: Passing the iostream here, otherwise it gets
# closed. PyGI specific issue?
ostream.splice_async(
istream, Gio.OutputStreamSpliceFlags.CLOSE_SOURCE |
Gio.OutputStreamSpliceFlags.CLOSE_TARGET, GLib.PRIORITY_LOW,
None, self._splice_callback, [tmp_file, iostream])
@log
def _remote_album_art(self, source, param, item, count, error):
if error:
logger.warning("Grilo error {}".format(error))
self.emit('unavailable')
return
thumb_uri = item.get_thumbnail()
if thumb_uri is None:
self.emit('unavailable')
return
src = Gio.File.new_for_uri(thumb_uri)
src.read_async(
GLib.PRIORITY_LOW, None, self._read_callback, None)
|