2022-07-21 04:57:06 +00:00
|
|
|
# Python imports
|
2022-10-04 01:50:38 +00:00
|
|
|
import os, threading, subprocess, inspect, time, json, base64, shlex, select, signal
|
2022-07-21 04:57:06 +00:00
|
|
|
|
|
|
|
# Lib imports
|
|
|
|
import gi
|
|
|
|
gi.require_version('Gtk', '3.0')
|
2022-10-03 05:52:50 +00:00
|
|
|
from gi.repository import Gtk, GLib
|
2022-07-21 04:57:06 +00:00
|
|
|
|
|
|
|
# Application imports
|
2022-09-06 02:21:04 +00:00
|
|
|
from plugins.plugin_base import PluginBase
|
2022-10-04 01:50:38 +00:00
|
|
|
from .ipc_server import IPCServer
|
2022-07-21 04:57:06 +00:00
|
|
|
|
2022-10-03 05:52:50 +00:00
|
|
|
|
|
|
|
|
2022-07-21 04:57:06 +00:00
|
|
|
# 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()
|
|
|
|
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()
|
|
|
|
return wrapper
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FilePreviewWidget(Gtk.LinkButton):
|
|
|
|
def __init__(self, path, file):
|
|
|
|
super(FilePreviewWidget, self).__init__()
|
|
|
|
self.set_label(file)
|
|
|
|
self.set_uri(f"file://{path}")
|
|
|
|
self.show_all()
|
|
|
|
|
|
|
|
|
|
|
|
class GrepPreviewWidget(Gtk.Box):
|
2022-10-03 05:52:50 +00:00
|
|
|
def __init__(self, _path, sub_keys, data):
|
2022-07-21 04:57:06 +00:00
|
|
|
super(GrepPreviewWidget, self).__init__()
|
|
|
|
self.set_orientation(Gtk.Orientation.VERTICAL)
|
|
|
|
self.line_color = "#e0cc64"
|
|
|
|
|
2022-10-03 05:52:50 +00:00
|
|
|
path = base64.urlsafe_b64decode(_path.encode('utf-8')).decode('utf-8')
|
2022-07-21 04:57:06 +00:00
|
|
|
_label = '/'.join( path.split("/")[-3:] )
|
|
|
|
title = Gtk.LinkButton.new_with_label(uri=f"file://{path}", label=_label)
|
|
|
|
|
|
|
|
self.add(title)
|
|
|
|
for key in sub_keys:
|
|
|
|
line_num = key
|
2022-10-03 05:52:50 +00:00
|
|
|
text = base64.urlsafe_b64decode(data[key].encode('utf-8')).decode('utf-8')
|
|
|
|
|
|
|
|
|
2022-07-21 04:57:06 +00:00
|
|
|
box = Gtk.Box()
|
|
|
|
number_label = Gtk.Label()
|
|
|
|
text_view = Gtk.Label(label=text[:-1])
|
|
|
|
label_text = f"<span foreground='{self.line_color}'>{line_num}</span>"
|
|
|
|
|
|
|
|
number_label.set_markup(label_text)
|
|
|
|
number_label.set_margin_left(15)
|
|
|
|
number_label.set_margin_right(5)
|
|
|
|
number_label.set_margin_top(5)
|
|
|
|
number_label.set_margin_bottom(5)
|
|
|
|
text_view.set_margin_top(5)
|
|
|
|
text_view.set_margin_bottom(5)
|
|
|
|
text_view.set_line_wrap(True)
|
|
|
|
|
|
|
|
box.add(number_label)
|
|
|
|
box.add(text_view)
|
|
|
|
self.add(box)
|
|
|
|
|
|
|
|
self.show_all()
|
|
|
|
|
|
|
|
|
2022-10-03 05:52:50 +00:00
|
|
|
pause_fifo_update = False
|
2022-07-21 04:57:06 +00:00
|
|
|
|
2022-10-04 01:50:38 +00:00
|
|
|
class Plugin(IPCServer, PluginBase):
|
2022-07-21 04:57:06 +00:00
|
|
|
def __init__(self):
|
2022-09-06 02:21:04 +00:00
|
|
|
super().__init__()
|
|
|
|
|
2022-08-13 03:54:16 +00:00
|
|
|
self.path = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
self.name = "Search" # NOTE: Need to remove after establishing private bidirectional 1-1 message bus
|
|
|
|
# where self.name should not be needed for message comms
|
2022-07-21 04:57:06 +00:00
|
|
|
self._GLADE_FILE = f"{self.path}/search_dialog.glade"
|
|
|
|
|
2022-09-06 02:21:04 +00:00
|
|
|
self._search_dialog = None
|
2022-07-21 04:57:06 +00:00
|
|
|
self._active_path = None
|
|
|
|
self._file_list = None
|
|
|
|
self._grep_list = None
|
|
|
|
self._grep_proc = None
|
|
|
|
self._list_proc = None
|
|
|
|
|
|
|
|
|
|
|
|
def get_ui_element(self):
|
2022-09-06 02:21:04 +00:00
|
|
|
button = Gtk.Button(label=self.name)
|
|
|
|
button.connect("button-release-event", self._show_grep_list_page)
|
|
|
|
return button
|
|
|
|
|
|
|
|
def run(self):
|
2022-07-21 04:57:06 +00:00
|
|
|
self._builder = Gtk.Builder()
|
|
|
|
self._builder.add_from_file(self._GLADE_FILE)
|
|
|
|
|
|
|
|
classes = [self]
|
|
|
|
handlers = {}
|
|
|
|
for c in classes:
|
|
|
|
methods = None
|
|
|
|
try:
|
|
|
|
methods = inspect.getmembers(c, predicate=inspect.ismethod)
|
|
|
|
handlers.update(methods)
|
|
|
|
except Exception as e:
|
|
|
|
print(repr(e))
|
|
|
|
|
|
|
|
self._builder.connect_signals(handlers)
|
|
|
|
|
|
|
|
self._search_dialog = self._builder.get_object("search_dialog")
|
|
|
|
self._grep_list = self._builder.get_object("grep_list")
|
|
|
|
self._file_list = self._builder.get_object("file_list")
|
2022-10-03 05:52:50 +00:00
|
|
|
self.fsearch = self._builder.get_object("fsearch")
|
2022-07-21 04:57:06 +00:00
|
|
|
|
2022-10-03 05:52:50 +00:00
|
|
|
self._event_system.subscribe("update-file-ui", self._load_file_ui)
|
|
|
|
self._event_system.subscribe("update-grep-ui", self._load_grep_ui)
|
2022-07-21 04:57:06 +00:00
|
|
|
|
2022-10-04 01:50:38 +00:00
|
|
|
self.create_ipc_listener()
|
2022-10-03 05:52:50 +00:00
|
|
|
|
|
|
|
|
2022-07-21 04:57:06 +00:00
|
|
|
def _show_grep_list_page(self, widget=None, eve=None):
|
2022-10-03 05:52:50 +00:00
|
|
|
self._event_system.emit("get_current_state")
|
2022-07-21 04:57:06 +00:00
|
|
|
|
2022-09-29 22:22:33 +00:00
|
|
|
state = self._fm_state
|
2022-07-21 04:57:06 +00:00
|
|
|
self._event_message = None
|
|
|
|
|
|
|
|
self._active_path = state.tab.get_current_directory()
|
|
|
|
response = self._search_dialog.run()
|
|
|
|
self._search_dialog.hide()
|
|
|
|
|
|
|
|
|
|
|
|
def _run_find_file_query(self, widget=None, eve=None):
|
2022-10-03 05:52:50 +00:00
|
|
|
self._stop_find_file_query()
|
2022-07-21 04:57:06 +00:00
|
|
|
|
|
|
|
query = widget.get_text()
|
2022-10-03 05:52:50 +00:00
|
|
|
if not query in ("", None):
|
|
|
|
target_dir = shlex.quote( self._fm_state.tab.get_current_directory() )
|
|
|
|
command = ["python", f"{self.path}/search.py", "-t", "file_search", "-d", f"{target_dir}", "-q", f"{query}"]
|
|
|
|
process = subprocess.Popen(command, cwd=self.path, stdin=None, stdout=None, stderr=None)
|
|
|
|
|
|
|
|
def _stop_find_file_query(self, widget=None, eve=None):
|
|
|
|
pause_fifo_update = True
|
2022-07-21 04:57:06 +00:00
|
|
|
|
2022-10-03 05:52:50 +00:00
|
|
|
if self._list_proc:
|
|
|
|
if self._list_proc.poll():
|
|
|
|
self._list_proc.send_signal(signal.SIGKILL)
|
|
|
|
while self._list_proc.poll():
|
|
|
|
pass
|
|
|
|
|
|
|
|
self._list_proc = None
|
|
|
|
else:
|
|
|
|
self._list_proc = None
|
2022-07-21 04:57:06 +00:00
|
|
|
|
2022-10-03 05:52:50 +00:00
|
|
|
self.clear_children(self._file_list)
|
|
|
|
pause_fifo_update = False
|
2022-07-21 04:57:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
def _run_grep_query(self, widget=None, eve=None):
|
2022-10-03 05:52:50 +00:00
|
|
|
self._stop_grep_query()
|
|
|
|
|
|
|
|
query = widget.get_text()
|
|
|
|
if not query in ("", None):
|
|
|
|
target_dir = shlex.quote( self._fm_state.tab.get_current_directory() )
|
|
|
|
command = ["python", f"{self.path}/search.py", "-t", "grep_search", "-d", f"{target_dir}", "-q", f"{query}"]
|
|
|
|
process = subprocess.Popen(command, cwd=self.path, stdin=None, stdout=None, stderr=None)
|
|
|
|
|
|
|
|
def _stop_grep_query(self, widget=None, eve=None):
|
|
|
|
pause_fifo_update = True
|
|
|
|
|
2022-07-21 04:57:06 +00:00
|
|
|
if self._grep_proc:
|
2022-10-03 05:52:50 +00:00
|
|
|
if self._grep_proc.poll():
|
|
|
|
self._grep_proc.send_signal(signal.SIGKILL)
|
|
|
|
while self._grep_proc.poll():
|
|
|
|
pass
|
|
|
|
|
|
|
|
self._grep_proc = None
|
|
|
|
else:
|
|
|
|
self._grep_proc = None
|
2022-07-21 04:57:06 +00:00
|
|
|
|
|
|
|
self.clear_children(self._grep_list)
|
2022-10-03 05:52:50 +00:00
|
|
|
pause_fifo_update = False
|
2022-07-21 04:57:06 +00:00
|
|
|
|
2022-10-03 05:52:50 +00:00
|
|
|
|
|
|
|
def _load_file_ui(self, data):
|
|
|
|
if not data in ("", None) and not pause_fifo_update:
|
|
|
|
jdata = json.loads( data )
|
|
|
|
target = jdata[0]
|
|
|
|
file = jdata[1]
|
|
|
|
|
|
|
|
widget = FilePreviewWidget(target, file)
|
|
|
|
self._file_list.add(widget)
|
|
|
|
|
|
|
|
def _load_grep_ui(self, data):
|
|
|
|
if not data in ("", None) and not pause_fifo_update:
|
|
|
|
jdata = json.loads( data )
|
|
|
|
jkeys = jdata.keys()
|
|
|
|
for key in jkeys:
|
|
|
|
sub_keys = jdata[key].keys()
|
|
|
|
grep_result = jdata[key]
|
|
|
|
|
|
|
|
widget = GrepPreviewWidget(key, sub_keys, grep_result)
|
|
|
|
self._grep_list.add(widget)
|