fix thread stop
This commit is contained in:
parent
6ca3aec978
commit
4e9375eee5
8
sites.py
8
sites.py
@ -10,14 +10,22 @@ class Sites:
|
|||||||
def __del__(self):
|
def __del__(self):
|
||||||
print(self.name, 'stop !')
|
print(self.name, 'stop !')
|
||||||
|
|
||||||
|
def stop(self):
|
||||||
|
self.to_stop = True
|
||||||
|
|
||||||
def search(self, key_word):
|
def search(self, key_word):
|
||||||
|
self.to_stop = False
|
||||||
key_word = self.trns_key(key_word)
|
key_word = self.trns_key(key_word)
|
||||||
for url in self.gen_url(key_word):
|
for url in self.gen_url(key_word):
|
||||||
|
if self.to_stop:
|
||||||
|
return
|
||||||
try:
|
try:
|
||||||
soup = self.fetch_soup(url)
|
soup = self.fetch_soup(url)
|
||||||
except:
|
except:
|
||||||
break
|
break
|
||||||
for item in self.get_item(soup):
|
for item in self.get_item(soup):
|
||||||
|
if self.to_stop:
|
||||||
|
return
|
||||||
if 'link_url' in item:
|
if 'link_url' in item:
|
||||||
try:
|
try:
|
||||||
item['link'] = self.get_link(self.fetch_soup(item['link_url']))
|
item['link'] = self.get_link(self.fetch_soup(item['link_url']))
|
||||||
|
12
ux.py
12
ux.py
@ -29,8 +29,9 @@ class Ux(QMainWindow, window.Ui_MainWindow):
|
|||||||
self.state.showMessage('Over')
|
self.state.showMessage('Over')
|
||||||
if self.timer.isActive():
|
if self.timer.isActive():
|
||||||
self.timer.stop()
|
self.timer.stop()
|
||||||
while self.th_search.isRunning():
|
if self.th_search.isRunning():
|
||||||
self.th_search.exit()
|
self.th_search.stop()
|
||||||
|
self.th_search.wait()
|
||||||
|
|
||||||
def on_cb_source_currentIndexChanged(self, index):
|
def on_cb_source_currentIndexChanged(self, index):
|
||||||
if type(index) == type(1):
|
if type(index) == type(1):
|
||||||
@ -83,6 +84,9 @@ class SearchThread(QThread):
|
|||||||
def run(self):
|
def run(self):
|
||||||
if not self.key:
|
if not self.key:
|
||||||
return
|
return
|
||||||
search = self.site(self.to_append_result)
|
self.search = self.site(self.to_append_result)
|
||||||
search.search(self.key)
|
self.search.search(self.key)
|
||||||
self.to_stop_search.emit()
|
self.to_stop_search.emit()
|
||||||
|
|
||||||
|
def stop(self):
|
||||||
|
self.search.stop()
|
Loading…
x
Reference in New Issue
Block a user