Files
LLA_TLC59731/rename_analyzer.py
Marcus10110 eee4eebb2d replaced the build system with cmake, and removed the old submodules.
updated the readme
updated the rename script
2022-02-16 17:28:33 -08:00

79 lines
2.5 KiB
Python

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 inclide 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 )