-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
cache.py
258 lines (210 loc) · 8.39 KB
/
cache.py
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
import os
import sys
import os.path
from .lib.utils import open_path
from .lib.cache import default_cache_path, TranslationCache
from .lib.config import get_config
from .components import Footer, AlertMessage
try:
from qt.core import (
Qt, QDialog, QWidget, QVBoxLayout, QHBoxLayout, QPushButton, QLabel,
QTableView, QAbstractTableModel, QAbstractItemView, pyqtSignal,
QLineEdit, QFileDialog, QModelIndex, QMenu, QCursor, QHeaderView)
except ImportError:
from PyQt5.Qt import (
Qt, QDialog, QWidget, QVBoxLayout, QHBoxLayout, QPushButton, QLabel,
QTableView, QAbstractTableModel, QAbstractItemView, pyqtSignal,
QLineEdit, QFileDialog, QModelIndex, QMenu, QCursor, QHeaderView)
load_translations()
class CacheManager(QDialog):
cache_count = pyqtSignal()
def __init__(self, plugin, parent):
QDialog.__init__(self, parent)
self.plugin = plugin
self.gui = parent
self.config = get_config()
self.alert = AlertMessage(self)
self.footer = Footer()
self.default_path = default_cache_path()
self.cache_size = QLabel()
self.footer.layout().insertWidget(0, self.cache_size)
self.layout = QVBoxLayout(self)
self.layout.addWidget(self.control_widget())
self.layout.addWidget(self.table_widget())
self.layout.addWidget(self.enable_widget())
self.layout.addWidget(self.footer)
self.cache_list.selected_rows.connect(
lambda rows: self.delete_button.setDisabled(len(rows) < 1))
def clear_button_status():
self.clear_button.setDisabled(
self.cache_list.model().rowCount() < 1)
clear_button_status()
self.cache_list.model().layoutChanged.connect(clear_button_status)
self.cache_path.setText(TranslationCache.dir_path)
self.cache_reset.setDisabled(
TranslationCache.dir_path == self.default_path)
self.cache_count.connect(self.recount)
self.cache_path.mouseDoubleClickEvent = lambda event: self.move()
self.cache_move.clicked.connect(self.move)
self.cache_reset.clicked.connect(self.reset)
self.cache_reveal.clicked.connect(self.reveal)
self.clear_button.clicked.connect(self.clear)
self.delete_button.clicked.connect(self.cache_list.delete_cache)
self.cache_count.emit()
def control_widget(self):
widget = QWidget()
layout = QHBoxLayout(widget)
layout.setContentsMargins(0, 0, 0, 0)
self.cache_path = QLineEdit()
self.cache_path.setReadOnly(True)
self.cache_path.setPlaceholderText(
_('Choose a path to store cache files.'))
self.cache_move = QPushButton(_('Move'))
self.cache_reset = QPushButton(_('Reset'))
self.cache_reveal = QPushButton(_('Reveal'))
layout.addWidget(QLabel(_('Cache Path')))
layout.addWidget(self.cache_path, 1)
layout.addWidget(self.cache_move)
layout.addWidget(self.cache_reset)
layout.addWidget(self.cache_reveal)
return widget
def enable_widget(self):
widget = QWidget()
layout = QHBoxLayout(widget)
layout.setContentsMargins(0, 0, 0, 0)
self.clear_button = QPushButton(_('Clear All'))
self.clear_button.setDisabled(True)
self.delete_button = QPushButton(_('Delete'))
self.delete_button.setDisabled(True)
layout.addWidget(self.clear_button)
layout.addStretch(1)
layout.addWidget(self.delete_button)
return widget
def table_widget(self):
self.cache_list = CacheTableView(self.alert, self)
self.cache_list.setModel(CacheTableModel())
return self.cache_list
def reset(self):
action = self.alert.ask(_(
'All cache(s) will be moved to the default path. '
'Are you sure to proceed?'))
if action != 'yes':
return
TranslationCache.move(self.default_path)
self.cache_list.model().refresh()
self.cache_path.setText(self.default_path)
self.cache_reset.setDisabled(True)
self.config.save(cache_path=None)
def move(self):
path = QFileDialog.getExistingDirectory()
if not path or path == self.default_path:
return
action = self.alert.ask(_(
'All cache(s) will be moved to the new path. '
'Are you sure to proceed?'))
if action != 'yes':
return
if not os.path.exists(path):
self.alert.pop(_('The specified path does not exist.'))
return
if len([i for i in os.listdir(path) if not i.startswith('.')]) > 0:
self.alert.pop(_('Please choose an empty folder.'))
return
TranslationCache.move(path)
self.cache_list.model().refresh()
self.cache_path.setText(path)
self.cache_reset.setDisabled(False)
self.config.save(cache_path=path)
def clear(self):
action = self.alert.ask(
_('Are you sure you want to clear all caches?'))
if action != 'yes':
return
TranslationCache.clean()
self.cache_list.model().clear()
self.cache_count.emit()
def reveal(self):
cache_path = TranslationCache.cache_path
if not os.path.exists(cache_path):
return self.alert.pop(_('No cache exists.'), 'warning')
open_path(cache_path)
def recount(self):
return self.cache_size.setText(
_('Total: {}').format('%sMB' % TranslationCache.count()))
class CacheTableView(QTableView):
selected_rows = pyqtSignal(list)
def __init__(self, alert, parent=None):
QTableView.__init__(self, parent)
self.alert = alert
self.parent = parent
self.setSortingEnabled(True)
self.setSelectionBehavior(QAbstractItemView.SelectRows)
self.verticalHeader().setVisible(False)
self.horizontalHeader().setStretchLastSection(True)
self.horizontalHeader().sortIndicatorChanged.connect(self.sortByColumn)
def selectionChanged(self, selected, deselected):
QTableView.selectionChanged(self, selected, deselected)
self.selected_rows.emit(self.selectionModel().selectedRows())
def contextMenuEvent(self, event):
menu = QMenu()
menu.addAction(_('Delete'), self.delete_cache)
menu.setMinimumSize(menu.sizeHint())
menu.setMaximumSize(menu.sizeHint())
menu.exec_(QCursor.pos())
def delete_cache(self):
action = self.alert.ask(
_('Are you sure you want to delete the selected cache(s)?'))
if action != 'yes':
return
for row in reversed(self.selectionModel().selectedRows()):
filename = row.data(Qt.UserRole)
TranslationCache.remove(filename)
self.model().delete(row.row())
self.clearSelection()
self.parent.cache_count.emit()
class CacheTableModel(QAbstractTableModel):
headers = [
_('Title'), _('Engine'), _('Language'), _('Merge Length'),
_('Size (MB)'), _('Last Modification Time'), _('Filename'),
]
def __init__(self):
QAbstractTableModel.__init__(self)
self.refresh()
def update(func):
def wrapper(self, *args):
self.layoutAboutToBeChanged.emit()
func(self, *args)
self.layoutChanged.emit()
return wrapper
def headerData(self, section, orientation, role):
if role != Qt.DisplayRole:
return None
if orientation == Qt.Horizontal:
return self.headers[section]
else:
return section
def data(self, index, role):
if not index.isValid():
return None
if role == Qt.DisplayRole:
return self.caches[index.row()][index.column()]
if role == Qt.UserRole:
return self.caches[index.row()][-1]
@update
def refresh(self):
self.caches = TranslationCache.get_list()
@update
def delete(self, row):
del self.caches[row]
@update
def clear(self):
del self.caches[:]
@update
def sort(self, column, order):
self.caches = sorted(self.caches, key=lambda item: item[column])
if order == Qt.DescendingOrder:
self.caches.reverse()
def rowCount(self, parent=QModelIndex()):
return len(self.caches)
def columnCount(self, parent=QModelIndex()):
return len(self.headers)