Menu

[8f66b6]: / widgets / InDocumentSearchWidget.py  Maximize  Restore  History

Download this file

229 lines (186 with data), 8.2 kB

  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
# -*- coding: utf-8 -*-
"""
Copyright (C) 2020 Oliver Tengler
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
from typing import Tuple, Pattern, List, Optional, Iterable
import re
import threading
from PyQt5.QtCore import Qt, QTimer, pyqtSignal, pyqtSlot
from PyQt5.QtWidgets import QWidget
from PyQt5.QtGui import QFocusEvent, QColor
from tools.AsynchronousTask import AsynchronousTask
from .Ui_InDocumentSearchWidget import Ui_InDocumentSearchWidget
from .IStringMatcher import IStringMatcher
class StringMatcher (IStringMatcher):
def __init__(self) -> None:
self.regex: Optional[Pattern] = None
def setRegex(self, expr: Pattern) -> None:
self.regex = expr
def matches(self, data: str) -> Iterable[Tuple[int,int]]:
if not self.regex:
return
cur = 0
while True:
result = self.regex.search(data, cur)
if result:
startPos, endPos = result.span()
yield (startPos, endPos-startPos)
cur = endPos
else:
return
class InDocumentSearchResult:
def __init__(self, results: List[Tuple[int,int]], matcher: Optional[IStringMatcher]) -> None:
self.results = results
self.matcher = matcher
def findAllMatches(text: str, searchRegex: Pattern, cancelEvent: threading.Event) -> InDocumentSearchResult:
if not text or not searchRegex:
return InDocumentSearchResult([], None)
matcher = StringMatcher()
matcher.setRegex(searchRegex)
results: List[Tuple[int,int]] = []
for match in matcher.matches(text):
results.append(match)
if cancelEvent and cancelEvent.is_set():
return InDocumentSearchResult([], None)
return InDocumentSearchResult(results, matcher)
class InDocumentSearchWidget(QWidget):
"""
This widget provides search capabilities inside a text document.
Simple expressions as well as regular expressions are supported.
"""
notFoundColor = QColor(255, 127, 84)
searchDelay = 300
searchFinished = pyqtSignal(InDocumentSearchResult)
currentMatchChanged = pyqtSignal(int, int, int) # num, index, length
def __init__(self, parent: QWidget) -> None:
super().__init__(parent)
self.ui = Ui_InDocumentSearchWidget()
self.ui.setupUi(self)
self.ui.editSearch.textEdited.connect(self.__textEdited)
self.ui.checkBoxCaseSensitive.clicked.connect(self.__optionsChanged)
self.ui.checkBoxRegex.clicked.connect(self.__optionsChanged)
self.ui.buttonSearchNext.clicked.connect(self.nextMatch)
self.ui.buttonSearchPrevious.clicked.connect(self.previousMatch)
self.editTimeoutTimer = QTimer(self)
self.editTimeoutTimer.setSingleShot(True)
self.editTimeoutTimer.timeout.connect(self.__editTimeout)
self.__searchTask: Optional[AsynchronousTask] = None
self.text = ""
self.searchRegex: Optional[Pattern] = None
self.currentMatch = -1
self.matches: List[Tuple[int,int]] = []
self.ui.labelCurrentMatch.setText("")
def setSearch(self, search: str) -> None:
self.ui.editSearch.setText(search)
self.__resetColor()
self.__updateSearchRegex()
self.__startSearch()
def setText(self, text: str) -> None:
self.text = text
self.__resetColor()
self.__startSearch()
@pyqtSlot()
def nextMatch(self) -> None:
self.setCurrentMatch(self.currentMatch + 1)
@pyqtSlot()
def previousMatch(self) -> None:
self.setCurrentMatch(self.currentMatch - 1)
def setCurrentMatch(self, num: int) -> None:
if num + 1 > len(self.matches):
num = len(self.matches) - 1
if num < 0:
num = 0
self.__updateCurrentMatch(num)
self.__enableButtons()
def __setMatches(self, results: List[Tuple[int,int]]) -> None:
self.matches = results
self.currentMatch = -1
self.__updateCurrentMatch(0)
self.__enableButtons()
def __updateCurrentMatch(self, num: int) -> None:
if self.currentMatch == num:
return
numChanged = self.currentMatch != num
self.currentMatch = num
if not self.matches:
self.ui.labelCurrentMatch.setText("")
else:
self.ui.labelCurrentMatch.setText(f"{num+1}/{len(self.matches)}")
if numChanged and 0 <= num < len(self.matches):
self.currentMatchChanged.emit(num, *self.matches[num])
def __textEdited(self, _: str) -> None:
self.__resetColor()
self.editTimeoutTimer.start(InDocumentSearchWidget.searchDelay)
def __editTimeout(self) -> None:
self.__updateSearchRegex()
self.__startSearch()
def __optionsChanged(self) -> None:
self.ui.editSearch.setFocus(Qt.ActiveWindowFocusReason)
self.__resetColor()
self.__updateSearchRegex()
self.__startSearch()
def __startSearch(self) -> None:
self.__setMatches([])
text = self.text
searchRegex = self.searchRegex
if not text or not searchRegex:
self.searchFinished.emit(InDocumentSearchResult([],None))
return
if self.__searchTask:
self.__searchTask.cancel()
self.ui.widgetProgress.show()
self.ui.widgetProgress.start()
self.__searchTask = AsynchronousTask(findAllMatches, text, searchRegex, bEnableCancel=True)
self.__searchTask.finished.connect(self.__searchDone)
self.__searchTask.start()
def __searchDone(self) -> None:
self.ui.widgetProgress.stop()
self.ui.widgetProgress.hide()
if not self.__searchTask:
return
searchResult: InDocumentSearchResult = self.__searchTask.result
if not searchResult.results:
self.__nothingFoundColor()
self.__setMatches(searchResult.results)
self.searchFinished.emit(searchResult)
def __updateSearchRegex(self) -> None:
reFlags: int = re.IGNORECASE
if self.ui.checkBoxCaseSensitive.isChecked():
reFlags = 0
expr = self.ui.editSearch.text().strip()
if not expr:
self.searchRegex = None
else:
if not self.ui.checkBoxRegex.isChecked():
for c in r"[\^$.|?+()*":
expr = expr.replace(c, "\\" + c)
while True: # reduce all adjacent spaces to one which will then be replaced by a regex which matches arbitrary whitespace
reduceSpace = expr.replace(" ", " ")
if reduceSpace == expr:
break
expr = reduceSpace
expr = expr.replace(" ", r"\s*")
try:
self.searchRegex = re.compile(expr, reFlags)
except:
self.searchRegex = None # Can happen quite often while you type the regex
def __resetColor(self) -> None:
self.setStyleSheet("")
def __nothingFoundColor(self) -> None:
col = "#%02x%02x%02x" % (InDocumentSearchWidget.notFoundColor.red(), InDocumentSearchWidget.notFoundColor.green(), InDocumentSearchWidget.notFoundColor.blue())
self.setStyleSheet("QLineEdit { background: %s }" % (col,))
def __enableButtons(self) -> None:
self.ui.buttonSearchPrevious.setEnabled(self.currentMatch > 0)
self.ui.buttonSearchNext.setEnabled(self.currentMatch + 1 < len(self.matches))
def focusInEvent (self, _: QFocusEvent) -> None:
self.ui.editSearch.setFocus(Qt.ActiveWindowFocusReason)
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.