-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeEditor.py
More file actions
428 lines (370 loc) · 11.5 KB
/
Copy pathCodeEditor.py
File metadata and controls
428 lines (370 loc) · 11.5 KB
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
import os
import subprocess
import re
import ctypes
import time
import binascii
import shutil
import fileinput
import uuid
import codecs
from stat import *
def RecursiveDumpFilePath(TopPath, Buffer):
for file in os.listdir(TopPath):
path = os.path.join(TopPath, file)
mode = os.stat(path)[ST_MODE]
# Check file is folder
if S_ISDIR(mode):
RecursiveDumpFilePath(path, Buffer)
# Check file is file
elif S_ISREG(mode):
if not path.endswith(".uni"):
Buffer.append(path)
# unrecognize file type
else:
print("Error!\n")
def GenerateGuid():
# This function will generate a set of GUID
return uuid.uuid4()
def GetFileList(Regex):
# This function will get destination file by regular expression
Buffer = []
regex = re.compile (Regex)
for line in os.listdir("."):
if regex.search(line):
Buffer.append(str(line))
return Buffer
def DepthSearchFile(Dst):
# This function will return dirPath, dirNames, and fileNames
return os.walk(Dst)
def RenameFile(Src, Dst):
# This function will rename destination file's name
return os.rename(Src, Dst)
def CopyFile(Src, Dst):
# This function will copy source file to destination path
return shutil.copy2(Src, Dst)
def MoveFile(Src, Dst):
# This function will move source file to destination path
return shutil.move(Src, Dst)
def DeleteFile(Dst):
# This function will delete destination file
return os.remove(Dst)
def CopyFolder(Src, Dst):
# This function will copy a source folder to destination path
return shutil.copytree(Src, Dst)
def DeleteFolder(Dst):
# This function will delete a destination folder
return shutil.rmtree(Dst)
def CopyFileContent(Src, Dst):
# This function will copy source file content to destination file
return shutil.copyfile(Src, Dst)
def OverrideFile(SrcFilePathList, DstPathList):
# This function will override file from SrcFilePathList to DstPathList
# SrcFilePathList = {
# "File1": "",
# "File2": "",
# "File3": "",
# }
# DstPathList = {
# "File1": "",
# "File2": "",
# "File3": "",
# }
for line in SrcFilePathList:
mode = os.stat(SrcFilePathList[line])[ST_MODE]
if S_ISDIR(mode):
if (os.path.exists(DstPathList[line])):
shutil.rmtree(DstPathList[line])
shutil.copytree(SrcFilePathList[line], DstPathList[line])
elif S_ISREG(mode):
if (os.path.isfile(DstPathList[line])):
os.remove(DstPathList[line])
shutil.copy2(SrcFilePathList[line], DstPathList[line])
else:
print("End of line\n!")
def RelplaceString(FilePath, BeforStr, AfterStr):
# This function will replace string from BeforStr to AfterStr
if os.path.exists(FilePath):
with fileinput.FileInput(FilePath, inplace=True) as f2:
for line in f2:
print(line.replace(BeforStr, AfterStr), end="")
def InsertStringToFile(FilePath, KeyWord, String):
# This function will insert string under KeyWord string
Buffer = []
with fileinput.FileInput(FilePath, inplace=False) as file2:
for line in file2:
if KeyWord in line[0:-1]:
Buffer.append(line + String)
else:
Buffer.append(line)
f = open(FilePath, 'w')
for line in Buffer:
f.write(line)
f.close()
def InsertStringToFileEx(FilePath, KeyWord, KeyWordCount, ShiftLineNum, SrcFile):
# This function will insert string under KeyWord string
Buffer = []
Src = open(SrcFile, "r")
Count = 0
Count2 = 0
FindLineNum = 0
with fileinput.FileInput(FilePath, inplace=False) as file2:
for line in file2:
Count += 1
if KeyWord in line[0:-1]:
if Count2 == KeyWordCount:
FindLineNum = Count - ShiftLineNum
break
else:
Count2 += 1
Count = 0
with fileinput.FileInput(FilePath, inplace=False) as file2:
for line in file2:
Count += 1
if Count == FindLineNum:
Buffer.append(line)
for line2 in Src:
Buffer.append(line2)
else:
Buffer.append(line)
f = open(FilePath, 'w')
for line in Buffer:
f.write(line)
f.close()
def RelplaceStringToUni(Path, BeforStr, AfterStr):
# This function will replace string from BeforStr to AfterStr
Buffer = []
if os.path.exists(Path):
with codecs.open(Path, encoding='utf-16') as f2:
for line in f2:
print(line.replace(BeforStr, AfterStr), end="")
Buffer.append(line)
with codecs.open(Path, 'w', encoding='utf-16') as f:
for line in Buffer:
f.write(line)
def InsertStringToUni(Path, KeyWord, TargetStr):
# This function will insert string under KeyWord string(For unicode file)
Buffer = []
with codecs.open(Path, encoding='utf-16') as file:
for line in file:
if KeyWord in line:
Buffer.append(line + TargetStr)
else:
Buffer.append(line)
with codecs.open(Path, 'w', encoding='utf-16') as f:
for line in Buffer:
f.write(line)
def InsertStringToUniEx(Path, KeyWord, SrcFile):
# This function will insert string under KeyWord string(For unicode file)
Buffer = []
Src = open(SrcFile, "r")
with codecs.open(Path, encoding='utf-16') as file:
for line in file:
if KeyWord in line:
Buffer.append(line + "\n")
with codecs.open(SrcFile, encoding='utf-16') as file2:
for line2 in file2:
Buffer.append(line2)
else:
Buffer.append(line)
with codecs.open(Path, 'w', encoding='utf-16') as f:
for line in Buffer:
f.write(line)
def DeleteStringFromFile(Path, KeyWord):
# This function will delete string under KeyWord string
Buffer = []
flag = False
with open(Path) as f2:
for line in f2:
if KeyWord in line:
Buffer.append(line)
flag = True
else:
if not flag:
Buffer.append(line)
else:
flag = False
f2 = open(Path, 'w')
for line in Buffer:
f2.write(line)
f2.close()
def DeleteStringFromFileEx(FilePath, KeyWord, KeyWordCount, NumRmLine):
# This function will delete multi line string under KeyWord string by NumRmLine(It's a integer number)
Buffer = []
flag = True
EndFlag = False
Count = 0
with fileinput.FileInput(FilePath, inplace=False) as file2:
for line in file2:
if KeyWord in line:
if Count == KeyWordCount:
if not EndFlag:
NumRmLine -= 1
flag = False
Buffer.append(line)
else:
Buffer.append(line)
else:
Buffer.append(line)
Count += 1
elif NumRmLine == 0:
flag = True
EndFlag = True
Buffer.append(line)
else:
if flag:
Buffer.append(line)
else:
NumRmLine -= 1
f = open(FilePath, 'w')
for line in Buffer:
f.write(line)
f.close()
def ModifyInfFileGuid(FilePath):
# This function will update GUID in a file
NewStr = ""
Buffer = []
GuidStrLength = 36
regex = re.compile("\w{8}-\w{4}-\w{4}-\w{4}-\w{12}")
with fileinput.FileInput(FilePath, inplace=False) as f:
for line in f:
if regex.search(line):
FirstStrEndPos = regex.search(line).start()
NewStr = line[0:FirstStrEndPos] + str(GenerateGuid()) + line[FirstStrEndPos+GuidStrLength:-1]
Buffer.append(NewStr + "\n")
else:
Buffer.append(line)
TmpFile = open(FilePath, 'w')
for line in Buffer:
TmpFile.write(line)
TmpFile.close()
def DeleteStringFromUniEx(FilePath, KeyWord, KeyWordCount, NumRmLine):
# This function will delete multi line string under KeyWord string by NumRmLine(It's a integer number)
Buffer = []
flag = True
EndFlag = False
Count = 0
with codecs.open(FilePath, encoding='utf-16') as file2:
for line in file2:
if KeyWord in line:
if Count == KeyWordCount:
if not EndFlag:
NumRmLine -= 1
flag = False
#Buffer.append(line)
else:
Buffer.append(line)
else:
Buffer.append(line)
Count += 1
elif NumRmLine == 0:
flag = True
EndFlag = True
Buffer.append(line)
else:
if flag:
Buffer.append(line)
else:
NumRmLine -= 1
with codecs.open(FilePath, 'w', encoding='utf-16') as f:
for line in Buffer:
f.write(line)
def ModifyDecAndHeaderFileGuid(FilePath):
# This function will update GUID in a DEC or Header file
Buffer = []
MiddleStr = ""
regex = re.compile("{.*\w{8}.*\w{4}.*\w{4}.*{.*\w{2}.*\w{2}.*\w{2}.*\w{2}.*\w{2}.*\w{2}.*\w{2}.*\w{2}.*}*}")
GuidBuffer = []
count = 0
with fileinput.FileInput(FilePath, inplace=False) as f:
for line in f:
if regex.search(line):
StartPos = line.find("{")
EndPos = line.rfind("}")
list = str(GenerateGuid()).split("-")
for line2 in list:
if count >= 3:
for Index in range(0, len(line2), 2):
GuidBuffer.append(line2[Index:Index+2])
else:
GuidBuffer.append(line2)
count += 1
FirstStr = line[0:StartPos]
print(FirstStr)
MiddleStr = "{ 0x%s, 0x%s, 0x%s, { 0x%s, 0x%s, 0x%s, 0x%s, 0x%s, 0x%s, 0x%s, 0x%s } }" %(tuple(GuidBuffer))
LastStr = line[StartPos+len(MiddleStr):-1]
Buffer.append(FirstStr+MiddleStr+LastStr+"\n")
else:
Buffer.append(line)
TmpFile = open(FilePath, 'w')
for line in Buffer:
TmpFile.write(line)
TmpFile.close()
def StringAlign(Path, SampleStr, Format):
# This function will make target string align with SampleStr
regex = re.compile(Format)
Buffer = []
Flag = False
Space = " "
Length = 0
Index = 0
NewStr = ""
SplitList = []
for sector in SampleStr.split():
SplitList.append(SampleStr.find(sector))
with open(Path, 'r') as f:
for line in f:
if regex.search(line) and (len(line.split()) == len(SampleStr.split())):
Flag = True
for ArgPos in SplitList:
Length = len(NewStr)
NewStr += Space*(ArgPos - Length) + line.split()[Index]
Index += 1
Buffer.append(NewStr + "\n")
elif regex.search(line) and (not (len(line.split()) == len(SampleStr.split()))):
print("========================== Waring! ==========================")
print("Sample string size(%d) not equal with KeyWord string size(%d)" %(len(SampleStr.split()), len(line.split())))
print("=============================================================")
if not Flag:
Buffer.append(line)
else:
Flag = False
f = open(Path, 'w')
for line in Buffer:
f.write(line)
f.close()
def main():
"""
WorkSpace in here!
"""
# GetFileList(Regex)
#
# File System
#
# GetFileList(Regex):
# DepthSearchFile(Dst):
# RenameFile(Src, Dst)
# CopyFile(Src, Dst):
# MoveFile(Src, Dst):
# DeleteFile(Dst):
# CopyFolder(Src, Dst):
# DeleteFolder(Src):
# CopyFileContent(Src, Dst):
# OverrideFile(SrcFilePathList, DstPathList):
#
# Text Handling
#
# RelplaceString(FilePath, BeforStr, AfterStr)
# InsertStringToFile(FilePath, KeyWord, String)
# InsertStringToFileEx(FilePath, KeyWord, KeyWordCount, ShiftLineNum, SrcFile)
# RelplaceStringToUni(Path, BeforStr, AfterStr)
# InsertStringToUni(Path, KeyWordStr, TargetStr)
# InsertStringToUniEx(Path, KeyWord, SrcFile)
# DeleteStringFromFile(Path, KeyWord)
# DeleteStringFromFileEx(FilePath, KeyWord, KeyWordCount, NumRmLine)
# DeleteStringFromUniEx(FilePath, KeyWord, KeyWordCount, NumRmLine)
# ModifyInfFileGuid(FilePath)
# ModifyDecAndHeaderFileGuid(FilePath)
# StringAlign(Path, SampleStr, Format)
if __name__ == "__main__":
main()