* remove configure.configure, use __version__, remove getRevision() * remove empty configure/ directory * remove morituri.configure imports
88 lines
3.1 KiB
Python
88 lines
3.1 KiB
Python
# -*- Mode: Python -*-
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
import os
|
|
import sys
|
|
import pkg_resources
|
|
import musicbrainzngs
|
|
|
|
import morituri
|
|
|
|
from morituri.command import cd, offset, drive, image, accurip, debug
|
|
from morituri.command.basecommand import BaseCommand
|
|
from morituri.common import common, directory
|
|
from morituri.extern.task import task
|
|
|
|
import logging
|
|
logger = logging.getLogger(__name__)
|
|
|
|
def main():
|
|
# set user agent
|
|
musicbrainzngs.set_useragent("whipper", morituri.__version__,
|
|
"https://github.com/JoeLametta/whipper")
|
|
# register plugins with pkg_resources
|
|
distributions, _ = pkg_resources.working_set.find_plugins(
|
|
pkg_resources.Environment([directory.data_path('plugins')])
|
|
)
|
|
map(pkg_resources.working_set.add, distributions)
|
|
try:
|
|
ret = Whipper(sys.argv[1:], os.path.basename(sys.argv[0]), None).do()
|
|
except SystemError, e:
|
|
sys.stderr.write('whipper: error: %s\n' % e.args)
|
|
return 255
|
|
except ImportError, e:
|
|
raise ImportError(e)
|
|
except task.TaskException, e:
|
|
if isinstance(e.exception, ImportError):
|
|
raise ImportError(e.exception)
|
|
elif isinstance(e.exception, common.MissingDependencyException):
|
|
sys.stderr.write('whipper: error: missing dependency "%s"\n' %
|
|
e.exception.dependency)
|
|
return 255
|
|
|
|
if isinstance(e.exception, common.EmptyError):
|
|
logger.debug("EmptyError: %r", str(e.exception))
|
|
sys.stderr.write('whipper: error: Could not create encoded file.\n')
|
|
return 255
|
|
|
|
# in python3 we can instead do `raise e.exception` as that would show
|
|
# the exception's original context
|
|
sys.stderr.write(e.exceptionMessage)
|
|
return 255
|
|
return ret if ret else 0
|
|
|
|
class Whipper(BaseCommand):
|
|
description = """whipper is a CD ripping utility focusing on accuracy over speed.
|
|
|
|
whipper gives you a tree of subcommands to work with.
|
|
You can get help on subcommands by using the -h option to the subcommand.
|
|
"""
|
|
no_add_help = True
|
|
subcommands = {
|
|
'accurip': accurip.AccuRip,
|
|
'cd': cd.CD,
|
|
'debug': debug.Debug,
|
|
'drive': drive.Drive,
|
|
'offset': offset.Offset,
|
|
'image': image.Image
|
|
}
|
|
|
|
def add_arguments(self):
|
|
self.parser.add_argument('-R', '--record',
|
|
action='store_true', dest='record',
|
|
help="record API requests for playback")
|
|
self.parser.add_argument('-v', '--version',
|
|
action="store_true", dest="version",
|
|
help="show version information")
|
|
self.parser.add_argument('-h', '--help',
|
|
action="store_true", dest="help",
|
|
help="show this help message and exit")
|
|
|
|
def handle_arguments(self):
|
|
if self.options.help:
|
|
self.parser.print_help()
|
|
sys.exit(0)
|
|
if self.options.version:
|
|
print "whipper %s" % morituri.__version__
|
|
sys.exit(0)
|