-
Notifications
You must be signed in to change notification settings - Fork 132
/
duplicate.py
executable file
·399 lines (328 loc) · 11.6 KB
/
duplicate.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
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
#!/usr/bin/python3
# Python shell script for Duplicating IPlug Projects
# Oli Larkin 2012-2019
# License: WTFPL http://sam.zoy.org/wtfpl/COPYING
# Modified from this script by Bibha Tripathi http://code.activestate.com/recipes/435904-sedawk-python-script-to-rename-subdirectories-of-a/
# Author accepts no responsibilty for wiping your hd
# NOTES:
# should work with Python2 or Python3
# not designed to be fool proof- think carefully about what you choose for a project name
# best to stick to standard characters in your project names - avoid spaces, numbers and dots
# windows users need to install python and set it up so you can run it from the command line
# see http://www.voidspace.org.uk/python/articles/command_line.shtml
# this involves adding the python folder e.g. C:\Python27\ to your %PATH% environment variable
# USAGE:
# duplicate.py [inputprojectname] [outputprojectname] [manufacturername] (outputpath)
# TODO:
# - indentation of directory structure
# - variable manufacturer name
from __future__ import generators
import fileinput, glob, string, sys, os, re, uuid, pprint, random
from shutil import copy, copytree, ignore_patterns, rmtree
from os.path import join
scriptpath = os.path.dirname(os.path.realpath(__file__))
sys.path.insert(0, scriptpath + "/iPlug2/Scripts/")
from parse_config import parse_config, parse_xcconfig, set_uniqueid
VERSION = "0.95"
# binary files that we don't want to do find and replace inside
FILTERED_FILE_EXTENSIONS = [
".ico",
".icns",
".pdf",
".png",
".zip",
".exe",
".wav",
".aif",
".data",
".wasm",
"mkcert",
]
FILTERED_FILE_NAMES = [".DS_Store"]
# files that we don't want to duplicate
DONT_COPY = (
".vs",
"*.exe",
"*.dmg",
"*.pkg",
"*.mpkg",
"*.svn",
"*.ncb",
"*.suo",
"*sdf",
"ipch",
"*.layout",
"*.depend",
".DS_Store",
"xcuserdata",
"*.aps",
)
SUBFOLDERS_TO_SEARCH = [
"projects",
"config",
"resources",
"installer",
"scripts",
"manual",
"xcschemes",
"xcshareddata",
"xcuserdata",
"en-osx.lproj",
"project.xcworkspace",
"Images.xcassets",
"build-web",
]
def randomFourChar(chars=string.ascii_letters + string.digits):
return "".join(random.choice(chars) for _ in range(4))
def checkdirname(name, searchproject):
"check if directory name matches with the given pattern"
print("")
if name == searchproject:
return True
else:
return False
def replacestrs(filename, s, r):
files = glob.glob(filename)
for line in fileinput.input(files, inplace=1):
line.find(s)
line = line.replace(s, r)
sys.stdout.write(line)
def replacestrsChop(filename, s, r):
files = glob.glob(filename)
for line in fileinput.input(files, inplace=1):
if line.startswith(s):
line = r + "\n"
sys.stdout.write(line)
def dirwalk(
dir, searchproject, replaceproject, searchman, replaceman, oldroot="", newroot=""
):
for f in os.listdir(dir):
fullpath = os.path.join(dir, f)
if os.path.isdir(fullpath) and not os.path.islink(fullpath):
if checkdirname(f, searchproject + "-macOS.xcodeproj"):
os.rename(
fullpath, os.path.join(dir, replaceproject + "-macOS.xcodeproj")
)
fullpath = os.path.join(dir, replaceproject + "-macOS.xcodeproj")
print("recursing in macOS xcode project directory: ")
for x in dirwalk(
fullpath,
searchproject,
replaceproject,
searchman,
replaceman,
oldroot,
newroot,
):
yield x
elif checkdirname(f, searchproject + "-iOS.xcodeproj"):
os.rename(
fullpath, os.path.join(dir, replaceproject + "-iOS.xcodeproj")
)
fullpath = os.path.join(dir, replaceproject + "-iOS.xcodeproj")
print("recursing in iOS xcode project directory: ")
for x in dirwalk(
fullpath,
searchproject,
replaceproject,
searchman,
replaceman,
oldroot,
newroot,
):
yield x
elif checkdirname(f, searchproject + ".xcworkspace"):
os.rename(fullpath, os.path.join(dir, replaceproject + ".xcworkspace"))
fullpath = os.path.join(dir, replaceproject + ".xcworkspace")
print("recursing in main xcode workspace directory: ")
for x in dirwalk(
fullpath,
searchproject,
replaceproject,
searchman,
replaceman,
oldroot,
newroot,
):
yield x
elif checkdirname(f, searchproject + "-iOS.appiconset"):
os.rename(
fullpath, os.path.join(dir, replaceproject + "-iOS.appiconset")
)
fullpath = os.path.join(dir, replaceproject + "-iOS.appiconset")
print("recursing in -iOS.appiconset directory: ")
elif checkdirname(f, searchproject + "-macOS.appiconset"):
os.rename(
fullpath, os.path.join(dir, replaceproject + "-macOS.appiconset")
)
fullpath = os.path.join(dir, replaceproject + "-macOS.appiconset")
print("recursing in -macOS.appiconset directory: ")
for x in dirwalk(
fullpath,
searchproject,
replaceproject,
searchman,
replaceman,
oldroot,
newroot,
):
yield x
elif f in SUBFOLDERS_TO_SEARCH:
print("recursing in " + f + " directory: ")
for x in dirwalk(
fullpath,
searchproject,
replaceproject,
searchman,
replaceman,
oldroot,
newroot,
):
yield x
if os.path.isfile(fullpath):
filename = os.path.basename(fullpath)
newfilename = filename.replace(searchproject, replaceproject)
base, extension = os.path.splitext(filename)
if not (extension in FILTERED_FILE_EXTENSIONS) and not (
filename in FILTERED_FILE_NAMES
):
print("Replacing project name strings in file " + filename)
replacestrs(fullpath, searchproject, replaceproject)
print("Replacing captitalized project name strings in file " + filename)
replacestrs(fullpath, searchproject.upper(), replaceproject.upper())
print("Replacing manufacturer name strings in file " + filename)
replacestrs(fullpath, searchman, replaceman)
if oldroot and newroot:
print("Replacing iPlug2 root folder in file " + filename)
replacestrs(fullpath, oldroot, newroot)
replacestrs(
fullpath, oldroot.replace("/", "\\"), newroot.replace("/", "\\")
)
else:
print("NOT replacing name strings in file " + filename)
if filename != newfilename:
print("Renaming file " + filename + " to " + newfilename)
os.rename(fullpath, os.path.join(dir, newfilename))
yield f, fullpath
else:
yield f, fullpath
def main():
global VERSION
print(
"\nIPlug Project Duplicator v"
+ VERSION
+ " by Oli Larkin ------------------------------\n"
)
numargs = len(sys.argv) - 1
if not (numargs == 3 or numargs == 4):
print(
"Usage: duplicate.py inputprojectname outputprojectname manufacturername (outputprojectpath)"
)
sys.exit(1)
else:
inputprojectname = sys.argv[1]
outputprojectname = sys.argv[2]
manufacturer = sys.argv[3]
if numargs == 4:
outputbasepath = os.path.abspath(sys.argv[4])
else:
outputbasepath = os.getcwd()
if not (os.path.isdir(outputbasepath)):
print("error: Output path does not exist")
sys.exit(1)
outputpath = os.path.join(outputbasepath, outputprojectname)
if " " in inputprojectname:
print("error: input project name has spaces")
sys.exit(1)
if inputprojectname not in os.listdir(os.curdir):
print(
"error: input project "
+ inputprojectname
+ " doesn't exist, check spelling/case?"
)
sys.exit(1)
if " " in outputprojectname:
print("error: output project name has spaces")
sys.exit(1)
if " " in manufacturer:
print("error: manufacturer name has spaces")
sys.exit(1)
# remove a trailing slash if it exists
if inputprojectname[-1:] == "/":
inputprojectname = inputprojectname[0:-1]
if outputprojectname[-1:] == "/":
outputprojectname = outputprojectname[0:-1]
# check that the folders are OK
if os.path.isdir(inputprojectname) == False:
print("error: input project not found")
sys.exit(1)
if os.path.isdir(outputpath):
print("error: output project allready exists")
sys.exit(1)
# rmtree(output)
print("copying " + inputprojectname + " folder to " + outputpath)
copytree(inputprojectname, outputpath, ignore=ignore_patterns(*DONT_COPY))
oldroot = ""
newroot = ""
if numargs == 4:
configpath = os.path.join(inputprojectname, "config")
xcconfig = parse_xcconfig(configpath + "/" + inputprojectname + "-mac.xcconfig")
oldroot = xcconfig["IPLUG2_ROOT"]
iplug2folder = os.path.abspath(os.path.join(configpath, oldroot))
newroot = os.path.relpath(iplug2folder, os.path.join(outputpath, "config"))
else:
newroot = ""
# replace manufacturer name strings
for dir in dirwalk(
outputpath,
inputprojectname,
outputprojectname,
"AcmeInc",
manufacturer,
oldroot,
newroot,
):
pass
# replace project name in root
for dir in dirwalk(
scriptpath,
inputprojectname,
outputprojectname,
"AcmeInc",
manufacturer,
oldroot,
newroot,
):
pass
# replace project name in github
for dir in dirwalk(
scriptpath + "/.github/workflows",
inputprojectname,
outputprojectname,
"AcmeInc",
manufacturer,
oldroot,
newroot,
):
pass
# replace project name in vscode
for dir in dirwalk(
scriptpath + "/.vscode",
inputprojectname,
outputprojectname,
"AcmeInc",
manufacturer,
oldroot,
newroot,
):
pass
# print("\ncopying gitignore template into project folder\n")
# copy('gitignore_template', outputpath + "/.gitignore")
config = parse_config(outputpath)
config["PLUG_UNIQUE_ID"] = randomFourChar()
set_uniqueid(outputpath, config["PLUG_UNIQUE_ID"])
pp = pprint.PrettyPrinter(indent=4)
pp.pprint(config)
print("\ndone - don't forget to change PLUG_MFR_UID in config.h")
if __name__ == "__main__":
main()