Last active
April 16, 2019 12:46
-
-
Save ElectricCoffee/de56ccb4fb3bba1bcb7cd3ce3172b54a to your computer and use it in GitHub Desktop.
tool for generating cpp and hpp files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/ruby | |
# Somewhat counter-intuitively, Ruby's ARGV doesn't include the file name, | |
# so the vector is 1 shorter than normal. | |
# Typically writing ./mkcpp.rb foo would give a vector like ARGV = ["mkcpp.rb", "foo"], but not here. | |
if ARGV.length < 1 then | |
puts "Please provide a sufficient number of arguments" | |
exit | |
end | |
if ARGV[0].eql?("-h") || ARGV[0].eql?("--help") then | |
puts "mkcpp.rb is a tool for generating C++ files with their associated headers" | |
puts "The .cpp files already include the header, and the .hpp files come complete with #ifndef clauses" | |
puts "\nTo use the tool type mkcpp [filename]" | |
exit | |
end | |
# Acquire file name | |
filename = ARGV[0] | |
# Check if file has spaces in its name | |
if filename.include? ' ' then | |
puts "'#{filename}' contains spaces, replacing them with underscores." | |
filename.sub! /\s/, '_' | |
end | |
headername = filename.upcase + "_HPP" | |
# write CPP file | |
File.open("./#{filename}.cpp", "w+") do |file| | |
puts "Writing #{filename}.cpp..." | |
file.write "#include \"#{filename}.h\"\n" | |
end | |
# write HPP file | |
File.open("./#{filename}.hpp", "w+") do |file| | |
puts "Writing #{filename}.hpp..." | |
file.write "#ifndef #{headername}\n" | |
file.write "#define #{headername}\n" | |
file.write "\n// Your code goes here\n\n" | |
file.write "#endif\n" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment