mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-04 15:29:02 +00:00
e9a97afdf8
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%402
101 lines
3.1 KiB
Python
101 lines
3.1 KiB
Python
#!/usr/bin/env python
|
|
"""
|
|
Unit Name: dupeguru.data
|
|
Created By: Virgil Dupras
|
|
Created On: 2006/03/15
|
|
Last modified by:$Author: virgil $
|
|
Last modified on:$Date: 2009-05-28 15:22:39 +0200 (Thu, 28 May 2009) $
|
|
$Revision: 4385 $
|
|
Copyright 2004-2006 Hardcoded Software (http://www.hardcoded.net)
|
|
"""
|
|
|
|
from hsutil.str import format_time, FT_MINUTES, format_size
|
|
from .data import (format_path, format_timestamp, format_words, format_perc,
|
|
format_dupe_count, cmp_value)
|
|
|
|
COLUMNS = [
|
|
{'attr':'name','display':'Filename'},
|
|
{'attr':'path','display':'Directory'},
|
|
{'attr':'size','display':'Size (MB)'},
|
|
{'attr':'duration','display':'Time'},
|
|
{'attr':'bitrate','display':'Bitrate'},
|
|
{'attr':'samplerate','display':'Sample Rate'},
|
|
{'attr':'extension','display':'Kind'},
|
|
{'attr':'ctime','display':'Creation'},
|
|
{'attr':'mtime','display':'Modification'},
|
|
{'attr':'title','display':'Title'},
|
|
{'attr':'artist','display':'Artist'},
|
|
{'attr':'album','display':'Album'},
|
|
{'attr':'genre','display':'Genre'},
|
|
{'attr':'year','display':'Year'},
|
|
{'attr':'track','display':'Track Number'},
|
|
{'attr':'comment','display':'Comment'},
|
|
{'attr':'percentage','display':'Match %'},
|
|
{'attr':'words','display':'Words Used'},
|
|
{'attr':'dupe_count','display':'Dupe Count'},
|
|
]
|
|
|
|
def GetDisplayInfo(dupe, group, delta=False):
|
|
if (dupe is None) or (group is None):
|
|
return ['---'] * len(COLUMNS)
|
|
size = dupe.size
|
|
duration = dupe.duration
|
|
bitrate = dupe.bitrate
|
|
samplerate = dupe.samplerate
|
|
ctime = dupe.ctime
|
|
mtime = dupe.mtime
|
|
m = group.get_match_of(dupe)
|
|
if m:
|
|
percentage = m.percentage
|
|
dupe_count = 0
|
|
if delta:
|
|
r = group.ref
|
|
size -= r.size
|
|
duration -= r.duration
|
|
bitrate -= r.bitrate
|
|
samplerate -= r.samplerate
|
|
ctime -= r.ctime
|
|
mtime -= r.mtime
|
|
else:
|
|
percentage = group.percentage
|
|
dupe_count = len(group.dupes)
|
|
return [
|
|
dupe.name,
|
|
format_path(dupe.path),
|
|
format_size(size, 2, 2, False),
|
|
format_time(duration, FT_MINUTES),
|
|
str(bitrate),
|
|
str(samplerate),
|
|
dupe.extension,
|
|
format_timestamp(ctime,delta and m),
|
|
format_timestamp(mtime,delta and m),
|
|
dupe.title,
|
|
dupe.artist,
|
|
dupe.album,
|
|
dupe.genre,
|
|
dupe.year,
|
|
str(dupe.track),
|
|
dupe.comment,
|
|
format_perc(percentage),
|
|
format_words(dupe.words),
|
|
format_dupe_count(dupe_count)
|
|
]
|
|
|
|
def GetDupeSortKey(dupe, get_group, key, delta):
|
|
if key == 16:
|
|
m = get_group().get_match_of(dupe)
|
|
return m.percentage
|
|
if key == 18:
|
|
return 0
|
|
r = cmp_value(getattr(dupe, COLUMNS[key]['attr']))
|
|
if delta and (key in (2, 3, 4, 7, 8)):
|
|
r -= cmp_value(getattr(get_group().ref, COLUMNS[key]['attr']))
|
|
return r
|
|
|
|
def GetGroupSortKey(group, key):
|
|
if key == 16:
|
|
return group.percentage
|
|
if key == 18:
|
|
return len(group)
|
|
return cmp_value(getattr(group.ref, COLUMNS[key]['attr']))
|