-
Notifications
You must be signed in to change notification settings - Fork 183
/
rename_analyzer.py
79 lines (60 loc) · 2.46 KB
/
rename_analyzer.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
import os
import glob
import sys
# Fix Python 2.x.
try:
input = raw_input
except NameError: pass
print("")
print("")
print("What would you like to call your new analyzer?")
print("")
print(">>The files under '/src' will be modified to use it.")
print(">>Examples include Serial, MySerial, JoesSerial, Gamecube, Wiimote, 2Wire, etc.")
print(">>Do not include the trailing word 'Analyzer' this will be added automatically.")
print("")
print("(press CTRL-C to cancel)")
print("")
new_analyzer_name = input( "Your new analyzer name: " )
print("")
print("")
print("What is the analyzer's title? (as shown in the add new analyzer drop down)")
print("")
print(">>Examples include Async Serial, I2C, Joe's Serial, Gamecube, Wiimote, 2Wire, etc.")
print("")
print("(press CTRL-C to cancel)")
print("")
new_analyzer_title = input( "Your new analyzer's title: " )
original_name = "SimpleSerial"
#update the CMakeLists.txt project name
cmake_file = glob.glob("CMakeLists.txt")
for file in cmake_file:
contents = open( file, 'r' ).read()
contents = contents.replace( original_name + "Analyzer", new_analyzer_name + "Analyzer" )
contents = contents.replace( original_name.upper() + "ANALYZER", new_analyzer_name.upper() + "ANALYZER" )
contents = contents.replace( original_name + "SimulationDataGenerator", new_analyzer_name + "SimulationDataGenerator" )
open( file, 'w' ).write( contents )
source_path = "src"
os.chdir( source_path )
files = dict()
cpp_files = glob.glob( "*.cpp" );
h_files = glob.glob( "*.h" );
for file in cpp_files:
files[file] = ".cpp"
for file in h_files:
files[ file ] = ".h"
new_files = []
for file, extension in files.items():
name_root = file.replace( original_name, "" )
new_name = new_analyzer_name + name_root
#print "renaming file " + file + " to " + new_name
os.rename( file, new_name )
new_files.append( new_name )
for file in new_files:
contents = open( file, 'r' ).read()
contents = contents.replace( original_name + "Analyzer", new_analyzer_name + "Analyzer" )
contents = contents.replace( original_name.upper() + "_ANALYZER_", new_analyzer_name.upper() + "_ANALYZER_" )
contents = contents.replace( original_name.upper() + "_SIMULATION_DATA_GENERATOR", new_analyzer_name.upper() + "_SIMULATION_DATA_GENERATOR" )
contents = contents.replace( original_name + "SimulationDataGenerator", new_analyzer_name + "SimulationDataGenerator" )
contents = contents.replace( "Simple Serial", new_analyzer_title )
open( file, 'w' ).write( contents )