2011-09-20 22:40:27 +00:00
|
|
|
# Created On: 2011/09/20
|
2012-03-15 18:28:40 +00:00
|
|
|
# Copyright 2012 Hardcoded Software (http://www.hardcoded.net)
|
2011-09-20 22:40:27 +00:00
|
|
|
#
|
|
|
|
# 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 14:26:58 +00:00
|
|
|
from hscommon.util import format_size
|
|
|
|
|
2011-11-26 15:55:14 +00:00
|
|
|
from core.app import (DupeGuru as DupeGuruBase, format_timestamp, format_perc,
|
2012-03-16 18:57:21 +00:00
|
|
|
format_words, format_dupe_count)
|
2011-09-21 14:26:58 +00:00
|
|
|
from core import prioritize
|
2011-09-21 14:35:34 +00:00
|
|
|
from . import __appname__
|
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']
|
|
|
|
|
|
|
|
def _get_display_info(self, dupe, group, delta):
|
|
|
|
size = dupe.size
|
|
|
|
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
|
|
|
|
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, 0, 1, False),
|
|
|
|
'extension': dupe.extension,
|
|
|
|
'mtime': format_timestamp(mtime, delta and m),
|
|
|
|
'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 _prioritization_categories(self):
|
|
|
|
return prioritize.all_categories()
|
2011-09-20 22:40:27 +00:00
|
|
|
|
2012-01-13 21:34:21 +00:00
|
|
|
def _create_result_table(self):
|
|
|
|
return ResultTable(self)
|
|
|
|
|