2011-09-20 22:40:27 +00:00
|
|
|
# Created On: 2011/09/20
|
|
|
|
# Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
#
|
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
|
2011-09-21 17:55:26 +00:00
|
|
|
from hscommon.util import format_size, format_time
|
2011-09-21 14:26:58 +00:00
|
|
|
|
2011-11-26 15:55:14 +00:00
|
|
|
from core.app import (DupeGuru as DupeGuruBase, format_timestamp,
|
2011-09-21 14:26:58 +00:00
|
|
|
format_perc, format_words, format_dupe_count, cmp_value)
|
|
|
|
from . import prioritize
|
2011-09-21 14:35:34 +00:00
|
|
|
from . import __appname__
|
2011-09-21 18:04:41 +00:00
|
|
|
from . import scanner, fs
|
2011-11-27 17:47:00 +00:00
|
|
|
from .result_table import ResultTable
|
2011-09-20 22:40:27 +00:00
|
|
|
|
|
|
|
class DupeGuru(DupeGuruBase):
|
2011-09-21 14:35:34 +00:00
|
|
|
NAME = __appname__
|
2011-09-21 14:26:58 +00:00
|
|
|
METADATA_TO_READ = ['size', 'mtime', 'duration', 'bitrate', 'samplerate', 'title', 'artist',
|
|
|
|
'album', 'genre', 'year', 'track', 'comment']
|
2011-11-27 17:47:00 +00:00
|
|
|
|
2011-09-20 22:40:27 +00:00
|
|
|
def __init__(self, view, appdata):
|
2011-09-21 14:26:58 +00:00
|
|
|
DupeGuruBase.__init__(self, view, appdata)
|
2011-09-21 18:04:41 +00:00
|
|
|
self.scanner = scanner.ScannerME()
|
|
|
|
self.directories.fileclasses = [fs.MusicFile]
|
2011-11-27 17:47:00 +00:00
|
|
|
self.result_table = ResultTable(self)
|
2011-09-21 14:26:58 +00:00
|
|
|
|
|
|
|
def _get_display_info(self, dupe, group, delta):
|
|
|
|
size = dupe.size
|
|
|
|
duration = dupe.duration
|
|
|
|
bitrate = dupe.bitrate
|
|
|
|
samplerate = dupe.samplerate
|
|
|
|
mtime = dupe.mtime
|
|
|
|
m = group.get_match_of(dupe)
|
|
|
|
if m:
|
|
|
|
percentage = m.percentage
|
|
|
|
dupe_count = 0
|
|
|
|
if delta:
|
|
|
|
r = group.ref
|
|
|
|
size -= r.size
|
|
|
|
duration -= r.duration
|
|
|
|
bitrate -= r.bitrate
|
|
|
|
samplerate -= r.samplerate
|
|
|
|
mtime -= r.mtime
|
|
|
|
else:
|
|
|
|
percentage = group.percentage
|
|
|
|
dupe_count = len(group.dupes)
|
2011-11-26 15:55:14 +00:00
|
|
|
return {
|
|
|
|
'name': dupe.name,
|
|
|
|
'folder_path': str(dupe.folder_path),
|
|
|
|
'size': format_size(size, 2, 2, False),
|
|
|
|
'duration': format_time(duration, with_hours=False),
|
|
|
|
'bitrate': str(bitrate),
|
|
|
|
'samplerate': str(samplerate),
|
|
|
|
'extension': dupe.extension,
|
|
|
|
'mtime': format_timestamp(mtime,delta and m),
|
|
|
|
'title': dupe.title,
|
|
|
|
'artist': dupe.artist,
|
|
|
|
'album': dupe.album,
|
|
|
|
'genre': dupe.genre,
|
|
|
|
'year': dupe.year,
|
|
|
|
'track': str(dupe.track),
|
|
|
|
'comment': dupe.comment,
|
|
|
|
'percentage': format_perc(percentage),
|
|
|
|
'words': format_words(dupe.words) if hasattr(dupe, 'words') else '',
|
|
|
|
'dupe_count': format_dupe_count(dupe_count),
|
|
|
|
}
|
2011-09-21 14:26:58 +00:00
|
|
|
|
|
|
|
def _get_dupe_sort_key(self, dupe, get_group, key, delta):
|
2011-11-27 17:47:00 +00:00
|
|
|
if key == 'percentage':
|
2011-09-21 14:26:58 +00:00
|
|
|
m = get_group().get_match_of(dupe)
|
|
|
|
return m.percentage
|
2011-11-27 17:47:00 +00:00
|
|
|
if key == 'dupe_count':
|
2011-09-21 14:26:58 +00:00
|
|
|
return 0
|
2011-11-27 17:47:00 +00:00
|
|
|
r = cmp_value(dupe, key)
|
2011-11-27 18:10:35 +00:00
|
|
|
if delta and (key in self.result_table.DELTA_COLUMNS):
|
2011-11-27 17:47:00 +00:00
|
|
|
r -= cmp_value(get_group().ref, key)
|
2011-09-21 14:26:58 +00:00
|
|
|
return r
|
|
|
|
|
|
|
|
def _get_group_sort_key(self, group, key):
|
2011-11-27 17:47:00 +00:00
|
|
|
if key == 'percentage':
|
2011-09-21 14:26:58 +00:00
|
|
|
return group.percentage
|
2011-11-27 17:47:00 +00:00
|
|
|
if key == 'dupe_count':
|
2011-09-21 14:26:58 +00:00
|
|
|
return len(group)
|
2011-11-27 17:47:00 +00:00
|
|
|
return cmp_value(group.ref, key)
|
2011-09-21 14:26:58 +00:00
|
|
|
|
|
|
|
def _prioritization_categories(self):
|
|
|
|
return prioritize.all_categories()
|
2011-09-20 22:40:27 +00:00
|
|
|
|