# -*- Mode: Python; test-case-name: morituri.test.test_result_result -*- # vi:si:et:sw=4:sts=4:ts=4 # Morituri - for those about to RIP # Copyright (C) 2009 Thomas Vander Stichele # This file is part of whipper. # # whipper is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # whipper is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with whipper. If not, see . import pkg_resources import time class TrackResult: """ @type filename: unicode @ivar testcrc: 4-byte CRC for the test read @type testcrc: int @ivar copycrc: 4-byte CRC for the copy read @type copycrc: int @var accurip: whether this track's AR CRC was found in the database, and thus whether the track is considered accurately ripped. If false, it can be ripped wrong, not exist in the database, ... @type accurip: bool @var ARCRC: our calculated 4 byte AccurateRip CRC for this track. @type ARCRC: int @var ARDBCRC: the 4-byte AccurateRip CRC this track did or should have matched in the database. If None, the track is not in the database. @type ARDBCRC: int @var ARDBConfidence: confidence for the matched AccurateRip CRC for this track in the database. If None, the track is not in the database. @var ARDBMaxConfidence: maximum confidence in the AccurateRip database for this track; can still be 0. If None, the track is not in the database. """ number = None filename = None pregap = 0 # in frames pre_emphasis = None peak = 0.0 quality = 0.0 testspeed = 0.0 copyspeed = 0.0 testduration = 0.0 copyduration = 0.0 testcrc = None copycrc = None accurip = False # whether it's in the database ARCRC = None ARDBCRC = None ARDBConfidence = None ARDBMaxConfidence = None classVersion = 3 class RipResult: """ I hold information about the result for rips. I can be used to write log files. @ivar offset: sample read offset @ivar table: the full index table @type table: L{morituri.image.table.Table} @ivar vendor: vendor of the CD drive @ivar model: model of the CD drive @ivar release: release of the CD drive @ivar cdrdaoVersion: version of cdrdao used for the rip @ivar cdparanoiaVersion: version of cdparanoia used for the rip """ offset = 0 overread = None logger = None table = None artist = None title = None vendor = None model = None release = None cdrdaoVersion = None cdparanoiaVersion = None cdparanoiaDefeatsCache = None classVersion = 3 def __init__(self): self.tracks = [] def getTrackResult(self, number): """ @param number: the track number (0 for HTOA) @type number: int @rtype: L{TrackResult} """ for t in self.tracks: if t.number == number: return t return None class Logger(object): """ I log the result of a rip. """ def log(self, ripResult, epoch=time.time()): """ Create a log from the given ripresult. @param epoch: when the log file gets generated @type epoch: float @type ripResult: L{RipResult} @rtype: str """ raise NotImplementedError # A setuptools-like entry point class EntryPoint(object): name = 'morituri' def load(self): from morituri.result import logger return logger.MorituriLogger def getLoggers(): """ Get all logger plugins with entry point 'morituri.logger'. @rtype: dict of C{str} -> C{Logger} """ d = {} pluggables = list(pkg_resources.iter_entry_points("morituri.logger")) for entrypoint in [EntryPoint(), ] + pluggables: plugin_class = entrypoint.load() d[entrypoint.name] = plugin_class return d