mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-04 15:29:02 +00:00
ba75f3243d
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%4029
56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
#!/usr/bin/env python
|
|
# Unit Name: app_se_cocoa
|
|
# Created By: Virgil Dupras
|
|
# Created On: 2009-05-24
|
|
# $Id$
|
|
# Copyright 2009 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
from hsfs.phys import Directory as DirectoryBase
|
|
from hsfs.phys.bundle import Bundle
|
|
from hsutil.path import Path
|
|
from hsutil.misc import extract
|
|
from hsutil.str import get_file_ext
|
|
|
|
|
|
from . import app_cocoa, data
|
|
from .directories import Directories as DirectoriesBase, STATE_EXCLUDED
|
|
|
|
class DGDirectory(DirectoryBase):
|
|
def _create_sub_file(self, name, with_parent=True):
|
|
ext = get_file_ext(name)
|
|
if ext == 'app':
|
|
parent = self if with_parent else None
|
|
return Bundle(parent, name)
|
|
else:
|
|
return super(DGDirectory, self)._create_sub_file(name, with_parent)
|
|
|
|
def _fetch_subitems(self):
|
|
subdirs, subfiles = super(DGDirectory, self)._fetch_subitems()
|
|
apps, normal_dirs = extract(lambda name: get_file_ext(name) == 'app', subdirs)
|
|
subfiles += apps
|
|
return normal_dirs, subfiles
|
|
|
|
|
|
class Directories(DirectoriesBase):
|
|
ROOT_PATH_TO_EXCLUDE = map(Path, ['/Library', '/Volumes', '/System', '/bin', '/sbin', '/opt', '/private'])
|
|
HOME_PATH_TO_EXCLUDE = [Path('Library')]
|
|
def __init__(self):
|
|
DirectoriesBase.__init__(self)
|
|
self.dirclass = DGDirectory
|
|
|
|
def _default_state_for_path(self, path):
|
|
result = DirectoriesBase._default_state_for_path(self, path)
|
|
if result is not None:
|
|
return result
|
|
if path in self.ROOT_PATH_TO_EXCLUDE:
|
|
return STATE_EXCLUDED
|
|
if path[:2] == Path('/Users') and path[3:] in self.HOME_PATH_TO_EXCLUDE:
|
|
return STATE_EXCLUDED
|
|
|
|
|
|
class DupeGuru(app_cocoa.DupeGuru):
|
|
def __init__(self):
|
|
app_cocoa.DupeGuru.__init__(self, data, 'dupeguru', appid=4)
|
|
self.directories = Directories()
|
|
|