2009-06-18 19:42:27 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2006/03/15
|
2010-01-01 20:11:34 +00:00
|
|
|
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
#
|
2010-09-30 10:17:41 +00:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2009-08-05 08:59:46 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2010-09-30 10:17:41 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
2009-06-18 19:42:27 +00:00
|
|
|
|
2011-01-11 12:36:05 +00:00
|
|
|
from hscommon.util import format_size
|
2009-12-30 10:37:57 +00:00
|
|
|
from core.data import format_path, format_timestamp, format_perc, format_dupe_count, cmp_value
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
def format_dimensions(dimensions):
|
|
|
|
return '%d x %d' % (dimensions[0], dimensions[1])
|
|
|
|
|
|
|
|
COLUMNS = [
|
|
|
|
{'attr':'name','display':'Filename'},
|
|
|
|
{'attr':'path','display':'Directory'},
|
|
|
|
{'attr':'size','display':'Size (KB)'},
|
|
|
|
{'attr':'extension','display':'Kind'},
|
|
|
|
{'attr':'dimensions','display':'Dimensions'},
|
|
|
|
{'attr':'mtime','display':'Modification'},
|
|
|
|
{'attr':'percentage','display':'Match %'},
|
|
|
|
{'attr':'dupe_count','display':'Dupe Count'},
|
|
|
|
]
|
|
|
|
|
2010-10-04 08:01:52 +00:00
|
|
|
MATCHPERC_COL = 6
|
|
|
|
DUPECOUNT_COL = 7
|
|
|
|
|
2010-08-13 07:26:38 +00:00
|
|
|
METADATA_TO_READ = ['size', 'mtime', 'dimensions']
|
2009-09-27 09:31:57 +00:00
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
def GetDisplayInfo(dupe,group,delta=False):
|
|
|
|
if (dupe is None) or (group is None):
|
|
|
|
return ['---'] * len(COLUMNS)
|
|
|
|
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)
|
|
|
|
dupe_path = getattr(dupe, 'display_path', dupe.path)
|
|
|
|
return [
|
|
|
|
dupe.name,
|
|
|
|
format_path(dupe_path),
|
|
|
|
format_size(size, 0, 1, False),
|
|
|
|
dupe.extension,
|
|
|
|
format_dimensions(dupe.dimensions),
|
|
|
|
format_timestamp(mtime, delta and m),
|
|
|
|
format_perc(percentage),
|
|
|
|
format_dupe_count(dupe_count)
|
|
|
|
]
|
|
|
|
|
|
|
|
def GetDupeSortKey(dupe, get_group, key, delta):
|
2010-10-04 08:01:52 +00:00
|
|
|
if key == MATCHPERC_COL:
|
2009-06-01 09:55:11 +00:00
|
|
|
m = get_group().get_match_of(dupe)
|
|
|
|
return m.percentage
|
2010-10-04 08:01:52 +00:00
|
|
|
if key == DUPECOUNT_COL:
|
2009-06-01 09:55:11 +00:00
|
|
|
return 0
|
2010-02-05 16:47:17 +00:00
|
|
|
r = cmp_value(getattr(dupe, COLUMNS[key]['attr'], ''))
|
2010-10-04 08:01:52 +00:00
|
|
|
if delta and (key in {2, 5}):
|
2010-02-05 16:47:17 +00:00
|
|
|
r -= cmp_value(getattr(get_group().ref, COLUMNS[key]['attr'], ''))
|
2009-06-01 09:55:11 +00:00
|
|
|
return r
|
|
|
|
|
|
|
|
def GetGroupSortKey(group, key):
|
2010-10-04 08:01:52 +00:00
|
|
|
if key == MATCHPERC_COL:
|
2009-06-01 09:55:11 +00:00
|
|
|
return group.percentage
|
2010-10-04 08:01:52 +00:00
|
|
|
if key == DUPECOUNT_COL:
|
2009-06-01 09:55:11 +00:00
|
|
|
return len(group)
|
2010-02-05 16:47:17 +00:00
|
|
|
return cmp_value(getattr(group.ref, COLUMNS[key]['attr'], ''))
|
2009-06-01 09:55:11 +00:00
|
|
|
|