mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
0bbf87e91e
Add virtkey lib for usage-improvment and keycode translating. Add 4 internal API for the aim const char *virKeycodeSetTypeToString(int codeset); int virKeycodeSetTypeFromString(const char *name); int virKeycodeValueFromString(virKeycodeSet codeset, const char *keyname); int virKeycodeValueTranslate(virKeycodeSet from_codeset, virKeycodeSet to_offset, int key_value); * include/libvirt/libvirt.h.in: extend virKeycodeSet enum * src/Makefile.am: add new virtkeycode module and rule to generate virkeymaps.h * src/util/virkeycode.c src/util/virkeycode.h: new module * src/util/virkeycode-mapgen.py: python generator for virkeymaps.h out of keymaps.csv * src/libvirt_private.syms: extend private symbols for new module * .gitignore: add generated virkeymaps.h
45 lines
1.0 KiB
Python
45 lines
1.0 KiB
Python
#!/bin/python
|
|
|
|
"""
|
|
Generate the big keycodes table for virkeys.
|
|
It read keymaps.csv from stdin and put the generated code to stdout.
|
|
|
|
Please keep keymaps.csv be exactly the same as:
|
|
http://git.gnome.org/browse/gtk-vnc/plain/src/keymaps.csv.
|
|
If anything inconsistent happens, please change this file
|
|
instead of keymaps.csv which is a mirror.
|
|
"""
|
|
|
|
import sys
|
|
import re
|
|
|
|
namecolums = (0,2,10)
|
|
|
|
def quotestring(str):
|
|
if str[0] != '"':
|
|
return '"' + str + '"'
|
|
return str
|
|
|
|
print '''
|
|
/* Generated file, DON'T edit it */
|
|
|
|
#ifndef VIRT_KEY_INTERNAL
|
|
# error do not use this; it is not a public header
|
|
#endif
|
|
|
|
struct keycode virKeycodes[] = {
|
|
'''
|
|
|
|
sys.stdin.readline() # eat the fist line.
|
|
|
|
for line in sys.stdin.xreadlines():
|
|
a = re.match("([^,]*)," * 13 + "([^,]*)$", line[0:-1]).groups()
|
|
b = ""
|
|
for i in namecolums:
|
|
b = b + (a[i] and quotestring(a[i]) or 'NULL') + ','
|
|
for i in [ x for x in range(12) if not x in namecolums ]:
|
|
b = b + (a[i] or '0') + ','
|
|
print " { " + b + "},"
|
|
|
|
print '};'
|