2012-10-13 12:53:09 +00:00
|
|
|
# coding: utf-8
|
|
|
|
|
2012-10-21 14:18:35 +00:00
|
|
|
import os, os.path
|
2013-11-26 07:59:08 +00:00
|
|
|
import time
|
2013-10-14 16:36:45 +00:00
|
|
|
import mutagen
|
2013-10-15 16:16:16 +00:00
|
|
|
import config, db
|
2013-11-04 01:43:16 +00:00
|
|
|
import math
|
2013-11-26 07:59:08 +00:00
|
|
|
import sys, traceback
|
2013-11-04 01:43:16 +00:00
|
|
|
from web import app
|
2012-10-13 12:53:09 +00:00
|
|
|
|
2013-11-26 07:59:08 +00:00
|
|
|
from profilehooks import profile
|
2013-10-15 11:14:20 +00:00
|
|
|
|
2012-10-13 12:53:09 +00:00
|
|
|
class Scanner:
|
|
|
|
def __init__(self, session):
|
|
|
|
self.__session = session
|
2013-11-26 07:59:08 +00:00
|
|
|
|
2012-12-01 18:52:41 +00:00
|
|
|
self.__tracks = db.Track.query.all()
|
2013-11-04 01:43:16 +00:00
|
|
|
self.__tracks = {x.path: x for x in self.__tracks}
|
2013-11-03 20:46:19 +00:00
|
|
|
|
2012-10-13 22:37:06 +00:00
|
|
|
self.__artists = db.Artist.query.all()
|
2013-11-26 07:59:08 +00:00
|
|
|
self.__artists = {x.name.lower(): x for x in self.__artists}
|
|
|
|
|
2012-10-21 14:18:35 +00:00
|
|
|
self.__folders = db.Folder.query.all()
|
2013-11-26 07:59:08 +00:00
|
|
|
self.__folders = {x.path: x for x in self.__folders}
|
|
|
|
|
|
|
|
self.__playlists = db.Playlist.query.all()
|
2012-10-21 14:18:35 +00:00
|
|
|
|
2012-10-13 12:53:09 +00:00
|
|
|
self.__added_artists = 0
|
2012-12-01 18:52:41 +00:00
|
|
|
self.__added_albums = 0
|
|
|
|
self.__added_tracks = 0
|
2012-10-13 12:53:09 +00:00
|
|
|
self.__deleted_artists = 0
|
2012-12-01 18:52:41 +00:00
|
|
|
self.__deleted_albums = 0
|
|
|
|
self.__deleted_tracks = 0
|
2012-10-13 12:53:09 +00:00
|
|
|
|
|
|
|
def scan(self, folder):
|
2013-11-01 21:12:38 +00:00
|
|
|
print "scanning", folder.path
|
2013-11-03 20:46:19 +00:00
|
|
|
valid = [x.lower() for x in config.get('base','filetypes').split(',')]
|
2013-11-26 07:59:08 +00:00
|
|
|
valid = tuple(valid)
|
2013-11-03 20:46:19 +00:00
|
|
|
print "valid filetypes: ",valid
|
|
|
|
|
2013-11-01 18:46:16 +00:00
|
|
|
for root, subfolders, files in os.walk(folder.path, topdown=False):
|
2012-10-13 12:53:09 +00:00
|
|
|
for f in files:
|
2013-11-26 07:59:08 +00:00
|
|
|
if f.lower().endswith(valid):
|
2013-11-04 01:43:16 +00:00
|
|
|
try:
|
|
|
|
self.__scan_file(os.path.join(root, f), folder)
|
|
|
|
except:
|
|
|
|
app.logger.error('Problem adding file: ' + os.path.join(root,f))
|
2013-11-26 07:59:08 +00:00
|
|
|
app.logger.error(traceback.print_exc())
|
|
|
|
sys.exit(0)
|
2013-11-04 01:43:16 +00:00
|
|
|
self.__session.rollback()
|
2013-11-03 20:46:19 +00:00
|
|
|
|
2013-11-26 07:59:08 +00:00
|
|
|
print "\a"
|
|
|
|
self.__session.add_all(self.__tracks.values())
|
2013-11-04 19:00:15 +00:00
|
|
|
self.__session.commit()
|
2013-06-14 16:46:01 +00:00
|
|
|
folder.last_scan = int(time.time())
|
2012-10-13 12:53:09 +00:00
|
|
|
|
|
|
|
def prune(self, folder):
|
2013-11-26 07:59:08 +00:00
|
|
|
for path, root_folder_id, track_id in self.__session.query(db.Track.path, db.Track.root_folder_id, db.Track.id):
|
|
|
|
if root_folder_id == folder.id and not os.path.exists(path):
|
|
|
|
app.logger.debug('Removed invalid path: ' + path)
|
|
|
|
self.__remove_track(self.__session.merge(db.Track(id = track_id)))
|
|
|
|
|
|
|
|
self.__session.commit()
|
2012-12-01 18:52:41 +00:00
|
|
|
|
2013-11-26 07:59:08 +00:00
|
|
|
for album in [ album for artist in self.__artists.values() for album in artist.albums if len(album.tracks) == 0 ]:
|
2012-12-01 18:52:41 +00:00
|
|
|
album.artist.albums.remove(album)
|
|
|
|
self.__session.delete(album)
|
|
|
|
self.__deleted_albums += 1
|
|
|
|
|
2013-11-26 07:59:08 +00:00
|
|
|
self.__session.commit()
|
|
|
|
|
|
|
|
for artist in [ a for a in self.__artists.values() if len(a.albums) == 0 ]:
|
2012-12-01 18:52:41 +00:00
|
|
|
self.__session.delete(artist)
|
|
|
|
self.__deleted_artists += 1
|
2012-10-13 12:53:09 +00:00
|
|
|
|
2013-11-26 07:59:08 +00:00
|
|
|
self.__session.commit()
|
2012-11-11 20:39:26 +00:00
|
|
|
|
2013-11-26 07:59:08 +00:00
|
|
|
self.__cleanup_folder(folder)
|
2013-11-02 18:52:02 +00:00
|
|
|
|
2013-11-26 07:59:08 +00:00
|
|
|
@profile
|
2012-10-14 11:07:02 +00:00
|
|
|
def __scan_file(self, path, folder):
|
2013-11-04 19:00:15 +00:00
|
|
|
curmtime = int(math.floor(os.path.getmtime(path)))
|
|
|
|
|
2013-11-03 20:46:19 +00:00
|
|
|
if path in self.__tracks:
|
|
|
|
tr = self.__tracks[path]
|
2013-11-04 19:00:15 +00:00
|
|
|
|
2013-11-26 07:59:08 +00:00
|
|
|
app.logger.debug('Existing File: ' + path)
|
2013-11-04 19:00:15 +00:00
|
|
|
if not tr.last_modification:
|
|
|
|
tr.last_modification = curmtime
|
|
|
|
|
2013-11-04 01:43:16 +00:00
|
|
|
if curmtime <= tr.last_modification:
|
|
|
|
app.logger.debug('\tFile not modified')
|
2013-11-03 20:46:19 +00:00
|
|
|
return False
|
2012-12-01 18:52:41 +00:00
|
|
|
|
2013-11-04 01:43:16 +00:00
|
|
|
app.logger.debug('\tFile modified, updating tag')
|
|
|
|
app.logger.debug('\tcurmtime %s / last_mod %s', curmtime, tr.last_modification)
|
|
|
|
app.logger.debug('\t\t%s Seconds Newer\n\t\t', str(curmtime - tr.last_modification))
|
2013-10-14 16:36:45 +00:00
|
|
|
tag = self.__try_load_tag(path)
|
|
|
|
if not tag:
|
2013-11-04 01:43:16 +00:00
|
|
|
app.logger.debug('\tError retrieving tags, removing track from DB')
|
2013-10-14 16:36:45 +00:00
|
|
|
self.__remove_track(tr)
|
2013-11-03 20:46:19 +00:00
|
|
|
return False
|
2013-10-14 16:36:45 +00:00
|
|
|
else:
|
2013-11-26 07:59:08 +00:00
|
|
|
app.logger.debug('Scanning File: ' + path + '\n\tReading tag')
|
2013-10-14 16:36:45 +00:00
|
|
|
tag = self.__try_load_tag(path)
|
|
|
|
if not tag:
|
2013-11-04 01:43:16 +00:00
|
|
|
app.logger.debug('\tProblem reading tag')
|
2013-11-03 20:46:19 +00:00
|
|
|
return False
|
2013-10-14 16:36:45 +00:00
|
|
|
|
|
|
|
tr = db.Track(path = path, root_folder = folder, folder = self.__find_folder(path, folder))
|
2013-11-26 07:59:08 +00:00
|
|
|
|
2013-11-03 20:46:19 +00:00
|
|
|
self.__tracks[path] = tr
|
2013-10-14 16:36:45 +00:00
|
|
|
self.__added_tracks += 1
|
|
|
|
|
2013-11-04 19:00:15 +00:00
|
|
|
tr.last_modification = curmtime
|
2013-10-14 16:36:45 +00:00
|
|
|
tr.disc = self.__try_read_tag(tag, 'discnumber', 1, lambda x: int(x[0].split('/')[0]))
|
|
|
|
tr.number = self.__try_read_tag(tag, 'tracknumber', 1, lambda x: int(x[0].split('/')[0]))
|
2013-10-26 11:13:19 +00:00
|
|
|
tr.title = self.__try_read_tag(tag, 'title', '')
|
2013-10-14 16:36:45 +00:00
|
|
|
tr.year = self.__try_read_tag(tag, 'date', None, lambda x: int(x[0].split('-')[0]))
|
|
|
|
tr.genre = self.__try_read_tag(tag, 'genre')
|
|
|
|
tr.duration = int(tag.info.length)
|
2013-11-26 07:59:08 +00:00
|
|
|
|
|
|
|
# TODO: use album artist if available, then artist, then unknown
|
2013-11-03 20:46:19 +00:00
|
|
|
tr.album = self.__find_album(self.__try_read_tag(tag, 'artist', 'Unknown'), self.__try_read_tag(tag, 'album', 'Unknown'))
|
2013-11-26 07:59:08 +00:00
|
|
|
|
2013-10-16 07:53:43 +00:00
|
|
|
tr.bitrate = (tag.info.bitrate if hasattr(tag.info, 'bitrate') else int(os.path.getsize(path) * 8 / tag.info.length)) / 1000
|
2012-10-13 12:53:09 +00:00
|
|
|
|
2013-11-03 20:46:19 +00:00
|
|
|
return True
|
|
|
|
|
2012-10-13 12:53:09 +00:00
|
|
|
def __find_album(self, artist, album):
|
2013-11-26 07:59:08 +00:00
|
|
|
# TODO : DB specific issues with single column name primary key
|
|
|
|
# for instance, case sensitivity and trailing spaces
|
|
|
|
artist = artist.rstrip()
|
2012-10-13 12:53:09 +00:00
|
|
|
|
2013-11-26 07:59:08 +00:00
|
|
|
if artist in self.__artists:
|
|
|
|
ar = self.__artists[artist]
|
|
|
|
else:
|
|
|
|
#Flair!
|
|
|
|
sys.stdout.write('\033[K')
|
|
|
|
sys.stdout.write('%s\r' % artist)
|
|
|
|
sys.stdout.flush()
|
|
|
|
ar = db.Artist(name = artist)
|
|
|
|
self.__artists[artist] = ar
|
|
|
|
self.__added_artists += 1
|
|
|
|
|
|
|
|
al = {a.name: a for a in ar.albums}
|
|
|
|
if album in al:
|
|
|
|
return al[album]
|
|
|
|
else:
|
|
|
|
self.__added_albums += 1
|
|
|
|
return db.Album(name = album, artist = ar)
|
2012-10-13 12:53:09 +00:00
|
|
|
|
2012-10-21 14:18:35 +00:00
|
|
|
def __find_folder(self, path, folder):
|
2013-11-26 07:59:08 +00:00
|
|
|
|
2012-10-21 14:18:35 +00:00
|
|
|
path = os.path.dirname(path)
|
2013-11-26 07:59:08 +00:00
|
|
|
if path in self.__folders:
|
|
|
|
return self.__folders[path]
|
2012-10-21 14:18:35 +00:00
|
|
|
|
2013-11-26 07:59:08 +00:00
|
|
|
# must find parent directory to create new one
|
2012-10-21 14:18:35 +00:00
|
|
|
full_path = folder.path
|
|
|
|
path = path[len(folder.path) + 1:]
|
|
|
|
|
|
|
|
for name in path.split(os.sep):
|
|
|
|
full_path = os.path.join(full_path, name)
|
2013-11-26 07:59:08 +00:00
|
|
|
|
|
|
|
if full_path in self.__folders:
|
|
|
|
folder = self.__folders[full_path]
|
2012-10-21 14:18:35 +00:00
|
|
|
else:
|
|
|
|
folder = db.Folder(root = False, name = name, path = full_path, parent = folder)
|
2013-11-26 07:59:08 +00:00
|
|
|
self.__folders[full_path] = folder
|
2012-10-21 14:18:35 +00:00
|
|
|
|
|
|
|
return folder
|
|
|
|
|
2013-10-14 16:36:45 +00:00
|
|
|
def __try_load_tag(self, path):
|
|
|
|
try:
|
2013-11-04 01:43:16 +00:00
|
|
|
return mutagen.File(path, easy = True)
|
2013-10-14 16:36:45 +00:00
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __try_read_tag(self, metadata, field, default = None, transform = lambda x: x[0]):
|
|
|
|
try:
|
|
|
|
value = metadata[field]
|
|
|
|
if not value:
|
|
|
|
return default
|
|
|
|
if transform:
|
|
|
|
value = transform(value)
|
|
|
|
return value if value else default
|
|
|
|
except:
|
|
|
|
return default
|
|
|
|
|
|
|
|
def __remove_track(self, track):
|
|
|
|
# As we don't have a track -> playlists relationship, SQLAlchemy doesn't know it has to remove tracks
|
|
|
|
# from playlists as well, so let's help it
|
2013-11-26 07:59:08 +00:00
|
|
|
for playlist in self.__playlists:
|
|
|
|
if track in playlist.tracks:
|
|
|
|
playlist.tracks.remove(track)
|
|
|
|
|
2013-10-14 16:36:45 +00:00
|
|
|
self.__session.delete(track)
|
|
|
|
self.__deleted_tracks += 1
|
|
|
|
|
2012-10-21 14:18:35 +00:00
|
|
|
def __cleanup_folder(self, folder):
|
|
|
|
for f in folder.children:
|
|
|
|
self.__cleanup_folder(f)
|
|
|
|
if len(folder.children) == 0 and len(folder.tracks) == 0 and not folder.root:
|
|
|
|
folder.parent = None
|
|
|
|
self.__session.delete(folder)
|
|
|
|
|
2012-10-13 12:53:09 +00:00
|
|
|
def stats(self):
|
|
|
|
return (self.__added_artists, self.__added_albums, self.__added_tracks), (self.__deleted_artists, self.__deleted_albums, self.__deleted_tracks)
|
|
|
|
|