/usr/share/pyshared/keymon/mod_mapper.py is in key-mon 1.13-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | #!/usr/bin/python
#
# Copyright 2010 Google Inc.
#
# 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.
"""Run mod map and convert to something I can use."""
__author__ = 'scott@forusers.com (scottkirkwood)'
import codecs
import logging
import os
import re
import subprocess
MEDIUM_NAME = {
'ESCAPE': 'Esc',
'PLUS': '+',
'MINUS': '-',
'EQUAL': '=',
'BACKSPACE': 'Back',
'TAB': 'Tab',
'BRACKETLEFT': '[',
'BRACKETRIGHT': ']',
'BRACELEFT': '(',
'BRACERIGHT': ')',
'DEAD_ACUTE': u'\u00B4',
'ACUTE': u'\u00B4',
'QUESTIONDOWN': u'\u00BF',
'WAKEUP': 'Wake',
'BAR': '|',
'TILDE': '~',
'NTILDE': '~',
'RETURN': 'Return',
'CONTROL_L': 'Ctrl',
'SEMICOLON': ';',
'APOSTROPHE': '\'',
'GRAVE': '`',
'SHIFT_L': 'Shift',
'BACKSLASH': '\\',
'COMMA': ',',
'PERIOD': '.',
'SLASH': '/',
'SHIFT_R': 'Shift',
'KP_MULTIPLY': '*',
'ALT_L': 'Alt',
'ALT_R': 'Alt',
'SPACE': 'Space',
'MULTI_KEY': 'Multi',
'NUM_LOCK': 'Num',
'SCROLL_LOCK': 'Scrl',
'KP_HOME': '7',
'KP_UP': '8',
'KP_PRIOR': '9',
'KP_SUBTRACT': '-',
'KP_LEFT': '4',
'KP_BEGIN': '5',
'KP_RIGHT': '6',
'KP_ADD': '+',
'KP_END': '1',
'KP_DOWN': '2',
'KP_PAGE_DOWN': '3',
'KP_NEXT': '3',
'KP_INSERT': '0',
'KP_DELETE': '.',
'ISO_LEVEL3_SHIFT': 'Alt', # Right Alt
'LESS': '<',
'KP_ENTER': u'\u23CE',
'CONTROL_R': 'Ctrl',
'KP_DIVIDE': '/',
'PRINT': 'Print',
'LINEFEED': 'Lf',
'HOME': 'Home',
'UP': u'\u2191',
'PRIOR': 'PgUp',
'LEFT': u'\u2190',
'RIGHT': u'\u2192',
'END': 'End',
'DOWN': u'\u2193',
'NEXT': 'PgDn',
'INSERT': 'Ins',
'DELETE': 'Del',
'XF86AUDIOMUTE': 'Mute',
'XF86AUDIOLOWERVOLUME': 'Vol-',
'XF86AUDIORAISEVOLUME': 'Vol+',
'XF86POWEROFF': 'Off',
'KP_EQUAL': '=',
'PLUSMINUS': '+/-',
'PAUSE': 'Pause',
'KP_DECIMAL': '.',
'SUPER_L': 'Super',
'MENU': 'Menu',
'CANCEL': 'Cancel',
'REDO': 'Redo',
'SUNPROPS': 'Sunprops',
'UNDO': 'Undo',
'SUNFRONT': 'Sunfront',
'XF86COPY': 'Copy',
'SUNOPEN': 'SunOpen',
'XF86PASTE': 'Paste',
'FIND': 'Find',
'XF86CUT': 'Cut',
'HELP': 'Help',
'XF86MENUKB': 'MenuKb',
'XF86CALCULATOR': 'Calc',
'XF86SLEEP': 'Sleep',
'XF86WAKEUP': 'Wake',
'XF86EXPLORER': 'Explorer',
'XF86SEND': 'Send',
'XF86XFER': 'Xfer',
'XF86LAUNCH1': 'Launch1',
'XF86LAUNCH2': 'Launch2',
'XF86WWW': 'www',
'XF86DOS': 'Dos',
'XF86SCREENSAVER': 'Screensaver',
'XF86ROTATEWINDOWS': 'RotateWin',
'XF86MAIL': 'Mail',
'XF86FAVORITES': 'Fav',
'XF86MYCOMPUTER': 'MyComputer',
'XF86BACK': u'\u21d0',
'XF86FORWARD': u'\u21d2',
'XF86EJECT': 'Eject',
'XF86AUDIONEXT': 'Next',
'XF86AUDIOPLAY': 'Play',
'XF86AUDIOPREV': 'Prev',
'XF86AUDIOSTOP': 'Stop',
'XF86AUDIORECORD': 'Record',
'XF86AUDIOREWIND': 'Rewind',
'XF86PHONE': 'Phone',
'XF86TOOLS': 'Tools',
'XF86HOMEPAGE': 'HomePage',
'XF86RELOAD': 'Reload',
'XF86CLOSE': 'Close',
'XF86SCROLLUP': 'ScrollUp',
'XF86SCROLLDOWN': 'ScrollDn',
'PARENLEFT': '(',
'PARENRIGHT': ')',
'XF86NEW': 'New',
'MODE_SWITCH': 'Mode',
'NOSYMBOL': '-',
'XF86AUDIOPAUSE': 'Pause',
'XF86LAUNCH3': 'Launch3',
'XF86LAUNCH4': 'Launch4',
'XF86SUSPEND': 'Suspend',
'XF86WEBCAM': 'WebCam',
'XF86SEARCH': 'Search',
'XF86FINANCE': 'Finance',
'XF86SHOP': 'Shop',
'XF86MONBRIGHTNESSDOWN': 'BrightnessDown',
'XF86MONBRIGHTNESSUP': 'BrightnessUp',
'XF86AUDIOMEDIA': 'AudioMedia',
'XF86DISPLAY': 'Display',
'XF86KBDLIGHTONOFF': 'LightOnOff',
'XF86KBDBRIGHTNESSDOWN': 'BrightnessDown',
'XF86KBDBRIGHTNESSUP': 'BrightnessUp',
'XF86REPLY': 'Reply',
'XF86MAILFORWARD': 'MailForward',
'XF86SAVE': 'Save',
'XF86DOCUMENTS': 'Docs',
'XF86BATTERY': 'Battery',
'XF86BLUETOOTH': 'Bluetooth',
'XF86WLAN': 'Lan',
}
SHORT_NAME = {
'BACKSPACE': u'\u21fd',
'RETURN': u'\u23CE',
'CONTROL_L': 'Ctl',
'SHIFT_L': 'Shft',
'SHIFT_R': 'Shft',
'SPACE': 'Spc',
'PRINT': 'Prt',
'LINEFEED': 'Lf',
'HOME': 'Hm',
'INSERT': 'Ins',
'DELETE': 'Del',
'XF86AUDIOMUTE': 'Mute',
'XF86AUDIOLOWERVOLUME': 'V-',
'XF86AUDIORAISEVOLUME': 'V+',
'XF86POWEROFF': 'Off',
'PRIOR': 'PgU',
'NEXT': 'PgD',
'PAUSE': 'Ps',
'SUPER_L': 'Spr',
'MULTI_KEY': 'Mul',
'MENU': 'Men',
'CANCEL': 'Can',
'REDO': 'Red',
'UNDO': 'Und',
'XF86COPY': 'Cp',
'XF86CUT': 'Cut',
'XF86MENUKB': 'MenuKb',
}
class ModMapper(object):
"""Converts Mod Map codes into names and strings."""
def __init__(self):
self.map = {}
self.alt_map = {}
self.name_to_code = {}
def done(self):
"""done setup, now create alt_map and name_to_code."""
for key in self.map:
vals = self.map[key]
code_name = vals[0]
self.alt_map[code_name] = vals
self.name_to_code[code_name] = key
def set_map(self, code, vals):
"""Set one code."""
self.map[code] = vals
def get_and_check(self, scancode, name):
"""Get the scan code, or get from name."""
if scancode in self.map:
vals = self.map[scancode]
if vals[0] == name:
return vals
else:
logging.debug('code %s != %s', vals[1], name)
if name in self.alt_map:
logging.info('Found key via alt lookup %s', name)
return self.alt_map[name]
logging.info('scancode: %r name:%r not found', scancode, name)
return None, None, None
def get_from_name(self, name):
"""Get the scancode from a name."""
if name in self.name_to_code:
return self.name_to_code[name], self.alt_map[name]
logging.info('Key %s not found', name)
return None
def __getitem__(self, key):
try:
return self.map[key]
except:
raise IndexError
def __contains__(self, key):
return key in self.map
def __len__(self):
return len(self.map)
def parse_modmap(lines):
"""Parse a modmap file."""
re_range = re.compile(r'KeyCodes range from (\d+) to')
lower_bound = 8
re_line = re.compile(r'^\s+(\d+)\s+0x[\dA-Fa-f]+\s+(.*)')
re_remainder = re.compile(r'\((.+?)\)')
ret = ModMapper()
for line in lines.split('\n'):
if not line:
continue
grps = re_range.search(line)
if grps:
lower_bound = int(grps.group(1))
grps = re_line.search(line)
if grps:
code = int(grps.group(1)) - lower_bound
strlst = []
for grp in re_remainder.finditer(grps.group(2)):
strlst.append(grp.group(1))
# We'll pick the first one
alias = strlst[0].upper()
my_keyname = 'KEY_' + alias
my_keyname = my_keyname.replace('XF86', '')
ret.set_map(code, (my_keyname, alias))
ret.done()
return ret
def read_kdb(fname):
"""Read the kdb file."""
logging.debug('Loading kbd file: %s' % fname)
return parse_kdb(
codecs.open(
os.path.join(os.path.dirname(os.path.abspath(__file__)), fname),
'r', 'utf-8').read())
def parse_kdb(text):
"""Parse a kdb text file."""
re_line = re.compile(r'(\d+) (\S+) (\S+)\s?(\S*)')
ret = ModMapper()
for line in text.split('\n'):
if not line:
continue
grps = re_line.search(line)
if grps:
ret.set_map(int(grps.group(1)), (grps.group(2), grps.group(3),
grps.group(4)))
ret.done()
return ret
def create_my_kdb(fname, codes):
"""Create a kdb file from scancodes."""
fout = codecs.open(fname, 'w', 'utf-8')
fout.write('# This is a space separated file with UTF-8 encoding\n')
fout.write('# Short name is optional, will default to the medium-name\n')
fout.write('# Scancode Map-Name Medium-Name Short-Name\n')
for code, (key, medium_name, short_name) in codes.map.items():
if short_name:
fout.write('%d %s %s %s\n' % (code, key, medium_name, short_name))
else:
fout.write('%d %s %s\n' % (code, key, medium_name))
print 'Output %r with %d entries' % (fname, len(codes))
fout.close()
def mod_map_args():
"""Return the arguments to pass to xmodmap."""
return ['xmodmap', '-display', ':0', '-pk']
def run_cmd(args):
"""Run the command and collect the output."""
return subprocess.Popen(args, stdout=subprocess.PIPE).communicate()[0]
def read_mod_map():
"""Read a mod_map by runing xmodmap."""
logging.debug('Loading keymap from xmodmap...')
xmodmap = parse_modmap(run_cmd(mod_map_args()))
ret = ModMapper()
for code in xmodmap.map:
key = xmodmap[code][0]
key_name = xmodmap[code][1]
if key_name in MEDIUM_NAME:
medium_name = MEDIUM_NAME[key_name]
else:
medium_name = key_name
if key_name in SHORT_NAME:
short_name = SHORT_NAME[key_name]
else:
short_name = None
ret.set_map(code, (key, medium_name, short_name))
ret.done()
return ret
def safely_read_mod_map(fname, kbd_files):
"""Read the specified mod_map file or get the US version by default.
Args:
fname: name of kbd file to read
kbd_files: list of full path of kbd files
"""
# Assigning a default kbdfile name using result of setxkbmap
DEFAULT_KBD = None
try:
# TODO is -print the new -query ?
for line in run_cmd(('setxkbmap', '-print')).split('\n'):
if 'layout:' in line:
DEFAULT_KBD = line.split(':')[1].strip()
if 'variant:' in line:
DEFAULT_KBD += '_' + line.split(':')[1].strip()
if DEFAULT_KBD:
logging.info('setxkbmap returns a keyboard layout_variant: %s' % DEFAULT_KBD)
DEFAULT_KBD += '.kbd'
except OSError:
pass
if not DEFAULT_KBD:
DEFAULT_KBD = 'us.kbd'
logging.info('Set default kbdfile to: %s' % DEFAULT_KBD)
kbd_file = None
kbd_default = None
for kbd in kbd_files:
if not kbd_file and fname and kbd.endswith(fname):
kbd_file = kbd
if not kbd_default and kbd.endswith(DEFAULT_KBD):
kbd_default = kbd
if fname and not kbd_file:
logging.warning('Can not find kbd file: %s' % fname)
if kbd_file:
return read_kdb(kbd_file)
ret = None
if fname == 'xmodmap' or not kbd_default:
try:
ret = read_mod_map()
except OSError:
logging.error('unable execute xmodmap')
if kbd_default:
# Merge the defaults with modmap
if fname == 'xmodmap':
logging.debug('Merging with default kbd file: %s' % kbd_default)
for keycode in defaults:
if keycode not in ret:
ret[keycode] = defaults[keycode]
else:
logging.debug('Using default kbd file: %s' % kbd_default)
ret = read_kdb(kbd_default)
else:
logging.error('Can not find default kbd file')
return ret
def _run_test():
"""Run some tests on the my.kbd file."""
filename = 'my.kdb'
modmap = read_mod_map()
create_my_kdb(filename, modmap)
entries = read_kdb(filename)
print 'Read %r with %d entires' % (filename, len(entries))
for ecode in modmap:
if ecode not in entries:
print 'Missing entry for code %s' % ecode
if __name__ == '__main__':
_run_test()
|