mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
69 lines
2.5 KiB
Python
69 lines
2.5 KiB
Python
# Created By: Virgil Dupras
|
|
# Created On: 2006/11/16
|
|
# 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
|
|
|
|
import logging
|
|
from appscript import app, k, CommandError
|
|
import time
|
|
|
|
from hscommon.cocoa import as_fetch
|
|
|
|
from core.app_cocoa import JOBID2TITLE, DupeGuru as DupeGuruBase
|
|
|
|
from . import data, scanner, fs
|
|
|
|
JOB_REMOVE_DEAD_TRACKS = 'jobRemoveDeadTracks'
|
|
JOB_SCAN_DEAD_TRACKS = 'jobScanDeadTracks'
|
|
|
|
JOBID2TITLE.update({
|
|
JOB_REMOVE_DEAD_TRACKS: "Removing dead tracks from your iTunes Library",
|
|
JOB_SCAN_DEAD_TRACKS: "Scanning the iTunes Library",
|
|
})
|
|
|
|
class DupeGuruME(DupeGuruBase):
|
|
def __init__(self):
|
|
DupeGuruBase.__init__(self, data, 'dupeGuru Music Edition', appid=1)
|
|
self.scanner = scanner.ScannerME()
|
|
self.directories.fileclasses = [fs.Mp3File, fs.Mp4File, fs.WmaFile, fs.OggFile, fs.FlacFile, fs.AiffFile]
|
|
self.dead_tracks = []
|
|
|
|
def remove_dead_tracks(self):
|
|
def do(j):
|
|
a = app('iTunes')
|
|
a.activate(timeout=0)
|
|
for index, track in enumerate(j.iter_with_progress(self.dead_tracks)):
|
|
if index % 100 == 0:
|
|
time.sleep(.1)
|
|
try:
|
|
track.delete(timeout=0)
|
|
except CommandError as e:
|
|
logging.warning('Error while trying to remove a track from iTunes: %s' % str(e))
|
|
|
|
self._start_job(JOB_REMOVE_DEAD_TRACKS, do)
|
|
|
|
def scan_dead_tracks(self):
|
|
def do(j):
|
|
a = app('iTunes')
|
|
a.activate(timeout=0)
|
|
try:
|
|
[source] = [s for s in a.sources(timeout=0) if s.kind(timeout=0) == k.library]
|
|
[library] = source.library_playlists(timeout=0)
|
|
except ValueError:
|
|
logging.warning('Some unexpected iTunes configuration encountered')
|
|
return
|
|
self.dead_tracks = []
|
|
tracks = as_fetch(library.file_tracks, k.file_track)
|
|
for index, track in enumerate(j.iter_with_progress(tracks)):
|
|
if index % 100 == 0:
|
|
time.sleep(.1)
|
|
if track.location(timeout=0) == k.missing_value:
|
|
self.dead_tracks.append(track)
|
|
logging.info('Found %d dead tracks' % len(self.dead_tracks))
|
|
|
|
self._start_job(JOB_SCAN_DEAD_TRACKS, do)
|
|
|