aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/plugins/keycmd.py
blob: 1bb70e37bd260332aae2e4e17a17282339a25fb2 (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
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
import re

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


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

    return str


def uzbl_escape(str):
    return "@[%s]@" % escape(str) if str else ''


class Keylet(object):
    '''Small per-instance object that tracks characters typed.'''

    def __init__(self):
        # Modcmd tracking
        self.modcmd = ''
        self.is_modcmd = False

        # Keycmd tracking
        self.keycmd = ''
        self.cursor = 0

        self.modmaps = {}
        self.ignores = {}


    def get_keycmd(self):
        '''Get the keycmd-part of the keylet.'''

        return self.keycmd


    def get_modcmd(self):
        '''Get the modcmd-part of the keylet.'''

        if not self.is_modcmd:
            return ''

        return self.modcmd


    def modmap_key(self, key):
        '''Make some obscure names for some keys friendlier.'''

        if key in self.modmaps:
            return self.modmaps[key]

        elif key.endswith('_L') or key.endswith('_R'):
            # Remove left-right discrimination and try again.
            return self.modmap_key(key[:-2])

        else:
            return key


    def key_ignored(self, key):
        '''Check if the given key is ignored by any ignore rules.'''

        for (glob, match) in self.ignores.items():
            if match(key):
                return True

        return False


    def __repr__(self):
        '''Return a string representation of the keylet.'''

        l = []
        if self.is_modcmd:
            l.append('modcmd=%r' % self.get_modcmd())

        if self.keycmd:
            l.append('keycmd=%r' % self.get_keycmd())

        return '<keylet(%s)>' % ', '.join(l)


def add_modmap(uzbl, key, map):
    '''Add modmaps.

    Examples:
        set modmap = request MODMAP
        @modmap <Control> <Ctrl>
        @modmap <ISO_Left_Tab> <Shift-Tab>
        ...

    Then:
        @bind <Shift-Tab> = <command1>
        @bind <Ctrl>x = <command2>
        ...

    '''

    assert len(key)
    modmaps = uzbl.keylet.modmaps

    modmaps[key.strip('<>')] = map.strip('<>')
    uzbl.event("NEW_MODMAP", key, map)


def modmap_parse(uzbl, map):
    '''Parse a modmap definiton.'''

    split = [s.strip() for s in map.split(' ') if s.split()]

    if not split or len(split) > 2:
        raise Exception('Invalid modmap arugments: %r' % map)

    add_modmap(uzbl, *split)


def add_key_ignore(uzbl, glob):
    '''Add an ignore definition.

    Examples:
        set ignore_key = request IGNORE_KEY
        @ignore_key <Shift>
        @ignore_key <ISO_*>
        ...
    '''

    assert len(glob) > 1
    ignores = uzbl.keylet.ignores

    glob = "<%s>" % glob.strip("<> ")
    restr = glob.replace('*', '[^\s]*')
    match = re.compile(restr).match

    ignores[glob] = match
    uzbl.event('NEW_KEY_IGNORE', glob)


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

    k = uzbl.keylet
    k.keycmd = ''
    k.cursor = 0
    del uzbl.config['keycmd']
    uzbl.event('KEYCMD_CLEARED')


def clear_modcmd(uzbl):
    '''Clear the modcmd for this uzbl instance.'''

    k = uzbl.keylet
    k.modcmd = ''
    k.is_modcmd = False

    del uzbl.config['modcmd']
    uzbl.event('MODCMD_CLEARED')


def clear_current(uzbl):
    '''Clear the modcmd if is_modcmd else clear keycmd.'''

    if uzbl.keylet.is_modcmd:
        clear_modcmd(uzbl)

    else:
        clear_keycmd(uzbl)


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

    keycmd, modcmd = k.get_keycmd(), ''.join(modstate) + k.get_modcmd()

    if k.is_modcmd:
        logger.debug('modcmd_update, %s' % modcmd)
        uzbl.event('MODCMD_UPDATE', modstate, k)

    else:
        logger.debug('keycmd_update, %s' % keycmd)
        uzbl.event('KEYCMD_UPDATE', modstate, k)

    if uzbl.config.get('modcmd_updates', '1') == '1':
        new_modcmd = ''.join(modstate) + k.get_modcmd()
        if not new_modcmd or not k.is_modcmd:
            del uzbl.config['modcmd']

        elif new_modcmd == modcmd:
            uzbl.config['modcmd'] = MODCMD_FORMAT % uzbl_escape(modcmd)

    if uzbl.config.get('keycmd_events', '1') != '1':
        return

    new_keycmd = k.get_keycmd()
    if not new_keycmd:
        del uzbl.config['keycmd']

    elif new_keycmd == keycmd:
        # Generate the pango markup for the cursor in the keycmd.
        curchar = keycmd[k.cursor] if k.cursor < len(keycmd) else ' '
        chunks = [keycmd[:k.cursor], curchar, keycmd[k.cursor+1:]]
        value = KEYCMD_FORMAT % tuple(map(uzbl_escape, chunks))

        uzbl.config['keycmd'] = value


def inject_str(str, index, inj):
    '''Inject a string into string at at given index.'''

    return "%s%s%s" % (str[:index], inj, str[index:])


def parse_key_event(uzbl, key):
    ''' Build a set from the modstate part of the event, and pass all keys through modmap '''
    keylet = uzbl.keylet

    modstate, key = splitquoted(key)
    modstate = set(['<%s>' % keylet.modmap_key(k) for k in modstate.split('|') if k])
    
    key = keylet.modmap_key(key)
    return modstate, key


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)
    2. In non-modcmd mode:
         a. append char to keycmd
    3. If not in modcmd mode and a modkey was pressed set modcmd mode.
    4. Keycmd is updated and events raised if anything is changed.'''

    k = uzbl.keylet
    modstate, key = parse_key_event(uzbl, key)
    k.is_modcmd = any(not k.key_ignored(m) for m in modstate)

    logger.debug('key press modstate=%s' % str(modstate))
    if key.lower() == 'space' and not k.is_modcmd and k.keycmd:
        k.keycmd = inject_str(k.keycmd, k.cursor, ' ')
        k.cursor += 1

    elif not k.is_modcmd and len(key) == 1:
        if uzbl.config.get('keycmd_events', '1') != '1':
            # TODO, make a note on what's going on here
            k.keycmd = ''
            k.cursor = 0
            del uzbl.config['keycmd']
            return

        k.keycmd = inject_str(k.keycmd, k.cursor, key)
        k.cursor += 1

    elif len(key) == 1:
        k.modcmd += key

    else:
        if not k.key_ignored('<%s>' % key):
            modstate.add('<%s>' % key)
            k.is_modcmd = True

    update_event(uzbl, modstate, k)


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

    1. If in a mod-command then raise a MODCMD_EXEC.
    2. Update the keycmd uzbl variable if anything changed.'''
    k = uzbl.keylet
    modstate, key = parse_key_event(uzbl, key)

    if len(key) > 1:
        if k.is_modcmd:
            uzbl.event('MODCMD_EXEC', modstate, k)

        clear_modcmd(uzbl)


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

    k = uzbl.keylet
    k.keycmd = keycmd
    k.cursor = len(keycmd)
    update_event(uzbl, set(), k, False)


def inject_keycmd(uzbl, keycmd):
    '''Allow injecting of a string into the keycmd at the cursor position.'''

    k = uzbl.keylet
    k.keycmd = inject_str(k.keycmd, k.cursor, keycmd)
    k.cursor += len(keycmd)
    update_event(uzbl, set(), k, False)


def append_keycmd(uzbl, keycmd):
    '''Allow appening of a string to the keycmd.'''

    k = uzbl.keylet
    k.keycmd += keycmd
    k.cursor = len(k.keycmd)
    update_event(uzbl, set(), k, False)


def keycmd_strip_word(uzbl, seps):
    ''' Removes the last word from the keycmd, similar to readline ^W '''

    seps = seps or ' '
    k = uzbl.keylet
    if not k.keycmd:
        return

    head, tail = k.keycmd[:k.cursor].rstrip(seps), k.keycmd[k.cursor:]
    rfind = -1
    for sep in seps:
        p = head.rfind(sep)
        if p >= 0 and rfind < p + 1:
            rfind = p + 1
    if rfind == len(head) and head[-1] in seps:
        rfind -= 1
    head = head[:rfind] if rfind + 1 else ''
    k.keycmd = head + tail
    k.cursor = len(head)
    update_event(uzbl, set(), k, False)


def keycmd_backspace(uzbl, *args):
    '''Removes the character at the cursor position in the keycmd.'''

    k = uzbl.keylet
    if not k.keycmd or not k.cursor:
        return

    k.keycmd = k.keycmd[:k.cursor-1] + k.keycmd[k.cursor:]
    k.cursor -= 1
    update_event(uzbl, set(), k, False)


def keycmd_delete(uzbl, *args):
    '''Removes the character after the cursor position in the keycmd.'''

    k = uzbl.keylet
    if not k.keycmd:
        return

    k.keycmd = k.keycmd[:k.cursor] + k.keycmd[k.cursor+1:]
    update_event(uzbl, set(), k, False)


def keycmd_exec_current(uzbl, *args):
    '''Raise a KEYCMD_EXEC with the current keylet and then clear the
    keycmd.'''

    uzbl.event('KEYCMD_EXEC', set(), uzbl.keylet)
    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 = uzbl.keylet
    if index == '-':
        cursor = k.cursor - 1

    elif index == '+':
        cursor = k.cursor + 1

    else:
        cursor = int(index.strip())
        if cursor < 0:
            cursor = len(k.keycmd) + cursor + 1

    if cursor < 0:
        cursor = 0

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

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


# plugin init hook
def init(uzbl):
    '''Export functions and connect handlers to events.'''

    connect_dict(uzbl, {
        'APPEND_KEYCMD':        append_keycmd,
        'IGNORE_KEY':           add_key_ignore,
        'INJECT_KEYCMD':        inject_keycmd,
        'KEYCMD_BACKSPACE':     keycmd_backspace,
        'KEYCMD_DELETE':        keycmd_delete,
        'KEYCMD_EXEC_CURRENT':  keycmd_exec_current,
        'KEYCMD_STRIP_WORD':    keycmd_strip_word,
        'KEYCMD_CLEAR':         clear_keycmd,
        'KEY_PRESS':            key_press,
        'KEY_RELEASE':          key_release,
        'MOD_PRESS':            key_press,
        'MOD_RELEASE':          key_release,
        'MODMAP':               modmap_parse,
        'SET_CURSOR_POS':       set_cursor_pos,
        'SET_KEYCMD':           set_keycmd,
    })

    export_dict(uzbl, {
        'add_key_ignore':       add_key_ignore,
        'add_modmap':           add_modmap,
        'append_keycmd':        append_keycmd,
        'clear_current':        clear_current,
        'clear_keycmd':         clear_keycmd,
        'clear_modcmd':         clear_modcmd,
        'inject_keycmd':        inject_keycmd,
        'keylet':               Keylet(),
        'set_cursor_pos':       set_cursor_pos,
        'set_keycmd':           set_keycmd,
    })

# vi: set et ts=4: