aboutsummaryrefslogtreecommitdiff
path: root/desktop/onionshare/tab/mode/share_mode/threads.py
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/onionshare/tab/mode/share_mode/threads.py')
-rw-r--r--desktop/onionshare/tab/mode/share_mode/threads.py62
1 files changed, 62 insertions, 0 deletions
diff --git a/desktop/onionshare/tab/mode/share_mode/threads.py b/desktop/onionshare/tab/mode/share_mode/threads.py
new file mode 100644
index 00000000..839d30ea
--- /dev/null
+++ b/desktop/onionshare/tab/mode/share_mode/threads.py
@@ -0,0 +1,62 @@
+# -*- coding: utf-8 -*-
+"""
+OnionShare | https://onionshare.org/
+
+Copyright (C) 2014-2021 Micah Lee, et al. <micah@micahflee.com>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU 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 General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+"""
+
+from PySide2 import QtCore
+
+
+class CompressThread(QtCore.QThread):
+ """
+ Compresses files to be shared
+ """
+
+ success = QtCore.Signal()
+ error = QtCore.Signal(str)
+
+ def __init__(self, mode):
+ super(CompressThread, self).__init__()
+ self.mode = mode
+ self.mode.common.log("CompressThread", "__init__")
+
+ # prepare files to share
+ def set_processed_size(self, x):
+ if self.mode._zip_progress_bar is not None:
+ self.mode._zip_progress_bar.update_processed_size_signal.emit(x)
+
+ def run(self):
+ self.mode.common.log("CompressThread", "run")
+
+ try:
+ self.mode.web.share_mode.set_file_info(
+ self.mode.filenames, processed_size_callback=self.set_processed_size
+ )
+ self.success.emit()
+ except OSError as e:
+ self.error.emit(e.strerror)
+
+ def cancel(self):
+ self.mode.common.log("CompressThread", "cancel")
+
+ # Let the Web and ZipWriter objects know that we're canceling compression early
+ self.mode.web.cancel_compression = True
+ try:
+ self.mode.web.zip_writer.cancel_compression = True
+ except AttributeError:
+ # we never made it as far as creating a ZipWriter object
+ pass