2015-02-26 15:02:31 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <algorithm>
|
2015-06-01 15:28:29 +00:00
|
|
|
#include "trick/AttributesMap.hh"
|
|
|
|
#include "trick/attributes.h"
|
|
|
|
#include "trick/command_line_protos.h"
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
// Instantiate static variables for template types for ATTRIBUTES * and ENUM_ATTR *
|
|
|
|
namespace Trick {
|
|
|
|
AttributesMap * AttributesMap::pInstance = NULL ;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string & Trick::AttributesMap::replace_special_chars( std::string & str) {
|
|
|
|
|
|
|
|
// escape &
|
|
|
|
size_t index = 0;
|
|
|
|
while (index != std::string::npos) {
|
|
|
|
index = str.find("&" , index) ;
|
|
|
|
if ( index != std::string::npos ) {
|
|
|
|
str.replace(index, 1, "&") ;
|
|
|
|
index += 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// escape "
|
|
|
|
index = 0;
|
|
|
|
while (index != std::string::npos) {
|
|
|
|
index = str.find("\"" , index) ;
|
|
|
|
if ( index != std::string::npos ) {
|
|
|
|
str.replace(index, 1, """) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// escape <
|
|
|
|
index = 0;
|
|
|
|
while (index != std::string::npos) {
|
|
|
|
index = str.find("<" , index) ;
|
|
|
|
if ( index != std::string::npos ) {
|
|
|
|
str.replace(index, 1, "<") ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string & Trick::AttributesMap::type_remove_dims( std::string & type ) {
|
|
|
|
size_t index = type.find_first_of("*[");
|
|
|
|
if (index != std::string::npos) {
|
|
|
|
type.erase(index);
|
|
|
|
}
|
|
|
|
index = type.find_last_not_of(" ");
|
|
|
|
if (index != std::string::npos) {
|
|
|
|
type.erase(index + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return replace_special_chars(type) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Trick::AttributesMap::print_xml(std::ofstream & sie_out ) {
|
|
|
|
std::map<std::string, ATTRIBUTES *>::iterator it ;
|
|
|
|
int jj ;
|
|
|
|
|
|
|
|
for ( it = name_to_attr_map.begin() ; it != name_to_attr_map.end() ; it++ ) {
|
|
|
|
ATTRIBUTES * attr = (*it).second ;
|
|
|
|
std::string class_name = (*it).first;
|
|
|
|
std::replace(class_name.begin(), class_name.end(), ':', '_');
|
2019-05-13 19:31:46 +00:00
|
|
|
sie_out << " <class name=\"" << class_name << "\">\n" ;
|
2015-02-26 15:02:31 +00:00
|
|
|
while ( attr->name[0] != '\0' and (attr->type_name != NULL)) {
|
|
|
|
sie_out << " <member" ;
|
2019-05-13 19:31:46 +00:00
|
|
|
sie_out << "\n name=\"" << attr->name << "\"" ;
|
2015-02-26 15:02:31 +00:00
|
|
|
std::string type_name = attr->type_name;
|
|
|
|
std::replace(type_name.begin(), type_name.end(), ':', '_');
|
2019-05-13 19:31:46 +00:00
|
|
|
sie_out << "\n type=\"" << type_remove_dims(type_name) << "\"" ;
|
|
|
|
sie_out << "\n io_attributes=\"" << attr->io << "\"" ;
|
|
|
|
sie_out << "\n units=\"" ;
|
2016-06-21 21:12:28 +00:00
|
|
|
// If the mods bit is set for using -- as the units
|
|
|
|
if ( attr->mods & TRICK_MODS_UNITSDASHDASH ) {
|
|
|
|
sie_out << "--" ;
|
|
|
|
} else {
|
|
|
|
sie_out << attr->units ;
|
|
|
|
}
|
|
|
|
sie_out << "\"" ;
|
|
|
|
|
2015-02-26 15:02:31 +00:00
|
|
|
std::string description = attr->des;
|
|
|
|
if ( ! description.empty() ) {
|
2019-05-13 19:31:46 +00:00
|
|
|
sie_out << "\n description=\"" << replace_special_chars(description) << "\"" ;
|
2015-02-26 15:02:31 +00:00
|
|
|
}
|
2019-05-13 19:31:46 +00:00
|
|
|
sie_out << ">\n" ;
|
2015-02-26 15:02:31 +00:00
|
|
|
if ( attr->num_index > 0 ) {
|
|
|
|
for (jj = 0; jj < attr->num_index; jj++) {
|
2019-05-13 19:31:46 +00:00
|
|
|
sie_out << " <dimension>" << attr->index[jj].size << "</dimension>\n" ;
|
2015-02-26 15:02:31 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-13 19:31:46 +00:00
|
|
|
sie_out << " </member>\n" ;
|
2015-02-26 15:02:31 +00:00
|
|
|
attr++ ;
|
|
|
|
}
|
2019-05-13 19:31:46 +00:00
|
|
|
sie_out << " </class>\n\n" ;
|
2015-02-26 15:02:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|