-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReplaceFile.py
292 lines (241 loc) · 11.9 KB
/
ReplaceFile.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
import logging
import os
import sys
import threading
import time
import tkinter
from multiprocessing.pool import ThreadPool
from tkinter import filedialog as fd
from tkinter import messagebox
from tkinter import ttk
from chardet.universaldetector import UniversalDetector
logging.basicConfig(filename='Log.log', level=logging.INFO,
format='%(asctime)s %(message)s', datefmt='[%d/%m/%Y %H:%M:%S] - ', filemode='a')
class Gui():
def insert_text(self):
global current_directory
current_directory = fd.askdirectory()
def exit_program(self):
sys.exit()
def open_instructions(self):
os.startfile('ReadMe.txt')
def get_about(self):
messagebox.showinfo("About", "ReplaceFile © 2018")
def press_start(self):
self.task_thread = threading.Thread(target=self.start_thread)
self.task_thread.start()
def start_thread(self):
self.is_started = True
self.one_label = False
self.two_label = False
self.tree_label = False
self.four_label = False
if self.is_started is not True:
return
try:
if current_directory == '':
pass
except NameError:
messagebox.showerror("Ошибка!", "Укажите папку, в которой нужно производить поиск файлов!")
logging.error("Укажите папку, в которой нужно производить поиск файлов!")
else:
self.one_label = True
mask_text = self.text_mask.get("1.0", 'end-1c')
mask_text = str(mask_text)
u_mask_text = mask_text.upper()
l_mask_text = mask_text.lower()
if self.is_started is not True:
return
if mask_text == '':
messagebox.showerror("Ошибка!", "Введите маску файла для поиска!")
logging.error("Введите маску файла для поиска!")
else:
self.two_label = True
if self.is_started is not True:
return
search_text = self.text_search.get("1.0", 'end-1c')
search_text = str(search_text)
if search_text == '':
messagebox.showerror("Ошибка!", "Введите текст, который нужно искать в файлах!")
logging.error("Введите текст, который нужно искать в файлах!")
else:
self.tree_label = True
if self.is_started is not True:
return
replace_text = self.text_replace.get("1.0", 'end-1c')
replace_text = str(replace_text)
if replace_text == '':
messagebox.showerror("Ошибка!", "Введите текст, на который производится замена в файлах!")
logging.error("Введите текст, на который производится замена в файлах!")
else:
self.four_label = True
if self.is_started is not True:
return
if self.one_label and self.two_label and self.tree_label and self.four_label:
if self.is_started is not True:
return
self.start_stop_btn = ttk.Button(text='Стоп', command=self.press_stop)
self.start_stop_btn.place(x=100, y=350, width=200, height=40)
if self.is_started is not True:
return
self.text_p.insert(tkinter.END, '[Начинаем поиск указанных файлов в заданной папке..]\n')
logging.info('[Начинаем поиск указанных файлов в заданной папке..]')
self.text_p.yview(tkinter.END)
tree = os.walk(current_directory)
self.path_f = []
for d, dirs, files in tree:
if self.is_started is not True:
return
for f in files:
path = os.path.join(d, f)
self.path_f.append(path)
if self.is_started is not True:
return
for n, i in enumerate(self.path_f):
if self.is_started is not True:
return
item = str(i).replace('\\', r'/')
item = item.replace(r'/', '\\')
self.path_f[n] = item
self.text_p.insert(tkinter.END, '[Начинаем замену..]\n')
logging.info('[Начинаем замену..]')
self.text_p.yview(tkinter.END)
self.pb['maximum'] = len(self.path_f)
for i in self.path_f:
if self.is_started is not True:
return
if mask_text in i:
if self.is_started is not True:
return
# Определяем кодировку
detector = UniversalDetector()
with open(i, 'rb') as fh:
for line in fh:
detector.feed(line)
if detector.done:
break
detector.close()
with open(i, 'r', encoding=detector.result.get('encoding')) as file_in:
self.text = file_in.read()
self.text = self.text.replace(search_text, replace_text)
with open(i, 'w', encoding=detector.result.get('encoding')) as file_out:
file_out.write(self.text)
self.text_p.insert(tkinter.END, '[Файл %s обработан успешно!]\n' % i)
logging.info('[Файл %s обработан успешно!]' % i)
self.text_p.yview(tkinter.END)
if self.is_started is not True:
return
elif u_mask_text in i:
if self.is_started is not True:
return
# Определяем кодировку
detector = UniversalDetector()
with open(i, 'rb') as fh:
for line in fh:
detector.feed(line)
if detector.done:
break
detector.close()
with open(i, 'r', encoding=detector.result.get('encoding')) as file_in:
self.text = file_in.read()
self.text = self.text.replace(search_text, replace_text)
with open(i, 'w', encoding=detector.result.get('encoding')) as file_out:
file_out.write(self.text)
self.text_p.insert(tkinter.END, '[Файл %s обработан успешно!]\n' % i)
logging.info('[Файл %s обработан успешно!]' % i)
self.text_p.yview(tkinter.END)
if self.is_started is not True:
return
elif l_mask_text in i:
if self.is_started is not True:
return
# Определяем кодировку
detector = UniversalDetector()
with open(i, 'rb') as fh:
for line in fh:
detector.feed(line)
if detector.done:
break
detector.close()
with open(i, 'r', encoding=detector.result.get('encoding')) as file_in:
self.text = file_in.read()
self.text = self.text.replace(search_text, replace_text)
with open(i, 'w', encoding=detector.result.get('encoding')) as file_out:
file_out.write(self.text)
self.text_p.insert(tkinter.END, '[Файл %s обработан успешно!]\n' % i)
logging.info('[Файл %s обработан успешно!]' % i)
self.text_p.yview(tkinter.END)
if self.is_started is not True:
return
self.pb.step(1)
self.text_p.insert(tkinter.END, '\n[Завершено]\n')
logging.info('[Завершено]')
logging.info('-----------')
self.text_p.yview(tkinter.END)
self.start_stop_btn = ttk.Button(text='Старт', command=self.press_start)
self.start_stop_btn.place(x=100, y=350, width=200, height=40)
def press_stop(self):
self.is_started = False
self.stop_thread_init = threading.Thread(target=self.stop_thread)
self.stop_thread_init.start()
def stop_thread(self):
time.sleep(1)
self.pb.stop()
self.text_p.insert(tkinter.END, '\n[Остановлено]\n')
logging.info('[Остановлено]')
logging.info('-------------')
self.text_p.yview(tkinter.END)
self.start_stop_btn = ttk.Button(text='Старт', command=self.press_start)
self.start_stop_btn.place(x=100, y=350, width=200, height=40)
def init(self):
self.is_started = False
self.pool = ThreadPool(8)
self.root = tkinter.Tk()
self.w = self.root.winfo_screenwidth() # Ширина
self.h = self.root.winfo_screenheight() # Высота
self.w = self.w // 2 # Середина экрана
self.h = self.h // 2
self.w = self.w - 200
self.h = self.h - 200
self.root.geometry("400x450+{}+{}".format(self.w, self.h))
self.root.resizable(False, False)
self.root.title('ReplaceFile')
self.root.iconbitmap('icon.ico')
self.mainmenu = tkinter.Menu(self.root)
self.root.config(menu=self.mainmenu)
self.filemenu = tkinter.Menu(self.mainmenu, tearoff=0)
self.filemenu.add_command(label="Выход", command=self.exit_program)
self.helpmenu = tkinter.Menu(self.mainmenu, tearoff=0)
self.helpmenu.add_command(label="Инструкция", command=self.open_instructions)
self.helpmenu.add_command(label="О программе", command=self.get_about)
self.mainmenu.add_cascade(label="Файл", menu=self.filemenu)
self.mainmenu.add_cascade(label="О программе", menu=self.helpmenu)
self.text_p = tkinter.Text(self.root, autoseparators=True, wrap=tkinter.WORD, font='Courier 8')
self.text_p.place(x=5, y=190, width=390, height=150)
ttk.Style().configure("TButton", padding=6, relief="flat",
background="#ccc")
self.btn1 = ttk.Button(text='Каталог с файлами', command=self.insert_text)
self.btn1.place(x=100, y=5, width=200, height=40)
self.start_stop_btn = ttk.Button(text='Старт', command=self.press_start)
self.start_stop_btn.place(x=100, y=350, width=200, height=40)
self.pb = ttk.Progressbar(self.root, orient="horizontal")
self.pb.place(x=5, y=400, width=390, height=25)
self.label_mask = ttk.Label(self.root, text='Маска')
self.label_mask.place(x=330, y=60, width=200, height=35)
self.text_mask = tkinter.Text(self.root)
self.text_mask.place(x=5, y=60, width=320, height=35)
self.label_search = ttk.Label(self.root, text='Искать')
self.label_search.place(x=330, y=100, width=200, height=35)
self.text_search = tkinter.Text(self.root)
self.text_search.place(x=5, y=100, width=320, height=35)
self.label_replace = ttk.Label(self.root, text='Заменить')
self.label_replace.place(x=330, y=140, width=200, height=35)
self.text_replace = tkinter.Text(self.root)
self.text_replace.place(x=5, y=140, width=320, height=35)
self.root.mainloop()
try:
gui = Gui()
gui.init()
except Exception as e:
logging.error(e)
sys.exit()