2009-10-18 09:26:04 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2009-10-18
|
2013-04-28 14:35:51 +00:00
|
|
|
# Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
2009-10-18 09:26:04 +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-10-18 09:26:04 +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-10-18 09:26:04 +00:00
|
|
|
|
2011-04-21 15:17:19 +00:00
|
|
|
from core.scanner import Scanner, ScanType
|
2009-10-18 09:26:04 +00:00
|
|
|
|
2011-04-21 15:17:19 +00:00
|
|
|
from . import matchblock, matchexif
|
2010-01-14 15:14:26 +00:00
|
|
|
from .cache import Cache
|
2009-10-18 09:26:04 +00:00
|
|
|
|
|
|
|
class ScannerPE(Scanner):
|
2010-01-14 15:14:26 +00:00
|
|
|
cache_path = None
|
2009-10-18 09:26:04 +00:00
|
|
|
match_scaled = False
|
|
|
|
threshold = 75
|
|
|
|
|
|
|
|
def _getmatches(self, files, j):
|
2011-04-21 15:17:19 +00:00
|
|
|
if self.scan_type == ScanType.FuzzyBlock:
|
|
|
|
return matchblock.getmatches(files, self.cache_path, self.threshold, self.match_scaled, j)
|
|
|
|
elif self.scan_type == ScanType.ExifTimestamp:
|
2014-03-30 20:01:56 +00:00
|
|
|
return matchexif.getmatches(files, match_scaled=self.match_scaled, j=j)
|
|
|
|
elif self.scan_type == ScanType.TriggerHappyMode:
|
|
|
|
j = j.start_subjob([1, 9])
|
|
|
|
groups = matchexif.group_by_timestamp(files, date_only=True, j=j)
|
|
|
|
j = j.start_subjob(len(groups))
|
|
|
|
matches = []
|
|
|
|
for subfiles in groups.values():
|
|
|
|
matches += matchblock.getmatches(
|
|
|
|
list(subfiles), self.cache_path, self.threshold, self.match_scaled, j
|
|
|
|
)
|
|
|
|
return matches
|
2011-04-21 15:17:19 +00:00
|
|
|
else:
|
|
|
|
raise Exception("Invalid scan type")
|
2010-01-14 15:14:26 +00:00
|
|
|
|
|
|
|
def clear_picture_cache(self):
|
|
|
|
cache = Cache(self.cache_path)
|
|
|
|
cache.clear()
|
|
|
|
cache.close()
|
2009-10-18 09:26:04 +00:00
|
|
|
|