* morituri.spec.in:
* morituri/common/config.py: Use XDG if we can import xdg. Fix writing the config.
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* morituri.spec.in:
|
||||||
|
* morituri/common/config.py:
|
||||||
|
Use XDG if we can import xdg.
|
||||||
|
Fix writing the config.
|
||||||
|
|
||||||
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
|
2012-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* morituri/common/drive.py:
|
* morituri/common/drive.py:
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ Requires: gstreamer-python
|
|||||||
Requires: python-musicbrainz2
|
Requires: python-musicbrainz2
|
||||||
Requires: python-CDDB
|
Requires: python-CDDB
|
||||||
Requires: pycdio
|
Requires: pycdio
|
||||||
|
Requires: pyxdg
|
||||||
|
|
||||||
# we use parse_version in code
|
# we use parse_version in code
|
||||||
Requires: python-setuptools
|
Requires: python-setuptools
|
||||||
@@ -55,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_sysconfdir}/bash_completion.d/
|
%{_sysconfdir}/bash_completion.d/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Dec 02 2012 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
- Require pyxdg for XDG config file.
|
||||||
|
|
||||||
* Sun Jan 09 2011 Thomas Vander Stichele <thomas at apestaart dot org>
|
* Sun Jan 09 2011 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
- Fix URL
|
- Fix URL
|
||||||
|
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
# along with morituri. If not, see <http://www.gnu.org/licenses/>.
|
# along with morituri. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import os.path
|
import os.path
|
||||||
|
import shutil
|
||||||
import urllib
|
import urllib
|
||||||
import codecs
|
import codecs
|
||||||
import tempfile
|
import tempfile
|
||||||
@@ -33,7 +34,7 @@ class Config(log.Loggable):
|
|||||||
|
|
||||||
def __init__(self, path=None):
|
def __init__(self, path=None):
|
||||||
if not path:
|
if not path:
|
||||||
path = os.path.expanduser('~/.moriturirc')
|
path = self.getDefaultPath()
|
||||||
|
|
||||||
self._path = path
|
self._path = path
|
||||||
|
|
||||||
@@ -41,16 +42,35 @@ class Config(log.Loggable):
|
|||||||
|
|
||||||
self.open()
|
self.open()
|
||||||
|
|
||||||
|
def getDefaultPath(self):
|
||||||
|
try:
|
||||||
|
from xdg import BaseDirectory
|
||||||
|
directory = os.path.join(BaseDirectory.xdg_config_home, 'morituri')
|
||||||
|
if not os.path.isdir(directory):
|
||||||
|
os.mkdir(directory)
|
||||||
|
path = os.path.join(directory, 'morituri.conf')
|
||||||
|
self.info('Using XDG, configuration file is %s' % path)
|
||||||
|
return path
|
||||||
|
except ImportError:
|
||||||
|
path = os.path.expanduser('~/.moriturirc')
|
||||||
|
self.info('Not using XDG, configuration file is %s' % path)
|
||||||
|
return path
|
||||||
|
|
||||||
def open(self):
|
def open(self):
|
||||||
# Open the file with the correct encoding
|
# Open the file with the correct encoding
|
||||||
if os.path.exists(self._path):
|
if os.path.exists(self._path):
|
||||||
with codecs.open(self._path, 'r', encoding='utf-8') as f:
|
with codecs.open(self._path, 'r', encoding='utf-8') as f:
|
||||||
self._parser.readfp(f)
|
self._parser.readfp(f)
|
||||||
|
|
||||||
|
self.info('Loaded %d sections from config file' %
|
||||||
|
len(self._parser.sections()))
|
||||||
|
|
||||||
|
|
||||||
def setReadOffset(self, vendor, model, release, offset):
|
def setReadOffset(self, vendor, model, release, offset):
|
||||||
"""
|
"""
|
||||||
Set a read offset for the given drive.
|
Set a read offset for the given drive.
|
||||||
|
|
||||||
|
Strips the given strings of leading and trailing whitespace.
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
section = self._findDriveSection(vendor, model, release)
|
section = self._findDriveSection(vendor, model, release)
|
||||||
@@ -59,8 +79,10 @@ class Config(log.Loggable):
|
|||||||
self._parser.add_section(section)
|
self._parser.add_section(section)
|
||||||
read_offset = str(offset)
|
read_offset = str(offset)
|
||||||
for key in ['vendor', 'model', 'release', 'read_offset']:
|
for key in ['vendor', 'model', 'release', 'read_offset']:
|
||||||
self._parser.set(section, key, locals()[key])
|
self._parser.set(section, key, locals()[key].strip())
|
||||||
|
|
||||||
|
self.write()
|
||||||
|
|
||||||
def getReadOffset(self, vendor, model, release):
|
def getReadOffset(self, vendor, model, release):
|
||||||
"""
|
"""
|
||||||
Get a read offset for the given drive.
|
Get a read offset for the given drive.
|
||||||
@@ -74,11 +96,18 @@ class Config(log.Loggable):
|
|||||||
if not name.startswith('drive:'):
|
if not name.startswith('drive:'):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if vendor != self._parser.get(name, 'vendor'):
|
self.debug('Looking at section %r' % name)
|
||||||
|
conf = {}
|
||||||
|
for key in ['vendor', 'model', 'release']:
|
||||||
|
locals()[key] = locals()[key].strip()
|
||||||
|
conf[key] = self._parser.get(name, key)
|
||||||
|
self.debug("%s: '%s' versus '%s'" % (
|
||||||
|
key, locals()[key], conf[key]))
|
||||||
|
if vendor.strip() != conf['vendor']:
|
||||||
continue
|
continue
|
||||||
if model != self._parser.get(name, 'model'):
|
if model != conf['model']:
|
||||||
continue
|
continue
|
||||||
if release != self._parser.get(name, 'release'):
|
if release != conf['release']:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
return name
|
return name
|
||||||
@@ -87,6 +116,7 @@ class Config(log.Loggable):
|
|||||||
|
|
||||||
def write(self):
|
def write(self):
|
||||||
fd, path = tempfile.mkstemp(suffix=u'.moriturirc')
|
fd, path = tempfile.mkstemp(suffix=u'.moriturirc')
|
||||||
self._parser.write(fd)
|
handle = os.fdopen(fd, 'w')
|
||||||
os.close(fd)
|
self._parser.write(handle)
|
||||||
os.rename(path, self._path)
|
handle.close()
|
||||||
|
shutil.move(path, self._path)
|
||||||
|
|||||||
Reference in New Issue
Block a user