From d34158db2c11e822221a5257c8df151e5b9910c8 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Wed, 3 Feb 2010 11:55:53 +0100 Subject: [PATCH] Merged dg_cocoa files from all editions into core/app_cocoa_inter to eliminate annoying code duplication. --- cocoa/me/dg_cocoa.py | 183 +----------------------------------- cocoa/pe/dg_cocoa.py | 187 +----------------------------------- cocoa/se/dg_cocoa.py | 184 +----------------------------------- core/app_cocoa_inter.py | 203 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 212 insertions(+), 545 deletions(-) create mode 100644 core/app_cocoa_inter.py diff --git a/cocoa/me/dg_cocoa.py b/cocoa/me/dg_cocoa.py index 3245c822..32ba3689 100644 --- a/cocoa/me/dg_cocoa.py +++ b/cocoa/me/dg_cocoa.py @@ -4,177 +4,34 @@ # which should be included with this package. The terms are also available at # http://www.hardcoded.net/licenses/hs_license -import objc -from Foundation import NSObject - from hsutil.cocoa import signature +from core.app_cocoa_inter import PyDupeGuruBase from core_me.app_cocoa import DupeGuruME from core.scanner import (SCAN_TYPE_FILENAME, SCAN_TYPE_FIELDS, SCAN_TYPE_FIELDS_NO_ORDER, SCAN_TYPE_TAG, SCAN_TYPE_CONTENT, SCAN_TYPE_CONTENT_AUDIO) # Fix py2app imports which chokes on relative imports from core_me import app_cocoa, data, fs, scanner -from core import app, app_cocoa, data, directories, engine, export, ignore, results, scanner, fs from hsmedia import aiff, flac, genres, id3v1, id3v2, mp4, mpeg, ogg, wma -from hsutil import conflict -class PyApp(NSObject): - pass #fake class - -class PyDupeGuru(PyApp): +class PyDupeGuru(PyDupeGuruBase): def init(self): self = super(PyDupeGuru,self).init() self.app = DupeGuruME() return self - #---Directories - def addDirectory_(self,directory): - return self.app.add_directory(directory) - - def removeDirectory_(self,index): - self.app.RemoveDirectory(index) - - def setDirectory_state_(self,node_path,state): - self.app.SetDirectoryState(node_path,state) - - #---Results - def clearIgnoreList(self): - self.app.scanner.ignore_list.Clear() - - def doScan(self): - return self.app.start_scanning() - - def exportToXHTMLwithColumns_(self, column_ids): - return self.app.export_to_xhtml(column_ids) - - def loadIgnoreList(self): - self.app.load_ignore_list() - - def loadResults(self): - self.app.load() - - def markAll(self): - self.app.results.mark_all() - - def markNone(self): - self.app.results.mark_none() - - def markInvert(self): - self.app.results.mark_invert() - - def purgeIgnoreList(self): - self.app.PurgeIgnoreList() - - def toggleSelectedMark(self): - self.app.ToggleSelectedMarkState() - - def saveIgnoreList(self): - self.app.save_ignore_list() - - def saveResults(self): - self.app.save() - - def refreshDetailsWithSelected(self): - self.app.RefreshDetailsWithSelected() - - def selectedResultNodePaths(self): - return self.app.selected_result_node_paths() - - def selectResultNodePaths_(self,node_paths): - self.app.SelectResultNodePaths(node_paths) - - def selectedPowerMarkerNodePaths(self): - return self.app.selected_powermarker_node_paths() - - def selectPowerMarkerNodePaths_(self,node_paths): - self.app.SelectPowerMarkerNodePaths(node_paths) - - #---Actions - def addSelectedToIgnoreList(self): - self.app.AddSelectedToIgnoreList() - - def applyFilter_(self, filter): - self.app.apply_filter(filter) - - def deleteMarked(self): - self.app.delete_marked() - - def makeSelectedReference(self): - self.app.MakeSelectedReference() - - def copyOrMove_markedTo_recreatePath_(self,copy,destination,recreate_path): - self.app.copy_or_move_marked(copy, destination, recreate_path) - - def openSelected(self): - self.app.OpenSelected() - def removeDeadTracks(self): self.app.remove_dead_tracks() - def removeMarked(self): - self.app.results.perform_on_marked(lambda x:True, True) - - def removeSelected(self): - self.app.RemoveSelected() - - def renameSelected_(self,newname): - return self.app.RenameSelected(newname) - - def revealSelected(self): - self.app.RevealSelected() - def scanDeadTracks(self): self.app.scan_dead_tracks() - #---Misc - def sortDupesBy_ascending_(self,key,asc): - self.app.sort_dupes(key,asc) - - def sortGroupsBy_ascending_(self,key,asc): - self.app.sort_groups(key,asc) - #---Information @signature('i@:') def deadTrackCount(self): return len(self.app.dead_tracks) - def getIgnoreListCount(self): - return len(self.app.scanner.ignore_list) - - def getMarkCount(self): - return self.app.results.mark_count - - def getStatLine(self): - return self.app.stat_line - - def getOperationalErrorCount(self): - return self.app.last_op_error_count - - #---Data - @signature('i@:i') - def getOutlineViewMaxLevel_(self, tag): - return self.app.GetOutlineViewMaxLevel(tag) - - @signature('@@:i@') - def getOutlineView_childCountsForPath_(self, tag, node_path): - return self.app.GetOutlineViewChildCounts(tag, node_path) - - def getOutlineView_valuesForIndexes_(self,tag,node_path): - return self.app.GetOutlineViewValues(tag,node_path) - - def getOutlineView_markedAtIndexes_(self,tag,node_path): - return self.app.GetOutlineViewMarked(tag,node_path) - - def getTableViewCount_(self,tag): - return self.app.GetTableViewCount(tag) - - def getTableViewMarkedIndexes_(self,tag): - return self.app.GetTableViewMarkedIndexes(tag) - - def getTableView_valuesForRow_(self,tag,row): - return self.app.GetTableViewValues(tag,row) - #---Properties def setMinMatchPercentage_(self, percentage): self.app.scanner.min_match_percentage = int(percentage) @@ -195,52 +52,16 @@ class PyDupeGuru(PyApp): def setWordWeighting_(self, words_are_weighted): self.app.scanner.word_weighting = words_are_weighted - def setMixFileKind_(self, mix_file_kind): - self.app.scanner.mix_file_kind = mix_file_kind - - def setDisplayDeltaValues_(self, display_delta_values): - self.app.display_delta_values = display_delta_values - def setMatchSimilarWords_(self, match_similar_words): self.app.scanner.match_similar_words = match_similar_words - def setEscapeFilterRegexp_(self, escape_filter_regexp): - self.app.options['escape_filter_regexp'] = escape_filter_regexp - - def setRemoveEmptyFolders_(self, remove_empty_folders): - self.app.options['clean_empty_dirs'] = remove_empty_folders - def enable_scanForTag_(self, enable, scan_tag): if enable: self.app.scanner.scanned_tags.add(scan_tag) else: self.app.scanner.scanned_tags.discard(scan_tag) - #---Worker - def getJobProgress(self): - return self.app.progress.last_progress - - def getJobDesc(self): - return self.app.progress.last_desc - - def cancelJob(self): - self.app.progress.job_cancelled = True - #---Registration def appName(self): return "dupeGuru Music Edition" - def demoLimitDescription(self): - return self.app.DEMO_LIMIT_DESC - - @signature('i@:') - def isRegistered(self): - return self.app.registered - - @signature('i@:@@') - def isCodeValid_withEmail_(self, code, email): - return self.app.is_code_valid(code, email) - - def setRegisteredCode_andEmail_(self, code, email): - self.app.set_registration(code, email) - diff --git a/cocoa/pe/dg_cocoa.py b/cocoa/pe/dg_cocoa.py index 4b88c53d..8dc08dc5 100644 --- a/cocoa/pe/dg_cocoa.py +++ b/cocoa/pe/dg_cocoa.py @@ -4,171 +4,28 @@ # which should be included with this package. The terms are also available at # http://www.hardcoded.net/licenses/hs_license -import objc -from Foundation import NSObject - +from core.app_cocoa_inter import PyDupeGuruBase from core_pe import app_cocoa as app_pe_cocoa # Fix py2app imports which chokes on relative imports -from core import app, app_cocoa, data, directories, engine, export, ignore, results, scanner from core_pe import block, cache, matchbase, data -from hsutil import conflict -class PyApp(NSObject): - pass #fake class - -class PyDupeGuru(PyApp): +class PyDupeGuru(PyDupeGuruBase): def init(self): - self = super(PyDupeGuru,self).init() + self = super(PyDupeGuru, self).init() self.app = app_pe_cocoa.DupeGuruPE() return self - #---Directories - def addDirectory_(self,directory): - return self.app.add_directory(directory) - - def removeDirectory_(self,index): - self.app.RemoveDirectory(index) - - def setDirectory_state_(self,node_path,state): - self.app.SetDirectoryState(node_path,state) - - #---Results - def clearIgnoreList(self): - self.app.scanner.ignore_list.Clear() - def clearPictureCache(self): self.app.scanner.clear_picture_cache() - def doScan(self): - return self.app.start_scanning() - - def exportToXHTMLwithColumns_(self, column_ids): - return self.app.export_to_xhtml(column_ids) - - def loadIgnoreList(self): - self.app.load_ignore_list() - - def loadResults(self): - self.app.load() - - def markAll(self): - self.app.results.mark_all() - - def markNone(self): - self.app.results.mark_none() - - def markInvert(self): - self.app.results.mark_invert() - - def purgeIgnoreList(self): - self.app.PurgeIgnoreList() - - def toggleSelectedMark(self): - self.app.ToggleSelectedMarkState() - - def saveIgnoreList(self): - self.app.save_ignore_list() - - def saveResults(self): - self.app.save() - - def refreshDetailsWithSelected(self): - self.app.RefreshDetailsWithSelected() - - def selectedResultNodePaths(self): - return self.app.selected_result_node_paths() - - def selectResultNodePaths_(self,node_paths): - self.app.SelectResultNodePaths(node_paths) - - def selectedPowerMarkerNodePaths(self): - return self.app.selected_powermarker_node_paths() - - def selectPowerMarkerNodePaths_(self,node_paths): - self.app.SelectPowerMarkerNodePaths(node_paths) - - #---Actions - def addSelectedToIgnoreList(self): - self.app.AddSelectedToIgnoreList() - - def deleteMarked(self): - self.app.delete_marked() - - def applyFilter_(self, filter): - self.app.apply_filter(filter) - - def makeSelectedReference(self): - self.app.MakeSelectedReference() - - def copyOrMove_markedTo_recreatePath_(self,copy,destination,recreate_path): - self.app.copy_or_move_marked(copy, destination, recreate_path) - - def openSelected(self): - self.app.OpenSelected() - - def removeMarked(self): - self.app.results.perform_on_marked(lambda x:True,True) - - def removeSelected(self): - self.app.RemoveSelected() - - def renameSelected_(self,newname): - return self.app.RenameSelected(newname) - - def revealSelected(self): - self.app.RevealSelected() - - #---Misc - def sortDupesBy_ascending_(self,key,asc): - self.app.sort_dupes(key,asc) - - def sortGroupsBy_ascending_(self,key,asc): - self.app.sort_groups(key,asc) - - #---Information - def getIgnoreListCount(self): - return len(self.app.scanner.ignore_list) - - def getMarkCount(self): - return self.app.results.mark_count - - def getStatLine(self): - return self.app.stat_line - - def getOperationalErrorCount(self): - return self.app.last_op_error_count - + #---Information def getSelectedDupePath(self): return unicode(self.app.selected_dupe_path()) def getSelectedDupeRefPath(self): return unicode(self.app.selected_dupe_ref_path()) - #---Data - @objc.signature('i@:i') - def getOutlineViewMaxLevel_(self, tag): - return self.app.GetOutlineViewMaxLevel(tag) - - @objc.signature('@@:i@') - def getOutlineView_childCountsForPath_(self, tag, node_path): - return self.app.GetOutlineViewChildCounts(tag, node_path) - - def getOutlineView_valuesForIndexes_(self,tag,node_path): - return self.app.GetOutlineViewValues(tag,node_path) - - def getOutlineView_markedAtIndexes_(self,tag,node_path): - return self.app.GetOutlineViewMarked(tag,node_path) - - def getTableViewCount_(self,tag): - return self.app.GetTableViewCount(tag) - - def getTableViewMarkedIndexes_(self,tag): - return self.app.GetTableViewMarkedIndexes(tag) - - def getTableView_valuesForRow_(self,tag,row): - return self.app.GetTableViewValues(tag,row) - #---Properties def setMatchScaled_(self,match_scaled): self.app.scanner.match_scaled = match_scaled @@ -176,43 +33,7 @@ class PyDupeGuru(PyApp): def setMinMatchPercentage_(self,percentage): self.app.scanner.threshold = int(percentage) - def setMixFileKind_(self,mix_file_kind): - self.app.scanner.mix_file_kind = mix_file_kind - - def setDisplayDeltaValues_(self,display_delta_values): - self.app.display_delta_values= display_delta_values - - def setEscapeFilterRegexp_(self, escape_filter_regexp): - self.app.options['escape_filter_regexp'] = escape_filter_regexp - - def setRemoveEmptyFolders_(self, remove_empty_folders): - self.app.options['clean_empty_dirs'] = remove_empty_folders - - #---Worker - def getJobProgress(self): - return self.app.progress.last_progress - - def getJobDesc(self): - return self.app.progress.last_desc - - def cancelJob(self): - self.app.progress.job_cancelled = True - #---Registration def appName(self): return "dupeGuru Picture Edition" - def demoLimitDescription(self): - return self.app.DEMO_LIMIT_DESC - - @objc.signature('i@:') - def isRegistered(self): - return self.app.registered - - @objc.signature('i@:@@') - def isCodeValid_withEmail_(self, code, email): - return self.app.is_code_valid(code, email) - - def setRegisteredCode_andEmail_(self, code, email): - self.app.set_registration(code, email) - diff --git a/cocoa/se/dg_cocoa.py b/cocoa/se/dg_cocoa.py index 7102d50b..779041f5 100644 --- a/cocoa/se/dg_cocoa.py +++ b/cocoa/se/dg_cocoa.py @@ -5,162 +5,20 @@ # http://www.hardcoded.net/licenses/hs_license import objc -from Foundation import NSObject -from core_se.app_cocoa import DupeGuru from core import scanner +from core.app_cocoa_inter import PyDupeGuruBase +from core_se.app_cocoa import DupeGuru # Fix py2app imports with chokes on relative imports from core_se import fs, data -from core import app, app_cocoa, data, directories, engine, export, ignore, results, fs -from hsutil import conflict -class PyApp(NSObject): - pass #fake class - -class PyDupeGuru(PyApp): +class PyDupeGuru(PyDupeGuruBase): def init(self): self = super(PyDupeGuru,self).init() self.app = DupeGuru() return self - #---Directories - def addDirectory_(self,directory): - return self.app.add_directory(directory) - - def removeDirectory_(self,index): - self.app.RemoveDirectory(index) - - def setDirectory_state_(self,node_path,state): - self.app.SetDirectoryState(node_path,state) - - #---Results - def clearIgnoreList(self): - self.app.scanner.ignore_list.Clear() - - def doScan(self): - return self.app.start_scanning() - - def exportToXHTMLwithColumns_(self, column_ids): - return self.app.export_to_xhtml(column_ids) - - def loadIgnoreList(self): - self.app.load_ignore_list() - - def loadResults(self): - self.app.load() - - def markAll(self): - self.app.results.mark_all() - - def markNone(self): - self.app.results.mark_none() - - def markInvert(self): - self.app.results.mark_invert() - - def purgeIgnoreList(self): - self.app.PurgeIgnoreList() - - def toggleSelectedMark(self): - self.app.ToggleSelectedMarkState() - - def saveIgnoreList(self): - self.app.save_ignore_list() - - def saveResults(self): - self.app.save() - - def refreshDetailsWithSelected(self): - self.app.RefreshDetailsWithSelected() - - def selectedResultNodePaths(self): - return self.app.selected_result_node_paths() - - def selectResultNodePaths_(self,node_paths): - self.app.SelectResultNodePaths(node_paths) - - def selectedPowerMarkerNodePaths(self): - return self.app.selected_powermarker_node_paths() - - def selectPowerMarkerNodePaths_(self,node_paths): - self.app.SelectPowerMarkerNodePaths(node_paths) - - #---Actions - def addSelectedToIgnoreList(self): - self.app.AddSelectedToIgnoreList() - - def deleteMarked(self): - self.app.delete_marked() - - def applyFilter_(self, filter): - self.app.apply_filter(filter) - - def makeSelectedReference(self): - self.app.MakeSelectedReference() - - def copyOrMove_markedTo_recreatePath_(self,copy,destination,recreate_path): - self.app.copy_or_move_marked(copy, destination, recreate_path) - - def openSelected(self): - self.app.OpenSelected() - - def removeMarked(self): - self.app.results.perform_on_marked(lambda x:True, True) - - def removeSelected(self): - self.app.RemoveSelected() - - def renameSelected_(self,newname): - return self.app.RenameSelected(newname) - - def revealSelected(self): - self.app.RevealSelected() - - #---Misc - def sortDupesBy_ascending_(self,key,asc): - self.app.sort_dupes(key,asc) - - def sortGroupsBy_ascending_(self,key,asc): - self.app.sort_groups(key,asc) - - #---Information - def getIgnoreListCount(self): - return len(self.app.scanner.ignore_list) - - def getMarkCount(self): - return self.app.results.mark_count - - def getStatLine(self): - return self.app.stat_line - - def getOperationalErrorCount(self): - return self.app.last_op_error_count - - #---Data - @objc.signature('i@:i') - def getOutlineViewMaxLevel_(self, tag): - return self.app.GetOutlineViewMaxLevel(tag) - - @objc.signature('@@:i@') - def getOutlineView_childCountsForPath_(self, tag, node_path): - return self.app.GetOutlineViewChildCounts(tag, node_path) - - def getOutlineView_valuesForIndexes_(self,tag,node_path): - return self.app.GetOutlineViewValues(tag,node_path) - - def getOutlineView_markedAtIndexes_(self,tag,node_path): - return self.app.GetOutlineViewMarked(tag,node_path) - - def getTableViewCount_(self,tag): - return self.app.GetTableViewCount(tag) - - def getTableViewMarkedIndexes_(self,tag): - return self.app.GetTableViewMarkedIndexes(tag) - - def getTableView_valuesForRow_(self,tag,row): - return self.app.GetTableViewValues(tag,row) - #---Properties def setMinMatchPercentage_(self,percentage): self.app.scanner.min_match_percentage = int(percentage) @@ -177,50 +35,14 @@ class PyDupeGuru(PyApp): def setWordWeighting_(self,words_are_weighted): self.app.scanner.word_weighting = words_are_weighted - def setMixFileKind_(self,mix_file_kind): - self.app.scanner.mix_file_kind = mix_file_kind - - def setDisplayDeltaValues_(self,display_delta_values): - self.app.display_delta_values= display_delta_values - def setMatchSimilarWords_(self,match_similar_words): self.app.scanner.match_similar_words = match_similar_words - def setEscapeFilterRegexp_(self, escape_filter_regexp): - self.app.options['escape_filter_regexp'] = escape_filter_regexp - - def setRemoveEmptyFolders_(self, remove_empty_folders): - self.app.options['clean_empty_dirs'] = remove_empty_folders - @objc.signature('v@:i') def setSizeThreshold_(self, size_threshold): self.app.scanner.size_threshold = size_threshold - #---Worker - def getJobProgress(self): - return self.app.progress.last_progress - - def getJobDesc(self): - return self.app.progress.last_desc - - def cancelJob(self): - self.app.progress.job_cancelled = True - #---Registration def appName(self): return "dupeGuru" - def demoLimitDescription(self): - return self.app.DEMO_LIMIT_DESC - - @objc.signature('i@:') - def isRegistered(self): - return self.app.registered - - @objc.signature('i@:@@') - def isCodeValid_withEmail_(self, code, email): - return self.app.is_code_valid(code, email) - - def setRegisteredCode_andEmail_(self, code, email): - self.app.set_registration(code, email) - diff --git a/core/app_cocoa_inter.py b/core/app_cocoa_inter.py new file mode 100644 index 00000000..5e990da2 --- /dev/null +++ b/core/app_cocoa_inter.py @@ -0,0 +1,203 @@ +# -*- coding: utf-8 -*- +# Created By: Virgil Dupras +# Created On: 2010-02-02 +# Copyright 2010 Hardcoded Software (http://www.hardcoded.net) +# +# This software is licensed under the "HS" 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/hs_license + +# Common interface for all editions' dg_cocoa unit. + +import objc +from Foundation import NSObject + +from hsutil.cocoa import signature +from hsutil.reg import InvalidCodeError + +# Fix py2app's problems on relative imports +from core import app, app_cocoa, data, directories, engine, export, ignore, results, fs, scanner +from hsutil import conflict + +class PyApp(NSObject): + pass #fake class + +class PyDupeGuruBase(PyApp): + #---Directories + def addDirectory_(self, directory): + return self.app.add_directory(directory) + + def removeDirectory_(self, index): + self.app.RemoveDirectory(index) + + def setDirectory_state_(self, node_path, state): + self.app.SetDirectoryState(node_path, state) + + #---Results + def clearIgnoreList(self): + self.app.scanner.ignore_list.Clear() + + def doScan(self): + return self.app.start_scanning() + + def exportToXHTMLwithColumns_(self, column_ids): + return self.app.export_to_xhtml(column_ids) + + def loadIgnoreList(self): + self.app.load_ignore_list() + + def loadResults(self): + self.app.load() + + def markAll(self): + self.app.results.mark_all() + + def markNone(self): + self.app.results.mark_none() + + def markInvert(self): + self.app.results.mark_invert() + + def purgeIgnoreList(self): + self.app.PurgeIgnoreList() + + def toggleSelectedMark(self): + self.app.ToggleSelectedMarkState() + + def saveIgnoreList(self): + self.app.save_ignore_list() + + def saveResults(self): + self.app.save() + + def refreshDetailsWithSelected(self): + self.app.RefreshDetailsWithSelected() + + def selectedResultNodePaths(self): + return self.app.selected_result_node_paths() + + def selectResultNodePaths_(self,node_paths): + self.app.SelectResultNodePaths(node_paths) + + def selectedPowerMarkerNodePaths(self): + return self.app.selected_powermarker_node_paths() + + def selectPowerMarkerNodePaths_(self,node_paths): + self.app.SelectPowerMarkerNodePaths(node_paths) + + #---Actions + def addSelectedToIgnoreList(self): + self.app.AddSelectedToIgnoreList() + + def deleteMarked(self): + self.app.delete_marked() + + def applyFilter_(self, filter): + self.app.apply_filter(filter) + + def makeSelectedReference(self): + self.app.MakeSelectedReference() + + def copyOrMove_markedTo_recreatePath_(self, copy, destination, recreate_path): + self.app.copy_or_move_marked(copy, destination, recreate_path) + + def openSelected(self): + self.app.OpenSelected() + + def removeMarked(self): + self.app.results.perform_on_marked(lambda x:True, True) + + def removeSelected(self): + self.app.RemoveSelected() + + def renameSelected_(self,newname): + return self.app.RenameSelected(newname) + + def revealSelected(self): + self.app.RevealSelected() + + #---Misc + def sortDupesBy_ascending_(self, key, asc): + self.app.sort_dupes(key, asc) + + def sortGroupsBy_ascending_(self, key, asc): + self.app.sort_groups(key, asc) + + #---Information + def getIgnoreListCount(self): + return len(self.app.scanner.ignore_list) + + def getMarkCount(self): + return self.app.results.mark_count + + def getStatLine(self): + return self.app.stat_line + + def getOperationalErrorCount(self): + return self.app.last_op_error_count + + #---Data + @signature('i@:i') + def getOutlineViewMaxLevel_(self, tag): + return self.app.GetOutlineViewMaxLevel(tag) + + @signature('@@:i@') + def getOutlineView_childCountsForPath_(self, tag, node_path): + return self.app.GetOutlineViewChildCounts(tag, node_path) + + def getOutlineView_valuesForIndexes_(self, tag, node_path): + return self.app.GetOutlineViewValues(tag, node_path) + + def getOutlineView_markedAtIndexes_(self, tag, node_path): + return self.app.GetOutlineViewMarked(tag, node_path) + + def getTableViewCount_(self, tag): + return self.app.GetTableViewCount(tag) + + def getTableViewMarkedIndexes_(self, tag): + return self.app.GetTableViewMarkedIndexes(tag) + + def getTableView_valuesForRow_(self, tag, row): + return self.app.GetTableViewValues(tag, row) + + #---Properties + def setMixFileKind_(self, mix_file_kind): + self.app.scanner.mix_file_kind = mix_file_kind + + def setDisplayDeltaValues_(self, display_delta_values): + self.app.display_delta_values= display_delta_values + + def setEscapeFilterRegexp_(self, escape_filter_regexp): + self.app.options['escape_filter_regexp'] = escape_filter_regexp + + def setRemoveEmptyFolders_(self, remove_empty_folders): + self.app.options['clean_empty_dirs'] = remove_empty_folders + + #---Worker + def getJobProgress(self): + return self.app.progress.last_progress + + def getJobDesc(self): + return self.app.progress.last_desc + + def cancelJob(self): + self.app.progress.job_cancelled = True + + #---Registration + def demoLimitDescription(self): + return self.app.DEMO_LIMIT_DESC + + @signature('i@:') + def isRegistered(self): + return self.app.registered + + def isCodeValid_withEmail_(self, code, email): + try: + self.app.validate_code(code, email) + return None + except InvalidCodeError as e: + return unicode(e) + + def setRegisteredCode_andEmail_(self, code, email): + self.app.set_registration(code, email) +