2011-09-20 22:40:27 +00:00
|
|
|
# Created On: 2011/09/20
|
2014-04-19 16:19:11 +00:00
|
|
|
# Copyright 2014 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 18:04:41 +00:00
|
|
|
import os.path as op
|
|
|
|
|
2013-07-14 21:43:58 +00:00
|
|
|
from core.app import DupeGuru as DupeGuruBase, cmp_value
|
2011-09-21 18:04:41 +00:00
|
|
|
from .scanner import ScannerPE
|
2011-09-21 14:26:58 +00:00
|
|
|
from . import prioritize
|
2011-09-21 14:35:34 +00:00
|
|
|
from . import __appname__
|
2013-08-03 22:01:28 +00:00
|
|
|
from .photo import get_delta_dimensions
|
2011-11-27 17:47:00 +00:00
|
|
|
from .result_table import ResultTable
|
2011-09-21 14:26:58 +00:00
|
|
|
|
2011-09-20 22:40:27 +00:00
|
|
|
class DupeGuru(DupeGuruBase):
|
2011-09-21 14:35:34 +00:00
|
|
|
NAME = __appname__
|
2012-08-10 20:34:27 +00:00
|
|
|
METADATA_TO_READ = ['size', 'mtime', 'dimensions', 'exif_timestamp']
|
2014-05-03 17:44:38 +00:00
|
|
|
SCANNER_CLASS = ScannerPE
|
2011-09-21 14:26:58 +00:00
|
|
|
|
2013-10-12 17:54:13 +00:00
|
|
|
def __init__(self, view):
|
|
|
|
DupeGuruBase.__init__(self, view)
|
2011-09-21 18:04:41 +00:00
|
|
|
self.scanner.cache_path = op.join(self.appdata, 'cached_pictures.db')
|
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 == 'folder_path':
|
2011-09-21 14:26:58 +00:00
|
|
|
dupe_folder_path = getattr(dupe, 'display_folder_path', dupe.folder_path)
|
2011-09-22 16:29:56 +00:00
|
|
|
return str(dupe_folder_path).lower()
|
2012-03-16 18:57:21 +00:00
|
|
|
if delta and key == 'dimensions':
|
|
|
|
r = cmp_value(dupe, key)
|
2011-11-27 17:47:00 +00:00
|
|
|
ref_value = cmp_value(get_group().ref, key)
|
2012-03-16 18:57:21 +00:00
|
|
|
return get_delta_dimensions(r, ref_value)
|
|
|
|
return DupeGuruBase._get_dupe_sort_key(self, dupe, get_group, key, delta)
|
2011-09-21 14:26:58 +00:00
|
|
|
|
|
|
|
def _get_group_sort_key(self, group, key):
|
2011-11-27 17:47:00 +00:00
|
|
|
if key == 'folder_path':
|
2011-09-21 14:26:58 +00:00
|
|
|
dupe_folder_path = getattr(group.ref, 'display_folder_path', group.ref.folder_path)
|
2011-09-22 16:29:56 +00:00
|
|
|
return str(dupe_folder_path).lower()
|
2012-03-16 18:57:21 +00:00
|
|
|
return DupeGuruBase._get_group_sort_key(self, group, 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
|
|
|
|
2012-01-16 15:30:45 +00:00
|
|
|
def _create_result_table(self):
|
|
|
|
return ResultTable(self)
|