summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2010-02-26 20:25:07 +0100
committerSebastian Pipping <sebastian@pipping.org>2010-02-26 20:32:52 +0100
commit92efbc0a73df31655597895c9526e8b80d3e7bef (patch)
tree45961c03c43052f8276e47f8c4d6d88a5614a62b
parent10f33da79d6c99d0360bd2c1d3365af4d7fc991c (diff)
downloadlayman-92efbc0a73df31655597895c9526e8b80d3e7bef.tar.gz
layman-92efbc0a73df31655597895c9526e8b80d3e7bef.tar.bz2
layman-92efbc0a73df31655597895c9526e8b80d3e7bef.zip
Move code from ListLocal/ListRemote up to List
-rw-r--r--layman/action.py95
1 files changed, 39 insertions, 56 deletions
diff --git a/layman/action.py b/layman/action.py
index c786d51..5d8dfd5 100644
--- a/layman/action.py
+++ b/layman/action.py
@@ -368,8 +368,36 @@ class Info:
#-------------------------------------------------------------------------------
class List(object):
- def __init__(self, config):
+ def __init__(self, config, db):
self.config = config
+ self.db = db
+
+ def _run(self, complain):
+ for summary, supported, official \
+ in self.db.list(self.config['verbose'], self.config['width']):
+ # Is the overlay supported?
+ if supported:
+ # Is this an official overlay?
+ if official:
+ OUT.info(summary, 1)
+ # Unofficial overlays will only be listed if we are not
+ # checking or listing verbose
+ elif complain:
+ # Give a reason why this is marked yellow if it is a verbose
+ # listing
+ if self.config['verbose']:
+ OUT.warn('*** This is no official gentoo overlay ***\n', 1)
+ OUT.warn(summary, 1)
+ # Unsupported overlays will only be listed if we are not checking
+ # or listing verbose
+ elif complain:
+ # Give a reason why this is marked red if it is a verbose
+ # listing
+ if self.config['verbose']:
+ OUT.error('*** You are lacking the necessary tools '
+ 'to install this overlay ***\n')
+ OUT.error(summary)
+
#===============================================================================
#
@@ -394,7 +422,7 @@ class ListRemote(List):
... 'svn_command':'/usr/bin/svn',
... 'rsync_command':'/usr/bin/rsync'}
>>> a = ListRemote(config)
- >>> a.rdb.cache()
+ >>> a.db.cache()
>>> OUT.color_off()
>>> a.run()
* wrobel [Subversion] (https://o.g.o/svn/dev/wrobel )
@@ -427,38 +455,16 @@ class ListRemote(List):
'''
def __init__(self, config):
-
OUT.debug('Creating RemoteDB handler', 6)
-
- self.rdb = RemoteDB(config)
- super(ListRemote, self).__init__(config)
+ super(ListRemote, self).__init__(config, RemoteDB(config))
def run(self):
''' List the available overlays.'''
- for i in self.rdb.list(self.config['verbose'], self.config['width']):
- # Is the overlay supported?
- if i[1]:
- # Is this an official overlay?
- if i[2]:
- OUT.info(i[0], 1)
- # Unofficial overlays will only be listed if we are not
- # checking or listing verbose
- elif self.config['nocheck'] or self.config['verbose']:
- # Give a reason why this is marked yellow if it is a verbose
- # listing
- if self.config['verbose']:
- OUT.warn('*** This is no official gentoo overlay ***\n', 1)
- OUT.warn(i[0], 1)
- # Unsupported overlays will only be listed if we are not checking
- # or listing verbose
- elif self.config['nocheck'] or self.config['verbose']:
- # Give a reason why this is marked red if it is a verbose
- # listing
- if self.config['verbose']:
- OUT.error('*** You are lacking the necessary tools to insta'
- 'll this overlay ***\n')
- OUT.error(i[0])
+ OUT.debug('Printing remote overlays.', 8)
+
+ _complain = self.config['nocheck'] or self.config['verbose']
+ self._run(complain=_complain)
return 0
@@ -472,38 +478,15 @@ class ListLocal(List):
''' Lists the local overlays.'''
def __init__(self, config):
- self.db = DB(config)
- super(ListLocal, self).__init__(config)
+ OUT.debug('Creating DB handler', 6)
+ super(ListLocal, self).__init__(config, DB(config))
def run(self):
'''List the overlays.'''
- for i in self.db.list(self.config['verbose']):
+ OUT.debug('Printing local overlays.', 8)
- OUT.debug('Printing local overlay.', 8)
-
- # Is the overlay supported?
- if i[1]:
- # Is this an official overlay?
- if i[2]:
- OUT.info(i[0], 1)
- # Unofficial overlays will only be listed if we are not
- # checking or listing verbose
- else:
- # Give a reason why this is marked yellow if it is a verbose
- # listing
- if self.config['verbose']:
- OUT.warn('*** This is no official gentoo overlay ***\n', 1)
- OUT.warn(i[0], 1)
- # Unsupported overlays will only be listed if we are not checking
- # or listing verbose
- else:
- # Give a reason why this is marked red if it is a verbose
- # listing
- if self.config['verbose']:
- OUT.error('*** You are lacking the necessary tools to insta'
- 'll this overlay ***\n')
- OUT.error(i[0])
+ self._run(complain=True)
return 0