-
Notifications
You must be signed in to change notification settings - Fork 19
/
matching.py
204 lines (158 loc) · 5.32 KB
/
matching.py
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
from unittest import TestCase
from os.path import commonprefix
class COMPLETION_TYPE:
CompleteButNotUnique = 0
Complete = 1
NoMatch = 2
def complete_path(filename, directory_listing, case_sensitive=False):
lcs_completion = get_lcs_completion_or_none(filename, directory_listing)
if lcs_completion is not None:
return lcs_completion, COMPLETION_TYPE.Complete
matches = get_matches(filename, directory_listing, case_sensitive)
if len(matches) > 1:
new_filename = longest_completion(filename, matches)
return new_filename, COMPLETION_TYPE.CompleteButNotUnique
elif len(matches) == 1:
return matches[0], COMPLETION_TYPE.Complete
else:
return filename, COMPLETION_TYPE.NoMatch
def get_matches(filename, directory_listing, case_sensitive):
if case_sensitive:
return [f for f in directory_listing if f.startswith(filename)]
else:
return [f for f in directory_listing if f.lower().startswith(filename.lower())]
def longest_completion(filename, matches):
return filename + commonprefix(matches)[len(filename):]
def get_lcs_completion_or_none(filename, directory_listing):
"""
If there is a unique way to complete the path such that the LCS is the same
as the query string, return that (similar to the way Fish shell works)
"""
completion = None
for candidate in directory_listing:
if lcs(filename, candidate) == filename:
if completion is not None:
return None
else:
completion = candidate
return completion
def lcs(A, B):
"""
Taken and adapted from
http://rosettacode.org/wiki/Longest_common_subsequence#Dynamic_Programming_7
"""
lengths = [[0 for j in range(len(B) + 1)] for i in range(len(A) + 1)]
for i, x in enumerate(A):
for j, y in enumerate(B):
if x == y:
lengths[i + 1][j + 1] = lengths[i][j] + 1
else:
lengths[i + 1][j + 1] = max(lengths[i + 1][j], lengths[i][j + 1])
result = ""
x, y = len(A), len(B)
while x != 0 and y != 0:
if lengths[x][y] == lengths[x - 1][y]:
x -= 1
elif lengths[x][y] == lengths[x][y - 1]:
y -= 1
else:
result = A[x - 1] + result
x -= 1
y -= 1
return result
##
# Unit tests
##
class TestLCSCompletion(TestCase):
def test1(self):
directory_listing = [
'filename1',
'filename2',
'test',
]
output1 = get_lcs_completion_or_none('file1', directory_listing)
self.assertEqual('filename1', output1)
output2 = get_lcs_completion_or_none('file2', directory_listing)
self.assertEqual('filename2', output2)
output3 = get_lcs_completion_or_none('tst', directory_listing)
self.assertEqual('test', output3)
output4 = get_lcs_completion_or_none('tes', directory_listing)
self.assertEqual('test', output4)
output5 = get_lcs_completion_or_none('django', directory_listing)
self.assertIsNone(output5)
class TestLCS(TestCase):
def test1(self):
self.assertEqual('hel', lcs('hello', 'heal'))
self.assertEqual('oe', lcs('hope', 'oe'))
self.assertEqual('', lcs('this', 'xyz'))
self.assertEqual('bcd', lcs('abcdefg', 'bcd'))
self.assertEqual('test', lcs('test', 'test'))
self.assertEqual('rd', lcs('read', 'rd'))
self.assertEqual('round', lcs('round', 'arounded'))
class TestCompletion(TestCase):
def test1(self):
filename = 'test'
matches = [
'testable',
'testa',
'testand',
'testand'
]
output = longest_completion(filename, matches)
expected = 'testa'
self.assertEqual(expected, output)
def test2(self):
filename = 'test'
matches = [
'testable',
'testa',
'testand',
'Testand'
]
output = longest_completion(filename, matches)
expected = 'test'
self.assertEqual(expected, output)
def test3(self):
filename = 'test'
matches = [
'tester',
'testable',
'testa',
'testand',
'Testand'
]
output = longest_completion(filename, matches)
expected = 'test'
self.assertEqual(expected, output)
class TestMatches(TestCase):
def test1(self):
directory_listing = [
'filename',
'filen',
'fi',
'Filename',
]
output = get_matches('file', directory_listing, case_sensitive=True)
expected = [
'filename',
'filen',
]
self.assertListEqual(expected, output)
def test2(self):
directory_listing = [
'filename',
'filen',
'fi',
'Filename',
]
output = get_matches('file', directory_listing, case_sensitive=False)
expected = [
'filename',
'filen',
'Filename',
]
self.assertListEqual(expected, output)
def test3(self):
directory_listing = ['test']
output = get_matches('', directory_listing, case_sensitive=True)
self.assertListEqual(['test'], output)