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/install_opt.py

117 lines
3.9 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_install import cl_install, __app__, __version__
from cl_opt import opt
import sys
from cl_lang import lang
lang().setLanguage(sys.modules[__name__])
class install_opt(cl_install,opt):
"""Class for work with cl_install by console"""
def __init__(self):
opt.__init__(self,
package=__app__,
version=__version__,
description=_("""\
Utility for installation and configuration of Calculate Linux"""),
option_list=\
[{'shortOption':"T",
'longOption':"template",
'optVal':"TEMPLATE", 'help':_("process template")
},
{'shortOption':"l",
'longOption':"lang",
'optVal':"LANG",
'help':_("set language")
}]\
+ self.variable_control\
+ self.color_control)
cl_install.__init__(self)
def check_values(self, values, args):
"""Check values all specified options."""
if len(args) > 0:
self.error(_("unrecognized option") + ": %s"% "".join(args))
if values.T is None and \
values.vars is None:
self.error(_("installation yet is not exists"))
if not values.T in [None,"all"]:
self.error(
_("defenition of a particular template yet is not supported"))
# check syntax --set
self.checkVarSyntax(values)
return (values, args)
def processSetLang(self,lang):
"""Process set locales by lang"""
if self.setAllLocaleByLang(lang):
return True
else:
self.printERROR(_("specified lang %s is unsupported")%lang)
return False
def processSetVars(self,vars):
"""Process setting values for variables"""
for vals in vars:
for val in vals.split(','):
k,o,v = val.partition('=')
if self.clVars.exists(k):
if not self.clVars.Set(k,v):
return False
else:
self.printERROR(_('variable %s not found')%k)
return False
return True
def processDisplayVars(self,vars):
"""Process displaying variables"""
terms = vars.split(",")
# if value of vars is "all" print all variables
if terms == ["all"]:
self.clVars.printVars()
# print only specified variables
else:
self.clVars.printVars(terms)
def processTemplateSelect(self,template):
"""Process template appling"""
if self.applyTemplatesForSystem():
return True
else:
return False
def run(self,options,args):
"""Processing of all receiving options"""
# variables printing
self.initVars()
if options.color == "never":
self.setNoColor()
if not options.l is None:
if not self.processSetLang(options.l):
return False
if options.set:
if not self.processSetVars(options.set):
return False
if not options.vars is None:
self.processDisplayVars(options.vars)
return True
elif not options.T is None:
return self.applyTemplatesForSystem()
else:
return False