mirror of
https://github.com/supleed2/svd2cpp.git
synced 2024-11-09 18:25:47 +00:00
52 lines
1.9 KiB
C++
52 lines
1.9 KiB
C++
#include <iostream>
|
|
#include <cxxopts.hpp>
|
|
#include <XmlParser.hpp>
|
|
#include <ClassBuilder.hpp>
|
|
#include <OutputFile.hpp>
|
|
|
|
int main(int argc, char** argv){
|
|
// Create and configure options for the program
|
|
cxxopts::Options options("svd2cpp", "Parser from svd files to C++ header");
|
|
options.add_options()
|
|
("i, input", "File with .svd extention to be parsed", cxxopts::value<std::string>())
|
|
("o, output", "Output file", cxxopts::value<std::string>())
|
|
("h, help", "Print help");
|
|
|
|
std::string inputFile, outputFile;
|
|
auto result = options.parse(argc, argv);
|
|
try
|
|
{
|
|
if(result.count("help")){
|
|
std::cout << options.help() << std::endl;
|
|
return 0;
|
|
}
|
|
if(result.count("input") != 1){
|
|
std::cout << "Missing input file!" << std::endl;
|
|
return 1;
|
|
}
|
|
if(result.count("output") != 1){
|
|
std::cout << "Missing output file!" << std::endl;
|
|
return 1;
|
|
}
|
|
inputFile = result["input"].as<std::string>();
|
|
outputFile = result["output"].as<std::string>();
|
|
// std::cout << "Input: " << inputFile << "\tOutput: " << outputFile << std::endl;
|
|
}
|
|
catch(cxxopts::OptionException& ex){
|
|
std::cout << ex.what() << std::endl;
|
|
return 2;
|
|
}
|
|
//Try to parse the file
|
|
XmlParser xmlParser(inputFile);
|
|
if (auto err = xmlParser.isError()){
|
|
std::cout << "There was an error while reading " << inputFile << ":" << std::endl << *err << std::endl;
|
|
return 3;
|
|
}
|
|
xmlParser.parseXml();
|
|
ClassBuilder classBuilder(result, xmlParser.getDeviceInfo(), xmlParser.getPeripherals());
|
|
classBuilder.setupBuilders();
|
|
classBuilder.build();
|
|
|
|
OutputFile oFile(outputFile);
|
|
std::cout << (oFile.save(classBuilder.getStream()) ? "Successfuly created " : "Failed to create ") << outputFile << std::endl;
|
|
} |