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-2.2-install/pym/cl_apply_template_cmd.py

107 lines
3.9 KiB

#-*- coding: utf-8 -*-
# Copyright 2010 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.
import os, sys
from cl_apply_template import updateConfFiles, __app__, __version__
from cl_opt import opt
from cl_share_cmd import share_cmd
from cl_lang import lang
lang().setLanguage(sys.modules[__name__])
USAGE = _("%prog [options] path_clt_file")
COMMENT_EXAMPLES = _("Apply all of the templates for all packages")
EXAMPLES = _("%prog --locate all")
DESCRIPTION = _("The Calculate Linux utility to use templates")
CMD_OPTIONS = [{'shortOption':"l",
'longOption':"locate",
'optVal':"LOCATE",
'type':'choice',
'choices':['all','clt','local','remote'],
'help':_("select location templates \
'all','clt','local','remote'")},
{'longOption':"clt",
'optVal':"CLT_TEMPLATE",
'help':_("process clt template (default)")
}]
class apply_template_cmd(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.color_control + opt.variable_control,
check_values=self.checkOpts)
# Создаем объект логики
self.logicObj = updateConfFiles()
def checkOpts(self, optObj, args):
"""Проверка опций командной строки"""
if len(args) == 0:
if not optObj.clt and not optObj.l:
errMsg = _("required option")+": --clt "+_("or")+" --locate"
self.optobj.error(errMsg)
return False
elif len(args) == 1:
if optObj.clt:
errMsg = _("incorrect option")+":"+" --%s" %"clt" + " " + \
str(optObj.clt)
self.optobj.error(errMsg)
return False
if optObj.l:
errMsg = _("incorrect option")+":"+" --%s" %"locate" + " " + \
str(optObj.l)
self.optobj.error(errMsg)
return False
else:
errMsg = _("incorrect arguments") + ":" + " %s" %" ".join(args)
self.optobj.error(errMsg)
return False
self.optobj.checkVarSyntax(optObj)
return optObj, args
def applyCltTemplate(self, cltTemplate):
"""Применяем clt шаблон"""
if cltTemplate[0] != "/":
currentPath = os.getcwd()
cltTemplate = os.path.join(currentPath, cltTemplate)
return self.logicObj.applyCltTemplate(cltTemplate)
def applyAllTemplates(self):
"""Применяем все шаблоны"""
return self.logicObj.applyAllTemplates()
def applyLocalTemplates(self):
"""We use local templates"""
return self.logicObj.applyAllTemplates(location="local")
def applyRemoteTemplates(self):
"""We use remote templates"""
return self.logicObj.applyAllTemplates(location="remote")
def applyCltTemplates(self):
"""We use all clt templates"""
return self.logicObj.applyAllTemplates(location="clt")