2022-10-04 03:14:18 +00:00
|
|
|
# Python imports
|
2023-02-21 19:16:53 +00:00
|
|
|
import time
|
2022-11-29 04:34:13 +00:00
|
|
|
import threading
|
|
|
|
import subprocess
|
|
|
|
import signal
|
|
|
|
import json
|
|
|
|
import shlex
|
2022-11-30 04:34:25 +00:00
|
|
|
from datetime import datetime
|
2022-10-04 03:14:18 +00:00
|
|
|
|
|
|
|
# Lib imports
|
2022-10-10 01:59:44 +00:00
|
|
|
import gi
|
|
|
|
gi.require_version('Gtk', '3.0')
|
2022-11-29 04:34:13 +00:00
|
|
|
from gi.repository import Gtk
|
|
|
|
from gi.repository import GLib
|
2022-10-04 03:14:18 +00:00
|
|
|
|
|
|
|
# Application imports
|
|
|
|
from ..widgets.file_preview_widget import FilePreviewWidget
|
|
|
|
|
|
|
|
|
|
|
|
# NOTE: Threads WILL NOT die with parent's destruction.
|
|
|
|
def threaded(fn):
|
|
|
|
def wrapper(*args, **kwargs):
|
|
|
|
threading.Thread(target=fn, args=args, kwargs=kwargs, daemon=False).start()
|
2022-10-07 01:48:44 +00:00
|
|
|
|
2022-10-04 03:14:18 +00:00
|
|
|
return wrapper
|
|
|
|
|
|
|
|
# NOTE: Threads WILL die with parent's destruction.
|
|
|
|
def daemon_threaded(fn):
|
|
|
|
def wrapper(*args, **kwargs):
|
|
|
|
threading.Thread(target=fn, args=args, kwargs=kwargs, daemon=True).start()
|
2022-10-07 01:48:44 +00:00
|
|
|
|
2022-10-04 03:14:18 +00:00
|
|
|
return wrapper
|
|
|
|
|
|
|
|
|
|
|
|
class FileSearchMixin:
|
|
|
|
def _run_find_file_query(self, widget=None, eve=None):
|
2023-02-21 19:16:53 +00:00
|
|
|
self._queue_search = True
|
|
|
|
|
|
|
|
if not self._search_watcher_running:
|
|
|
|
self._search_watcher_running = True
|
|
|
|
|
|
|
|
self._stop_fsearch_query()
|
|
|
|
self.reset_file_list_box()
|
|
|
|
self.run_fsearch_watcher(query=widget)
|
2022-10-04 03:14:18 +00:00
|
|
|
|
2023-11-12 06:49:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Need to implement this over the threaded stuffs....
|
|
|
|
|
|
|
|
|
|
|
|
def cancel_timer(self):
|
|
|
|
if self.timer:
|
|
|
|
self.timer.cancel()
|
|
|
|
GLib.idle_remove_by_data(None)
|
|
|
|
|
|
|
|
def delay_search_Glib(self):
|
|
|
|
GLib.idle_add(self._do_highlight)
|
|
|
|
|
|
|
|
def delay_search(self):
|
|
|
|
wait_time = self.search_time / len(self.search_text)
|
|
|
|
wait_time = max(wait_time, 0.05)
|
|
|
|
|
|
|
|
self.timer = threading.Timer(wait_time, self.delay_search_Glib)
|
|
|
|
self.timer.daemon = True
|
|
|
|
self.timer.start()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-04 03:14:18 +00:00
|
|
|
@daemon_threaded
|
2023-02-21 19:16:53 +00:00
|
|
|
def run_fsearch_watcher(self, query):
|
|
|
|
while True:
|
|
|
|
if self._queue_search:
|
|
|
|
self._queue_search = False
|
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
# NOTE: Hold call to translate if we're still typing/updating...
|
|
|
|
if self._queue_search:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# NOTE: If query create new process and do all new loop.
|
|
|
|
if query:
|
|
|
|
self.pause_fifo_update = False
|
|
|
|
GLib.idle_add(self._exec_find_file_query, query)
|
|
|
|
|
|
|
|
self._search_watcher_running = False
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
def _stop_fsearch_query(self, widget=None, eve=None):
|
2023-03-05 03:45:29 +00:00
|
|
|
self._spinner.stop()
|
|
|
|
|
2022-10-04 03:14:18 +00:00
|
|
|
# NOTE: Freeze IPC consumption
|
2022-11-30 04:34:25 +00:00
|
|
|
self.pause_fifo_update = True
|
|
|
|
self.search_query = ""
|
|
|
|
dt = datetime.now()
|
|
|
|
self.fsearch_time_stamp = datetime.timestamp(dt) # NOTE: Get timestamp
|
2022-10-04 03:14:18 +00:00
|
|
|
|
|
|
|
# NOTE: Kill the former process
|
|
|
|
if self._list_proc:
|
2022-10-07 01:48:44 +00:00
|
|
|
if self._list_proc.poll() == None:
|
|
|
|
self._list_proc.terminate()
|
|
|
|
while self._list_proc.poll() == None:
|
|
|
|
...
|
2022-10-04 03:14:18 +00:00
|
|
|
|
2022-10-07 01:48:44 +00:00
|
|
|
self._list_proc = None
|
2022-10-04 03:14:18 +00:00
|
|
|
|
2023-09-16 06:18:36 +00:00
|
|
|
|
2022-10-04 03:14:18 +00:00
|
|
|
def _exec_find_file_query(self, widget=None, eve=None):
|
|
|
|
query = widget.get_text()
|
|
|
|
|
|
|
|
if not query in ("", None):
|
2022-10-05 03:58:27 +00:00
|
|
|
self.search_query = query
|
2023-09-16 06:18:36 +00:00
|
|
|
target_dir = shlex.quote( self._fm_state.tab.get_current_directory() )
|
|
|
|
command = ["python", f"{self.path}/utils/search.py", "-t", "file_search", "-d", f"{target_dir}", "-q", f"{query}"]
|
|
|
|
|
2023-03-05 03:45:29 +00:00
|
|
|
self._spinner.start()
|
2023-09-16 06:18:36 +00:00
|
|
|
|
2022-10-04 03:14:18 +00:00
|
|
|
self._list_proc = subprocess.Popen(command, cwd=self.path, stdin=None, stdout=None, stderr=None)
|
|
|
|
|
2023-02-21 19:16:53 +00:00
|
|
|
|
2022-10-04 03:14:18 +00:00
|
|
|
def _load_file_ui(self, data):
|
2022-10-10 01:59:44 +00:00
|
|
|
Gtk.main_iteration()
|
|
|
|
|
2022-10-05 03:58:27 +00:00
|
|
|
if not data in ("", None):
|
2022-10-04 03:14:18 +00:00
|
|
|
jdata = json.loads( data )
|
|
|
|
target = jdata[0]
|
|
|
|
file = jdata[1]
|
|
|
|
|
|
|
|
widget = FilePreviewWidget(target, file)
|
2023-11-12 06:49:16 +00:00
|
|
|
self._file_list.add(widget)
|