init: factorize code to get active accounts
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
parent
034a111e07
commit
bb8e03bced
@ -40,23 +40,6 @@ def getaccountlist(customconfig):
|
|||||||
# Account names in a list.
|
# Account names in a list.
|
||||||
return customconfig.getsectionlist('Account')
|
return customconfig.getsectionlist('Account')
|
||||||
|
|
||||||
# FIXME: spaghetti code alert!
|
|
||||||
def AccountListGenerator(customconfig):
|
|
||||||
"""Returns a list of instanciated Account class, one per account name."""
|
|
||||||
|
|
||||||
return [Account(customconfig, accountname)
|
|
||||||
for accountname in getaccountlist(customconfig)]
|
|
||||||
|
|
||||||
# FIXME: spaghetti code alert!
|
|
||||||
def AccountHashGenerator(customconfig):
|
|
||||||
"""Returns a dict of instanciated Account class with the account name as
|
|
||||||
key."""
|
|
||||||
|
|
||||||
retval = {}
|
|
||||||
for item in AccountListGenerator(customconfig):
|
|
||||||
retval[item.getname()] = item
|
|
||||||
return retval
|
|
||||||
|
|
||||||
|
|
||||||
class Account(CustomConfig.ConfigHelperMixin):
|
class Account(CustomConfig.ConfigHelperMixin):
|
||||||
"""Represents an account (ie. 2 repositories) to sync.
|
"""Represents an account (ie. 2 repositories) to sync.
|
||||||
|
@ -363,35 +363,37 @@ class OfflineImap(object):
|
|||||||
self.ui.debug('thread', "Dumped a total of %d Threads." %
|
self.ui.debug('thread', "Dumped a total of %d Threads." %
|
||||||
len(sys._current_frames().keys()))
|
len(sys._current_frames().keys()))
|
||||||
|
|
||||||
|
def _get_activeaccounts(self, options):
|
||||||
|
activeaccounts = []
|
||||||
|
errormsg = None
|
||||||
|
|
||||||
|
activeaccountnames = self.config.get("general", "accounts")
|
||||||
|
if options.accounts:
|
||||||
|
activeaccountnames = options.accounts
|
||||||
|
activeaccountnames = activeaccountnames.split(",")
|
||||||
|
|
||||||
|
allaccounts = accounts.getaccountlist(self.config)
|
||||||
|
for accountname in activeaccountnames:
|
||||||
|
if accountname in allaccounts:
|
||||||
|
activeaccounts.append(accountname)
|
||||||
|
else:
|
||||||
|
errormsg = "Valid accounts are: %s"% (
|
||||||
|
", ".join(allaccounts))
|
||||||
|
self.ui.error("The account '%s' does not exist"% accountname)
|
||||||
|
|
||||||
|
if len(activeaccounts) < 1:
|
||||||
|
errormsg = "No accounts are defined!"
|
||||||
|
|
||||||
|
if errormsg is not None:
|
||||||
|
self.ui.terminate(1, errormsg=errormsg)
|
||||||
|
|
||||||
|
return activeaccounts
|
||||||
|
|
||||||
def __sync(self, options):
|
def __sync(self, options):
|
||||||
"""Invoke the correct single/multithread syncing
|
"""Invoke the correct single/multithread syncing
|
||||||
|
|
||||||
self.config is supposed to have been correctly initialized
|
self.config is supposed to have been correctly initialized
|
||||||
already."""
|
already."""
|
||||||
try:
|
|
||||||
# Honor CLI --account option, only.
|
|
||||||
# Accounts to sync are put into syncaccounts variable.
|
|
||||||
activeaccounts = self.config.get("general", "accounts")
|
|
||||||
if options.accounts:
|
|
||||||
activeaccounts = options.accounts
|
|
||||||
activeaccounts = activeaccounts.replace(" ", "")
|
|
||||||
activeaccounts = activeaccounts.split(",")
|
|
||||||
allaccounts = accounts.AccountHashGenerator(self.config)
|
|
||||||
|
|
||||||
syncaccounts = []
|
|
||||||
for account in activeaccounts:
|
|
||||||
if account not in allaccounts:
|
|
||||||
if len(allaccounts) == 0:
|
|
||||||
errormsg = "The account '%s' does not exist because no" \
|
|
||||||
" accounts are defined!"% account
|
|
||||||
else:
|
|
||||||
errormsg = "The account '%s' does not exist. Valid ac" \
|
|
||||||
"counts are: %s"% \
|
|
||||||
(account, ", ".join(allaccounts.keys()))
|
|
||||||
self.ui.terminate(1, errormsg=errormsg)
|
|
||||||
if account not in syncaccounts:
|
|
||||||
syncaccounts.append(account)
|
|
||||||
|
|
||||||
def sig_handler(sig, frame):
|
def sig_handler(sig, frame):
|
||||||
if sig == signal.SIGUSR1:
|
if sig == signal.SIGUSR1:
|
||||||
@ -418,6 +420,7 @@ class OfflineImap(object):
|
|||||||
stacktrace.dump(sys.stderr)
|
stacktrace.dump(sys.stderr)
|
||||||
os.abort()
|
os.abort()
|
||||||
|
|
||||||
|
try:
|
||||||
self.num_sigterm = 0
|
self.num_sigterm = 0
|
||||||
signal.signal(signal.SIGHUP, sig_handler)
|
signal.signal(signal.SIGHUP, sig_handler)
|
||||||
signal.signal(signal.SIGUSR1, sig_handler)
|
signal.signal(signal.SIGUSR1, sig_handler)
|
||||||
@ -427,17 +430,18 @@ class OfflineImap(object):
|
|||||||
signal.signal(signal.SIGQUIT, sig_handler)
|
signal.signal(signal.SIGQUIT, sig_handler)
|
||||||
|
|
||||||
# Various initializations that need to be performed:
|
# Various initializations that need to be performed:
|
||||||
|
activeaccounts = self._get_activeaccounts(options)
|
||||||
mbnames.init(self.config, self.ui, options.dryrun)
|
mbnames.init(self.config, self.ui, options.dryrun)
|
||||||
|
|
||||||
if options.singlethreading:
|
if options.singlethreading:
|
||||||
# Singlethreaded.
|
# Singlethreaded.
|
||||||
self.__sync_singlethreaded(syncaccounts)
|
self.__sync_singlethreaded(activeaccounts)
|
||||||
else:
|
else:
|
||||||
# Multithreaded.
|
# Multithreaded.
|
||||||
t = threadutil.ExitNotifyThread(
|
t = threadutil.ExitNotifyThread(
|
||||||
target=syncitall,
|
target=syncitall,
|
||||||
name='Sync Runner',
|
name='Sync Runner',
|
||||||
args=(syncaccounts, self.config,)
|
args=(activeaccounts, self.config,)
|
||||||
)
|
)
|
||||||
# Special exit message for the monitor to stop looping.
|
# Special exit message for the monitor to stop looping.
|
||||||
t.exit_message = threadutil.STOP_MONITOR
|
t.exit_message = threadutil.STOP_MONITOR
|
||||||
@ -455,38 +459,25 @@ class OfflineImap(object):
|
|||||||
self.ui.terminate()
|
self.ui.terminate()
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
def __sync_singlethreaded(self, accs):
|
def __sync_singlethreaded(self, list_accounts):
|
||||||
"""Executed in singlethreaded mode only.
|
"""Executed in singlethreaded mode only.
|
||||||
|
|
||||||
:param accs: A list of accounts that should be synced
|
:param accs: A list of accounts that should be synced
|
||||||
"""
|
"""
|
||||||
for accountname in accs:
|
for accountname in list_accounts:
|
||||||
account = accounts.SyncableAccount(self.config, accountname)
|
account = accounts.SyncableAccount(self.config, accountname)
|
||||||
threading.currentThread().name = "Account sync %s"% accountname
|
threading.currentThread().name = "Account sync %s"% account.name
|
||||||
account.syncrunner()
|
account.syncrunner()
|
||||||
|
|
||||||
def __serverdiagnostics(self, options):
|
def __serverdiagnostics(self, options):
|
||||||
self.ui.info(" imaplib2: %s (%s)"% (imaplib.__version__, imaplib.DESC))
|
self.ui.info(" imaplib2: %s (%s)"% (imaplib.__version__, imaplib.DESC))
|
||||||
activeaccounts = self.config.get("general", "accounts")
|
for accountname in self._get_activeaccounts(options):
|
||||||
if options.accounts:
|
account = accounts.Account(self.config, accountname)
|
||||||
activeaccounts = options.accounts
|
|
||||||
activeaccounts = activeaccounts.split(",")
|
|
||||||
allaccounts = accounts.AccountListGenerator(self.config)
|
|
||||||
for account in allaccounts:
|
|
||||||
if account.name not in activeaccounts: continue
|
|
||||||
account.serverdiagnostics()
|
account.serverdiagnostics()
|
||||||
|
|
||||||
def __migratefmd5(self, options):
|
def __migratefmd5(self, options):
|
||||||
activeaccounts = self.config.get("general", "accounts")
|
for accountname in self._get_activeaccounts(options):
|
||||||
if options.accounts:
|
account = accounts.Account(self.config, accountname)
|
||||||
activeaccounts = options.accounts
|
|
||||||
activeaccounts = activeaccounts.replace(" ", "")
|
|
||||||
activeaccounts = activeaccounts.split(",")
|
|
||||||
allaccounts = accounts.AccountListGenerator(self.config)
|
|
||||||
|
|
||||||
for account in allaccounts:
|
|
||||||
if account.name not in activeaccounts:
|
|
||||||
continue
|
|
||||||
localrepo = Repository(account, 'local')
|
localrepo = Repository(account, 'local')
|
||||||
if localrepo.getfoldertype() != folder.Maildir.MaildirFolder:
|
if localrepo.getfoldertype() != folder.Maildir.MaildirFolder:
|
||||||
continue
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user