##// END OF EJS Templates
Merge pull request #7502 from blink1073/console-cursor-end...
Min RK -
r20024:6857643d merge
parent child Browse files
Show More
@@ -1,69 +1,74 b''
1 1 # -*- coding: utf-8 -*-
2 2 """Adapt readline completer interface to make ZMQ request."""
3 3
4 4 # Copyright (c) IPython Development Team.
5 5 # Distributed under the terms of the Modified BSD License.
6 6
7 7 try:
8 8 from queue import Empty # Py 3
9 9 except ImportError:
10 10 from Queue import Empty # Py 2
11 11
12 12 from IPython.config import Configurable
13 13 from IPython.core.completer import IPCompleter
14 14 from IPython.utils.traitlets import Float
15 15 import IPython.utils.rlineimpl as readline
16 16
17 17 class ZMQCompleter(IPCompleter):
18 18 """Client-side completion machinery.
19 19
20 20 How it works: self.complete will be called multiple times, with
21 21 state=0,1,2,... When state=0 it should compute ALL the completion matches,
22 22 and then return them for each value of state."""
23 23
24 24 timeout = Float(5.0, config=True, help='timeout before completion abort')
25 25
26 26 def __init__(self, shell, client, config=None):
27 27 super(ZMQCompleter,self).__init__(config=config)
28 28
29 29 self.shell = shell
30 30 self.client = client
31 31 self.matches = []
32 32 # don't do any splitting client-side,
33 33 # rely on the kernel for that
34 34 self.splitter.delims = '\r\n'
35 35 if self.readline:
36 36 self.readline.set_completer_delims('\r\n')
37 37
38 38 def complete_request(self, text):
39 39 line = readline.get_line_buffer()
40 40 cursor_pos = readline.get_endidx()
41 41
42 42 # send completion request to kernel
43 43 # Give the kernel up to 5s to respond
44 44 msg_id = self.client.complete(
45 45 code=line,
46 46 cursor_pos=cursor_pos,
47 47 )
48
48
49 49 msg = self.client.shell_channel.get_msg(timeout=self.timeout)
50 50 if msg['parent_header']['msg_id'] == msg_id:
51 cursor_start = msg['content']['cursor_start']
52 return [ line[:cursor_start] + m for m in msg['content']['matches'] ]
51 content = msg['content']
52 cursor_start = content['cursor_start']
53 matches = [ line[:cursor_start] + m for m in content['matches'] ]
54 if content["cursor_end"] < cursor_pos:
55 extra = line[content["cursor_end"]: cursor_pos]
56 matches = [m + extra for m in matches]
57 return matches
53 58 return []
54 59
55 60 def rlcomplete(self, text, state):
56 61 if state == 0:
57 62 try:
58 63 self.matches = self.complete_request(text)
59 64 except Empty:
60 65 #print('WARNING: Kernel timeout on tab completion.')
61 66 pass
62 67
63 68 try:
64 69 return self.matches[state]
65 70 except IndexError:
66 71 return None
67 72
68 73 def complete(self, text, line, cursor_pos=None):
69 74 return self.rlcomplete(text, 0)
General Comments 0
You need to be logged in to leave comments. Login now