* configure.ac:
* morituri/Makefile.am: * morituri/result (added): * morituri/result/result.py (added): * morituri/result/__init__.py (added): * morituri/result/Makefile.am (added): Add classes to store track and rip results in.
This commit is contained in:
10
ChangeLog
10
ChangeLog
@@ -1,3 +1,13 @@
|
||||
2009-06-05 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
* morituri/Makefile.am:
|
||||
* morituri/result (added):
|
||||
* morituri/result/result.py (added):
|
||||
* morituri/result/__init__.py (added):
|
||||
* morituri/result/Makefile.am (added):
|
||||
Add classes to store track and rip results in.
|
||||
|
||||
2009-06-04 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* morituri/common/common.py:
|
||||
|
||||
@@ -57,6 +57,7 @@ morituri/configure/installed.py
|
||||
morituri/extern/Makefile
|
||||
morituri/image/Makefile
|
||||
morituri/program/Makefile
|
||||
morituri/result/Makefile
|
||||
morituri/test/Makefile
|
||||
doc/Makefile
|
||||
misc/Makefile
|
||||
|
||||
@@ -5,4 +5,4 @@ morituridir = $(PYTHONLIBDIR)/morituri
|
||||
morituri_PYTHON = \
|
||||
__init__.py
|
||||
|
||||
SUBDIRS = common configure extern image program rip test
|
||||
SUBDIRS = common configure extern image program result rip test
|
||||
|
||||
7
morituri/result/Makefile.am
Normal file
7
morituri/result/Makefile.am
Normal file
@@ -0,0 +1,7 @@
|
||||
CLEANFILES = *.py{c,o}
|
||||
|
||||
morituridir = $(PYTHONLIBDIR)/morituri/result
|
||||
|
||||
morituri_PYTHON = \
|
||||
__init__.py \
|
||||
result.py
|
||||
0
morituri/result/__init__.py
Normal file
0
morituri/result/__init__.py
Normal file
60
morituri/result/result.py
Normal file
60
morituri/result/result.py
Normal file
@@ -0,0 +1,60 @@
|
||||
# -*- 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 morituri.
|
||||
#
|
||||
# morituri 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.
|
||||
#
|
||||
# morituri 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 morituri. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
class TrackResult:
|
||||
"""
|
||||
@ivar testcrc: 4-byte CRC for the test read
|
||||
@type testcrc: int
|
||||
@ivar copycrc: 4-byte CRC for the copy read
|
||||
@type copycrc: int
|
||||
"""
|
||||
number = None
|
||||
filename = None
|
||||
pregap = 0 # in frames
|
||||
|
||||
peak = 0.0
|
||||
quality = 0.0
|
||||
testcrc = None
|
||||
copycrc = None
|
||||
accurip = False # whether it's in the database
|
||||
accuripCRC = None
|
||||
accuripDatabaseCRC = None
|
||||
accuripDatabaseConfidence = None
|
||||
|
||||
class RipResult:
|
||||
"""
|
||||
I hold information about the result for rips.
|
||||
I can be used to write log files.
|
||||
|
||||
@ivar offset: sample read offset
|
||||
"""
|
||||
|
||||
offset = 0
|
||||
toctable = None
|
||||
artist = None
|
||||
title = None
|
||||
|
||||
vendor = None
|
||||
model = None
|
||||
|
||||
def __init__(self):
|
||||
self.tracks = []
|
||||
Reference in New Issue
Block a user