You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-utils-3-client/pym/cl_sync.py

132 lines
5.7 KiB

#-*- coding: utf-8 -*-
# Copyright 2010 Mir Calculate Ltd. http://www.calculate-linux.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from cl_client import client, __app__, __version__
from cl_opt import opt, TitledHelpFormatter
import sys
from cl_share_cmd import share_cmd
# Перевод сообщений для программы
from cl_lang import lang
lang().setLanguage(sys.modules[__name__])
# Использование программы
USAGE = _("%prog [options] user")
# Коментарии к использованию программы
COMMENT_EXAMPLES = _("Mount resources and synchronize user profile")
# Пример использования программы
EXAMPLES = _("%prog user_name")
# Описание программы (что делает программа)
DESCRIPTION = _("Mounting resources and synchronize the user profile")
# Опции командной строки
CMD_OPTIONS = [{'longOption':"progress",
'help':_("show progress bar for xdm startup")},
{'longOption':"login",
'help':_("mount user resource and synchronize the user \
profile")},
{'longOption':"logout",
'help':_("synchronize the user profile and umount user \
resource")},
{'longOption':"nosync",
'help':_("not synchronize the user preferences, is used \
in conjunction with the 'login' or 'logout'")}]
class sync(share_cmd):
def __init__(self):
# Объект опций командной строки
self.optobj = opt(\
package=__app__,
version=__version__,
usage=USAGE,
examples=EXAMPLES,
comment_examples=COMMENT_EXAMPLES,
description=DESCRIPTION,
option_list=CMD_OPTIONS + opt.variable_control+opt.color_control,
formatter=TitledHelpFormatter(),
check_values=self.checkOpts)
# Создаем объект логики
self.logicObj = client()
# Создаем переменные
self.logicObj.createClVars()
# Названия несовместимых опций
self.optionsNamesIncompatible = ["login", "logout"]
# Названия обязательных опций
self.optionsNamesRequired = self.optionsNamesIncompatible
def getOptionsRequired(self, optObj):
"""Получаем обязательные опции"""
retList = []
for nameOpt in self.optionsNamesRequired:
retList.append(getattr(optObj, nameOpt))
return retList
def _getNamesAllSetOptions(self):
"""Выдает словарь измененных опций"""
setOptDict = self.optobj.values.__dict__.items()
defaultOptDict = self.optobj.get_default_values().__dict__.items()
return dict(set(setOptDict) - set(defaultOptDict)).keys()
def getStringIncompatibleOptions(self):
"""Форматированная строка несовместимых опций разделенных ','"""
listOpt = list(set(self.optionsNamesIncompatible) &\
set(self._getNamesAllSetOptions()))
return ", ".join(map(lambda x: len(x) == 1 and "'-%s'"%x or "'--%s'"%x,\
listOpt))
def checkOpts(self, optObj, args):
"""Проверка опций командной строки"""
optionsRequired = self.getOptionsRequired(optObj)
if not args:
errMsg = _("no such argument")+":"+" %s" %USAGE.split(" ")[-1]
self.optobj.error(errMsg)
return False
elif len(filter(lambda x: x, optionsRequired))>1:
errMsg = _("incompatible options")+":"+" %s"\
%self.getStringIncompatibleOptions()
self.optobj.error(errMsg)
return False
elif not filter(lambda x: x, optionsRequired):
errMsg = _("required option")+":"+" %s"\
%" or ".join(map(lambda x:\
len(x) == 1 and "'-%s'"%x or "'--%s'"%x,\
self.optionsNamesRequired))
self.optobj.error(errMsg)
return False
if len(args)>1:
errMsg = _("incorrect argument") + ":" + " %s" %" ".join(args)
self.optobj.error(errMsg)
return False
return optObj, args
def setUserName(self, userName):
"""Установка имени пользователя"""
self.logicObj.clVars.Set("ur_login", userName, True)
def mountUserResAndSync(self, sync=True, progress=False):
"""Монтирование ресурсов и синхронизация при входе"""
userName = self.logicObj.clVars.Get("ur_login")
return self.logicObj.mountUserResAndSync(userName, sync=sync,
progress=progress)
def umountUserResAndSync(self, sync=True, progress=False):
"""Отмонтирование ресурсов и синхронизация при выходе"""
userName = self.logicObj.clVars.Get("ur_login")
return self.logicObj.umountUserResAndSync(userName, sync=sync,
progress=progress)