/usr/lib/python3/dist-packages/gnomemusic/albumArtCache.py is in gnome-music 3.18.2-1ubuntu1.
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 | # Copyright (c) 2013 Vadim Rutkovsky <vrutkovs@redhat.com>
# Copyright (c) 2013 Arnel A. Borja <kyoushuu@yahoo.com>
# Copyright (c) 2013 Seif Lotfy <seif@lotfy.com>
# Copyright (c) 2013 Guillaume Quintard <guillaume.quintard@gmail.com>
# Copyright (c) 2013 Lubosz Sarnecki <lubosz@gmail.com>
# Copyright (c) 2013 Sai Suman Prayaga <suman.sai14@gmail.com>
#
# 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.
import gi
gi.require_version('MediaArt', '2.0')
from gi.repository import Gtk, GdkPixbuf, Gio, GLib, Gdk, MediaArt, GObject
from gettext import gettext as _
import cairo
from math import pi
import os
from threading import Thread, Lock
from gnomemusic import log
from gnomemusic.grilo import grilo
import logging
import urllib.request
logger = logging.getLogger(__name__)
THREAD_QUEUE = []
@log
def _make_icon_frame(pixbuf, path=None):
border = 1.5
degrees = pi / 180
radius = 3
w = pixbuf.get_width()
h = pixbuf.get_height()
new_pixbuf = pixbuf.scale_simple(w - border * 2,
h - border * 2,
0)
surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, w, h)
ctx = cairo.Context(surface)
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()
ctx.set_source_rgb(1, 1, 1)
ctx.fill()
border_pixbuf = Gdk.pixbuf_get_from_surface(surface, 0, 0, w, h)
new_pixbuf.copy_area(border, border,
w - border * 4,
h - border * 4,
border_pixbuf,
border * 2, border * 2)
return border_pixbuf
class AlbumArtCache(GObject.GObject):
instance = None
blacklist = {}
itr_queue = []
threading_lock = Lock()
default_icons_cache = {}
default_icon_width = 256
default_icon_height = 256
def __repr__(self):
return '<AlbumArt>'
__gsignals__ = {
'thread-added': (GObject.SignalFlags.RUN_FIRST, None, (int,)),
}
@classmethod
def get_default(cls):
if not cls.instance:
cls.instance = AlbumArtCache()
return cls.instance
@staticmethod
def get_media_title(media, escaped=False):
title = media.get_title()
if title:
if escaped:
return GLib.markup_escape_text(title)
else:
return title
uri = media.get_url()
if uri is None:
return _("Untitled")
uri_file = Gio.File.new_for_path(uri)
basename = uri_file.get_basename()
try:
title = GLib.uri_unescape_string(basename, '')
except:
title = _("Untitled")
pass
if escaped:
return GLib.markup_escape_text(title)
return title
def worker(self, object, id):
try:
item = THREAD_QUEUE[id]
item.setDaemon(True)
item.start()
item.join(30)
except Exception as e:
logger.warn("worker item %s: error %s", item, str(e))
@log
def __init__(self):
GObject.GObject.__init__(self)
try:
self.cacheDir = os.path.join(GLib.get_user_cache_dir(), 'media-art')
if not os.path.exists(self.cacheDir):
Gio.file_new_for_path(self.cacheDir).make_directory(None)
except Exception as e:
logger.warn("Error: %s", e)
# Prepare default icons
self.make_default_icon(is_loading=False)
self.make_default_icon(is_loading=True)
self.connect('thread-added', self.worker)
def make_default_icon(self, is_loading=False):
width = self.default_icon_width
height = self.default_icon_height
# get a small pixbuf with the given path
icon_name = 'folder-music-symbolic'
if is_loading:
icon_name = 'content-loading-symbolic'
icon = Gtk.IconTheme.get_default().load_icon(icon_name, 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(),
icon.get_width() * 4,
icon.get_height() * 4)
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.NEAREST, 0x33)
final_icon = _make_icon_frame(result)
if width not in self.default_icons_cache:
self.default_icons_cache[width] = {}
if height not in self.default_icons_cache[width]:
self.default_icons_cache[width][height] = {}
self.default_icons_cache[width][height][is_loading] = final_icon
@log
def get_default_icon(self, width, height, is_loading=False):
# Try to fetch the icon from cache
try:
return self.default_icons_cache[width][height][is_loading]
except:
pass
# Scale the image down
orig_icon = self.default_icons_cache[self.default_icon_width][self.default_icon_height][is_loading].copy()
final_icon = orig_icon.scale_simple(width, height, GdkPixbuf.InterpType.BILINEAR)
# Create a cache reference
if width not in self.default_icons_cache:
self.default_icons_cache[width] = {}
if height not in self.default_icons_cache[width]:
self.default_icons_cache[width][height] = {}
self.default_icons_cache[width][height][is_loading] = final_icon
return final_icon
@log
def lookup(self, item, width, height, callback, itr, artist, album):
if artist in self.blacklist and album in self.blacklist[artist]:
self.finish(item, None, None, callback, itr, width, height)
return
try:
# Make sure we don't lookup the same iterators several times
with self.threading_lock:
if itr:
if itr.user_data in self.itr_queue:
return
self.itr_queue.append(itr.user_data)
t = Thread(target=self.lookup_worker, args=(item, width, height, callback, itr, artist, album))
THREAD_QUEUE.append(t)
self.emit('thread-added', len(THREAD_QUEUE) - 1)
except Exception as e:
logger.warn("Error: %s, %s", e.__class__, e)
@log
def lookup_worker(self, item, width, height, callback, itr, artist, album):
try:
if artist in self.blacklist and album in self.blacklist[artist]:
self.finish(item, None, None, callback, itr, width, height)
return
path = None
mediaart_tuple = MediaArt.get_path(artist, album, "album")
for i in mediaart_tuple:
if isinstance(i, str):
path = i
break
if not os.path.exists(path):
GLib.idle_add(self.cached_thumb_not_found, item, width, height, path, callback, itr, artist, album)
return
width = width or -1
height = height or -1
pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_scale(path, width, height, True)
self.finish(item, _make_icon_frame(pixbuf), path, callback, itr, width, height)
except Exception as e:
logger.warn("Error: %s", e)
@log
def finish(self, item, pixbuf, path, callback, itr, width=-1, height=-1, artist=None, album=None):
if (pixbuf is None and artist is not None):
# Blacklist artist-album combination
if artist not in self.blacklist:
self.blacklist[artist] = []
self.blacklist[artist].append(album)
if pixbuf is None:
pixbuf = self.get_default_icon(width, height, False)
try:
if path:
item.set_thumbnail(GLib.filename_to_uri(path, None))
GLib.idle_add(callback, pixbuf, path, itr)
except Exception as e:
logger.warn("Error: %s", e)
@log
def cached_thumb_not_found(self, item, width, height, path, callback, itr, artist, album):
try:
uri = item.get_thumbnail()
if uri is None:
grilo.get_album_art_for_item(item, self.album_art_for_item_callback,
(item, width, height, path, callback, itr, artist, album))
return
t = Thread(target=self.download_worker, args=(item, width, height, path, callback, itr, artist, album, uri))
THREAD_QUEUE.append(t)
self.emit('thread-added', len(THREAD_QUEUE) - 1)
except Exception as e:
logger.warn("Error: %s", e)
self.finish(item, None, None, callback, itr, width, height, artist, album)
@log
def album_art_for_item_callback(self, source, param, item, count, data, error):
old_item, width, height, path, callback, itr, artist, album = data
try:
if item is None:
return
uri = item.get_thumbnail()
if uri is None:
logger.warn("can't find artwork for album '%s' by %s", album, artist)
self.finish(item, None, None, callback, itr, width, height, artist, album)
return
t = Thread(target=self.download_worker, args=(item, width, height, path, callback, itr, artist, album, uri))
THREAD_QUEUE.append(t)
self.emit('thread-added', len(THREAD_QUEUE) - 1)
except Exception as e:
logger.warn("Error: %s", e)
self.finish(item, None, None, callback, itr, width, height, artist, album)
@log
def download_worker(self, item, width, height, path, callback, itr, artist, album, uri):
try:
src = Gio.File.new_for_uri(uri)
dest = Gio.File.new_for_path(path)
try:
# First lets use GLib
src.copy(dest, Gio.FileCopyFlags.OVERWRITE)
except Exception as e:
# Try the native python way
urllib.request.urlretrieve(uri, path)
self.lookup_worker(item, width, height, callback, itr, artist, album)
except Exception as e:
logger.warn("Error: %s", e)
self.finish(item, None, None, callback, itr, width, height, artist, album)
|