aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/uzbl/plugins/keycmd.py
blob: 79a96e4ff8cdc87c455800601bb7550dcc228b5d (plain)
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
import re

# Map these functions/variables in the plugins namespace to the uzbl object.
__export__ = ['clear_keycmd', 'set_keycmd', 'set_cursor_pos', 'get_keylet']

# Regular expression compile cache.
_RE_CACHE = {}

# Hold the keylets.
UZBLS = {}

# Simple key names map.
_SIMPLEKEYS = {
  'Control': 'Ctrl',
  'ISO_Left_Tab': 'Shift-Tab',
  'space':'Space',
}

# Keycmd format which includes the markup for the cursor.
KEYCMD_FORMAT = "%s<span @cursor_style>%s</span>%s"


def escape(str):
    '''Prevent outgoing keycmd values from expanding inside the
    status_format.'''

    if not str:
        return ''

    for char in ['\\', '@']:
        if char in str:
            str = str.replace(char, '\\'+char)

    return "@[%s]@" % str


def get_regex(regex):
    '''Compiling regular expressions is a very time consuming so return a
    pre-compiled regex match object if possible.'''

    if regex not in _RE_CACHE:
        _RE_CACHE[regex] = re.compile(regex).match

    return _RE_CACHE[regex]


class Keylet(object):
    '''Small per-instance object that tracks all the keys held and characters
    typed.'''

    def __init__(self):
        self.cmd = ''
        self.cursor = 0
        self.held = []

        # to_string() string building cache.
        self._to_string = None

        self.modcmd = False

    def mod_held(self):
        ''' returns true if any modkey is held. '''
        return any([len(x) != 1 for x in self.held])

    def key_cmd(self):
        ''' get the keycmd-part of the keylet. '''
        return self.cmd

    def mod_cmd(self):
        ''' get the modcmd-part of the keylet. '''
        return ''.join(['<%s>' % key for key in self.held])

    def __repr__(self):
        return '<Keycmd(%r)>' % self.to_string()

    def to_string(self):
        '''Return a string representation of the keys held and pressed that
        have been recorded.'''

        if self._to_string is not None:
            # Return cached keycmd string.
            return self._to_string
        
        self._to_string = self.mod_cmd() + self.key_cmd()
        return self._to_string


    def match(self, regex):
        '''See if the keycmd string matches the given regex.'''

        return bool(get_regex(regex)(self.to_string()))


def make_simple(key):
    '''Make some obscure names for some keys friendlier.'''

    # Remove left-right discrimination.
    if key.endswith('_L') or key.endswith('_R'):
        key = key[:-2]

    if key in _SIMPLEKEYS:
        key = _SIMPLEKEYS[key]

    return key


def add_instance(uzbl, *args):
    '''Create the Keylet object for this uzbl instance.'''

    UZBLS[uzbl] = Keylet()


def del_instance(uzbl, *args):
    '''Delete the Keylet object for this uzbl instance.'''

    if uzbl in UZBLS:
        del UZBLS[uzbl]


def get_keylet(uzbl):
    '''Return the corresponding keylet for this uzbl instance.'''

    # Startup events are not correctly captured and sent over the uzbl socket
    # yet so this line is needed because the INSTANCE_START event is lost.
    if uzbl not in UZBLS:
        add_instance(uzbl)

    keylet = UZBLS[uzbl]
    keylet._to_string = None
    return keylet


def clear_keycmd(uzbl):
    '''Clear the keycmd for this uzbl instance.'''

    k = get_keylet(uzbl)
    k.cmd = ''
    k.cursor = 0
    k._to_string = None

    k.modcmd = k.mod_held()
    config = uzbl.get_config()
    if 'keycmd' not in config or config['keycmd'] != '':
        config['keycmd'] = ''

    uzbl.event('KEYCMD_CLEAR')


def update_event(uzbl, k, execute=True):
    '''Raise keycmd & modcmd update events.'''

    config = uzbl.get_config()
    if k.modcmd:
        keycmd = k.to_string()
        if execute:
            uzbl.event('MODCMD_UPDATE', k)
        if keycmd != k.to_string():
            return

        if 'modcmd_updates' in config and config['modcmd_updates'] != '1':
            return

        return uzbl.set('keycmd', escape(keycmd))

    if 'keycmd_events' in config and config['keycmd_events'] != '1':
        return

    keycmd = k.cmd
    if execute:
        uzbl.event('KEYCMD_UPDATE', k)
    if keycmd != k.cmd:
        return

    if not k.cmd:
        return uzbl.set('keycmd', '')

    # Generate the pango markup for the cursor in the keycmd.
    if k.cursor < len(k.cmd):
        cursor = k.cmd[k.cursor]

    else:
        cursor = ' '

    chunks = map(escape, [k.cmd[:k.cursor], cursor, k.cmd[k.cursor+1:]])
    uzbl.set('keycmd', KEYCMD_FORMAT % tuple(chunks))


def key_press(uzbl, key):
    '''Handle KEY_PRESS events. Things done by this function include:

    1. Ignore all shift key presses (shift can be detected by capital chars)
    3. In non-modcmd mode:
         a. append char to keycmd
    4. If not in modcmd mode and a modkey was pressed set modcmd mode.
    5. If in modcmd mode the pressed key is added to the held keys list.
    6. Keycmd is updated and events raised if anything is changed.'''

    if key.startswith('Shift_'):
        return

    if len(key) > 1:
        key = make_simple(key)

    k = get_keylet(uzbl)
    cmdmod = False

    if k.cmd and not k.modcmd and key == 'Space':
        k.cmd = "%s %s" % (k.cmd[:k.cursor], k.cmd[k.cursor:])
        k.cursor += 1
        cmdmod = True

    elif len(key) > 1:
        k.modcmd = True
        cmdmod = True

    elif not k.modcmd:
        config = uzbl.get_config()
        if 'keycmd_events' not in config or config['keycmd_events'] == '1':
            if len(key) == 1:
                cmdmod = True
                k.cmd = "%s%s%s" % (k.cmd[:k.cursor], key, k.cmd[k.cursor:])
                k.cursor += 1

        elif k.cmd:
            cmdmod = True
            k.cmd = ''
            k.cursor = 0

    if k.modcmd:
        if key == 'Shift-Tab' and 'Tab' in k.held:
            k.held.remove('Tab')

        if key not in k.held:
            k.held.append(key)
            k.held.sort()
            cmdmod = True

    if cmdmod:
        update_event(uzbl, k)


def key_release(uzbl, key):
    '''Respond to KEY_RELEASE event. Things done by this function include:

    1. Remove the key from the keylet held list.
    2. If in a mod-command then raise a MODCMD_EXEC.
    3. Check if any modkey is held, if so set modcmd mode.
    4. Update the keycmd uzbl variable if anything changed.'''

    if len(key) > 1:
        key = make_simple(key)

    k = get_keylet(uzbl)

    cmdmod = False
    if key in ['Shift', 'Tab'] and 'Shift-Tab' in k.held:
        key = 'Shift-Tab'

    elif key in ['Shift', 'Alt'] and 'Meta' in k.held:
        key = 'Meta'

    if key in k.held:
        cmdmod = True
        k.held.remove(key)
        k.modcmd = k.mod_held()
        if k.modcmd:
            uzbl.event('MODCMD_EXEC', k)

    if cmdmod:
       update_event(uzbl, k)


def set_keycmd(uzbl, keycmd):
    '''Allow setting of the keycmd externally.'''

    k = get_keylet(uzbl)
    k.modcmd = False
    k._to_string = None
    k.cmd = keycmd
    k.cursor = len(keycmd)

    update_event(uzbl, k, False)


def keycmd_strip_word(uzbl, sep):
    ''' Removes the last word from the keycmd, similar to readline ^W '''
    sep = sep or ' '
    k = get_keylet(uzbl)
    if not k.cmd:
        return

    cmd = k.cmd[:k.cursor]
    tail = len(k.cmd) - k.cursor

    if sep in cmd:
        tmp = cmd.rstrip(sep).rsplit(sep, 1)
    else:
        tmp = ('',)

    k.cmd = tmp[0] + (sep if len(tmp) == 2 else '') + k.cmd[k.cursor:]
    k.cursor = len(tmp[0]) + (len(tmp) - 1)

    assert len(k.cmd) - k.cursor == tail, "tail size changed (%s) (%s - %s)" % (tail, len(k.cmd), k.cursor)

    update_event(uzbl, k, False)


def keycmd_backspace(uzbl, _foo):
    ''' Removes the last char of the keycmd '''
    k = get_keylet(uzbl)
    if not k.cmd:
        return

    k.cmd = k.cmd[:k.cursor-1] + k.cmd[k.cursor:]
    k.cursor -= 1

    update_event(uzbl, k, False)


def keycmd_exec_current(uzbl, _foo):
    ''' Raise a KEYCMD_EXEC with the current keylet and then clear the keycmd '''
    k = get_keylet(uzbl)
    uzbl.event('KEYCMD_EXEC', k)
    clear_keycmd(uzbl)


def set_cursor_pos(uzbl, index):
    '''Allow setting of the cursor position externally. Supports negative
    indexing and relative stepping with '+' and '-'.'''

    k = get_keylet(uzbl)

    if index == '-':
        cursor = k.cursor - 1
    elif index == '+':
        cursor = k.cursor + 1
    else:
        cursor = int(index.strip())
        if cursor < 0:
            cursor = len(k.cmd) + cursor + 1

    if cursor < 0:
        cursor = 0

    if cursor > len(k.cmd):
        cursor = len(k.cmd)

    k.cursor = cursor
    update_event(uzbl, k, False)


def init(uzbl):
    '''Connect handlers to uzbl events.'''

    connects = {'INSTANCE_START': add_instance,
      'INSTANCE_EXIT': del_instance,
      'KEY_PRESS': key_press,
      'KEY_RELEASE': key_release,
      'SET_KEYCMD': set_keycmd,
      'KEYCMD_STRIP_WORD': keycmd_strip_word,
      'KEYCMD_BACKSPACE': keycmd_backspace,
      'KEYCMD_EXEC_CURRENT': keycmd_exec_current,
      'SET_CURSOR_POS': set_cursor_pos}

    uzbl.connect_dict(connects)