2019-12-04 01:48:41 -05:00
|
|
|
import configparser
|
|
|
|
import io
|
|
|
|
import os
|
|
|
|
import pathlib
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
|
|
_font_re = re.compile(r'(\.(psfu?|fnt))?(\.gz)?$', re.IGNORECASE)
|
|
|
|
_kbd_re = re.compile(r'(\.map)?(\.gz)?$')
|
|
|
|
|
|
|
|
|
|
|
|
class Font(object):
|
|
|
|
def __init__(self, font_xml):
|
|
|
|
self.xml = font_xml
|
|
|
|
self.settings = {}
|
|
|
|
if self.xml:
|
|
|
|
chk = {'FONT': self.xml.find('font'),
|
|
|
|
'FONT_MAP': self.xml.find('map'),
|
|
|
|
'FONT_UNIMAP': self.xml.find('unicodeMap')}
|
|
|
|
for setting, xml in chk.items():
|
|
|
|
if xml:
|
|
|
|
self.settings[setting] = xml.text.strip()
|
|
|
|
|
|
|
|
def verify(self, chroot_base = '/'):
|
|
|
|
if 'FONT' not in self.settings.keys():
|
|
|
|
return(None)
|
|
|
|
fontdir = pathlib.Path(chroot_base).joinpath('usr', 'share', 'kbd', 'consolefonts')
|
|
|
|
fontnames = [_font_re.sub('', p.stem) for p in fontdir.iterdir() if not p.stem.startswith(('README.',
|
|
|
|
'partialfonts',
|
|
|
|
'ERRORS'))]
|
|
|
|
if self.settings['FONT'] not in fontnames:
|
|
|
|
raise ValueError('console font is not installed on target system')
|
|
|
|
return(True)
|
|
|
|
|
|
|
|
|
|
|
|
class Keyboard(object):
|
2019-12-10 06:59:47 -05:00
|
|
|
def __init__(self, chroot_base, keyboard_xml):
|
2019-12-04 01:48:41 -05:00
|
|
|
self.xml = keyboard_xml
|
2019-12-10 06:59:47 -05:00
|
|
|
self.chroot_base = chroot_base
|
2019-12-04 01:48:41 -05:00
|
|
|
self.settings = {}
|
|
|
|
if self.xml:
|
|
|
|
chk = {'KEYMAP': self.xml.find('map'),
|
|
|
|
'KEYMAP_TOGGLE': self.xml.find('toggle')}
|
|
|
|
for setting, xml in chk.items():
|
|
|
|
if xml:
|
|
|
|
self.settings[setting] = xml.text.strip()
|
|
|
|
|
2019-12-10 06:59:47 -05:00
|
|
|
def verify(self):
|
2019-12-04 01:48:41 -05:00
|
|
|
kbdnames = []
|
|
|
|
for i in ('KEYMAP', 'KEYMAP_TOGGLE'):
|
|
|
|
if i in self.settings.keys():
|
|
|
|
kbdnames.append(self.settings[i])
|
|
|
|
if not kbdnames:
|
|
|
|
return(None)
|
2019-12-10 06:59:47 -05:00
|
|
|
keymapdir = os.path.join(self.chroot_base, 'usr', 'share', 'kbd', 'keymaps')
|
2019-12-04 01:48:41 -05:00
|
|
|
kbdmaps = []
|
|
|
|
for root, dirs, files in os.walk(keymapdir, topdown = True):
|
|
|
|
if root.endswith('/include'):
|
|
|
|
dirs[:] = []
|
|
|
|
files[:] = []
|
|
|
|
continue
|
|
|
|
for f in files:
|
|
|
|
if f.endswith('.inc'):
|
|
|
|
continue
|
|
|
|
kbdmaps.append(_kbd_re.sub('', f))
|
|
|
|
for k in kbdnames:
|
|
|
|
if k not in kbdmaps:
|
|
|
|
raise ValueError('keyboard map "{0}" is not installed on target system'.format(k))
|
|
|
|
return(True)
|
|
|
|
|
|
|
|
|
|
|
|
class Console(object):
|
2019-12-10 06:59:47 -05:00
|
|
|
def __init__(self, chroot_base, console_xml):
|
2019-12-04 01:48:41 -05:00
|
|
|
self.xml = console_xml
|
2019-12-10 06:59:47 -05:00
|
|
|
self.chroot_base = chroot_base
|
2019-12-04 01:48:41 -05:00
|
|
|
self._cfg = configparser.ConfigParser()
|
|
|
|
self._cfg.optionxform(str)
|
|
|
|
self.keyboard = Keyboard(self.xml.find('keyboard'))
|
|
|
|
self.font = Font(self.xml.find('text'))
|
|
|
|
self._cfg['BASE'] = {}
|
|
|
|
for i in (self.keyboard, self.font):
|
|
|
|
self._cfg['BASE'].update(i.settings)
|
|
|
|
|
2019-12-10 06:59:47 -05:00
|
|
|
def writeConf(self):
|
2019-12-04 01:48:41 -05:00
|
|
|
for x in (self.font, self.keyboard):
|
2019-12-10 06:59:47 -05:00
|
|
|
x.verify()
|
|
|
|
cfg = os.path.join(self.chroot_base, 'etc', 'vconsole.conf')
|
2019-12-04 01:48:41 -05:00
|
|
|
# We have to strip out the section from the ini.
|
|
|
|
cfgbuf = io.StringIO()
|
|
|
|
self._cfg.write(cfgbuf, space_around_delimiters = False)
|
|
|
|
cfgbuf.seek(0, 0)
|
|
|
|
with open(cfg, 'w') as fh:
|
|
|
|
for line in cfgbuf.readlines():
|
|
|
|
if line.startswith('[BASE]') or line.strip() == '':
|
|
|
|
continue
|
|
|
|
fh.write(line)
|
|
|
|
os.chmod(cfg, 0o0644)
|
|
|
|
os.chown(cfg, 0, 0)
|
2019-12-11 04:33:15 -05:00
|
|
|
return(None)
|