guacamole-spice-protocol/protocols/rdp/tools/ini2dot_h_unimap.py

130 lines
4.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is libguac-client-rdp.
#
# The Initial Developer of the Original Code is
# Jocelyn DELALANDE <j.delalande@ulteo.com> Ulteo SAS - http://www.ulteo.com
#
# Portions created by the Initial Developer are Copyright (C) 2012 Ulteo SAS.
#
# Contributor(s):
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
# Converts a .ini file defining unicode exceptions to a dot_h file
# The dot_h file defines an array of keysim->unicode
#
# Used to extract the keysym<->unicode mapping exceptions from
# unicode_exception.ini (can be found in Ulteo patched version of xrdp)
#
# Such an ini file can be found at
# http://www.ulteo.com/home/en/download/sourcecode (xrdp folder)
#
import sys
import ConfigParser
class KeysymMaps:
def __init__(self):
# 4 digits keysyms
self.base = []
# Extented keysym starting with 0x1000
self.ext0 = []
# Extented keysym starting with 0x1001
self.ext1 = []
# Extented keysym starting with 0x1002
self.ext2 = []
def insert(self, keysym, uni):
# Main keysym table is 4-digit hexa keysyms
# (most of 'em are 3-digits but they lack the leading zero)
if len(keysym) <= 6:
self.base.append((keysym[2:], uni))
elif keysym.startswith('0x100'):
if keysym[:6] == '0x1000':
self.ext0.append((keysym[6:], uni))
elif keysym[:6] == '0x1001':
self.ext1.append((keysym[6:], uni))
elif keysym[:6] == '0x1002':
self.ext2.append((keysym[6:], uni))
else:
raise ValueError("Unexpected keysym : %s" % keysym)
else:
raise ValueError("Unexpected keysym : %s" % keysym)
def get_h_content(self, base_name, ext0_name, ext1_name, ext2_name):
out = ''
maps = ((base_name, self.base),
(ext0_name, self.ext0),
(ext1_name, self.ext1),
(ext2_name, self.ext2))
for var_name, kmap in maps:
for keysym, uni in kmap:
out += '%s[0x%s] = %s;\n' %(var_name, keysym, uni)
out += '\n\n'
return out
if __name__ == '__main__':
if len(sys.argv) < 2:
print "ini2dot_h_unimap.py <ini_file>"
exit(2)
inifile = sys.argv[1]
print "uni2keysym_map[]"
ini = ConfigParser.ConfigParser()
ini.read([inifile])
mapping = ini.items('unicode_exception')
maps = KeysymMaps()
for uni, keysym in mapping:
maps.insert(keysym, uni)
dot_h_content = \
"""
int keysm2uni_base[4096];
int keysm2uni_ext0[4096];
int keysm2uni_ext1[4096];
int keysm2uni_ext2[4096];
"""
dot_h_content += maps.get_h_content('keysm2uni_base', 'keysm2uni_ext0',
'keysm2uni_ext1', 'keysm2uni_ext2');
print dot_h_content