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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
/***************************************************************************
xmlloads.cpp - description
-------------------
begin : mar mar 4 2003
copyright : (C) 2003 by Emmanuel Promayon
email : Emmanuel.Promayon@imag.fr
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
// XML
/*#include <xercesc/util/PlatformUtils.hpp>
#include <xercesc/util/TransService.hpp>
#include <xercesc/sax2/XMLReaderFactory.hpp>
#include <xercesc/sax2/SAX2XMLReader.hpp>
*/
#include "XMLLoads.h"
#include "Translation.h"
#include "TranslationUnit.h"
#include "Rotation.h"
#include "Force.h"
#include "ForceUnit.h"
#include "Pressure.h"
#include "RotationUnit.h"
#include "PressureUnit.h"
//---------------------- constructor --------------------
XMLLoads::XMLLoads() {
l = NULL;
}
XMLLoads::XMLLoads(std::string fileName) : l(NULL) {
xmlRead(fileName);
}
XMLLoads::XMLLoads(std::string fileName, Loads * allLoads) : l(allLoads){
xmlRead(fileName);
}
//---------------------- destructor --------------------
XMLLoads::~XMLLoads() {
}
//---------------------- getLoads --------------------
Loads * XMLLoads::getLoads() {
return l;
}
//---------------------- addLoad --------------------
void XMLLoads::addLoad(Load *load) {
if (!l)
l = new Loads(); // create empty list
l->addLoad(load);
}
//---------------------- xmlRead --------------------
void XMLLoads::xmlRead(std::string fileName) {
xmlFile = fileName.c_str();
// the resulting document tree
xmlDocPtr doc;
//the pointer to the root node of the document
xmlNodePtr root;
doc = xmlParseFile(xmlFile);
if (doc == NULL) {
std::cerr << "Failed to open " << xmlFile << std::endl;
return ;
}
root = xmlDocGetRootElement(doc);
if (root == NULL) {
std::cerr << "empty document" << std::endl;
xmlFreeDoc(doc);
return ;
}
//read the xml tree root, verify if it is a loads elemnt
if (xmlStrcmp(root->name,(const xmlChar*)"loads")){
std::cerr << "failed to read the xml tree" << std::endl;
xmlFreeDoc(doc);
return ;
}
//parse the rest of the xml tree
for (xmlNodePtr child = root->xmlChildrenNode; child != NULL; child = child->next)
{
if (!xmlStrcmp(child->name,(const xmlChar*)"load"))
if (!parseElement(child))
std::cerr << "failed to read xml element" << std::endl;
}
//free the xml
xmlFreeDoc(doc);
xmlCleanupParser();
xmlMemoryDump();
}
// ------------------ parse Element ------------------
bool XMLLoads::parseElement(xmlNodePtr elem)
{
Load * currentL;
//get the type of load
xmlChar *ptype = xmlGetProp(elem, (const xmlChar*) "type");
if(ptype)
{
//create a new instance switch the type
if (!xmlStrcmp(ptype,(const xmlChar*)"Translation"))
currentL = new Translation();
else if(!xmlStrcmp(ptype,(const xmlChar*)"Rotation"))
currentL = new Rotation();
else if(!xmlStrcmp(ptype,(const xmlChar*)"Force"))
currentL = new Force();
else
currentL = new Pressure();
//parse th load children to get its properties
for (xmlNodePtr child = elem->xmlChildrenNode; child != NULL; child = child->next)
{
if (!xmlStrcmp(child->name,(const xmlChar*)"appliedTo"))
readLoadAppliedTo(child, currentL);
if (!xmlStrcmp(child->name,(const xmlChar*)"valueEvent"))
readLoadValueEvent(child, currentL);
if (!xmlStrcmp(child->name,(const xmlChar*)"direction"))
readLoadDirection(child, currentL);
if (!xmlStrcmp(child->name,(const xmlChar*)"unit"))
readLoadUnit(child, currentL);
}
this->addLoad(currentL);
return true;
}
else
return false;
}
// ------------------ readLoadAppliedTo ------------------
void XMLLoads::readLoadAppliedTo(xmlNodePtr elem, Load *currentLoad)
{
xmlChar * pData = xmlNodeGetContent(elem);
if (pData)
currentLoad->addTarget(std::string((char*)pData));
}
// ------------------ readLoadValueEvent ------------------
void XMLLoads::readLoadValueEvent(xmlNodePtr elem, Load *currentLoad)
{
double value=0.0, date=0.0;
xmlChar * pDate = xmlGetProp(elem, (const xmlChar*)"date");
if(pDate)
date = atof((const char*)pDate);
xmlChar * pValue = xmlGetProp(elem, (const xmlChar*)"value");
if(pValue)
value = atof((const char*)pValue);
if(pDate && pValue)
currentLoad->addEvent(new ValueEvent(value, date));
}
// ------------------ readLoadDirection ------------------
void XMLLoads::readLoadDirection(xmlNodePtr elem, Load *currentLoad)
{
Direction dir;
xmlChar * px = xmlGetProp(elem, (const xmlChar*)"x");
if(px){
if (!xmlStrcmp(px,(const xmlChar*)"NULL"))
dir.setNullX();
else
dir.setX(atof((char *) px));
}
xmlChar * py = xmlGetProp(elem, (const xmlChar*)"y");
if(py){
if (!xmlStrcmp(py,(const xmlChar*)"NULL"))
dir.setNullY();
else
dir.setY(atof((char *) py));
}
xmlChar * pz = xmlGetProp(elem, (const xmlChar*)"z");
if(pz){
if (!xmlStrcmp(pz,(const xmlChar*)"NULL"))
dir.setNullZ();
else
dir.setZ(atof((char *) pz));
}
if(px && py && pz)
currentLoad->setDirection(dir);
}
// ------------------ readLoadUnit ------------------
void XMLLoads::readLoadUnit(xmlNodePtr elem, Load *currentLoad)
{
xmlChar * pData = xmlNodeGetContent(elem);
if (currentLoad->getType() == "Translation") {
//unit de type TranslationUnit
if (!xmlStrcmp(pData,(const xmlChar*)"mm")) {
currentLoad->setUnit(TranslationUnit::MM);
}
else if (!xmlStrcmp(pData,(const xmlChar*)"microm")) {
currentLoad->setUnit(TranslationUnit::MICRO_M);
}
else if (!xmlStrcmp(pData,(const xmlChar*)"nm")) {
currentLoad->setUnit(TranslationUnit::NM);
}
}
else
if (currentLoad->getType() == "Force") {
if (!xmlStrcmp(pData,(const xmlChar*)"N")) {
currentLoad->setUnit(ForceUnit::N);
}
else if (!xmlStrcmp(pData,(const xmlChar*)"kN")) {
currentLoad->setUnit(ForceUnit::KN);
}
else if (!xmlStrcmp(pData,(const xmlChar*)"pN")) {
currentLoad->setUnit(ForceUnit::PN);
}
}
else
if (currentLoad->getType() == "Pressure") {
if (!xmlStrcmp(pData,(const xmlChar*)"kPa")) {
currentLoad->setUnit(PressureUnit::KPA);
}
else if (!xmlStrcmp(pData,(const xmlChar*)"mmHg")) {
currentLoad->setUnit(PressureUnit::MMHG);
}
}
else
if (currentLoad->getType() == "Rotation") {
if (!xmlStrcmp(pData,(const xmlChar*)"radians")) {
currentLoad->setUnit(RotationUnit::RAD);
}
else if (!xmlStrcmp(pData,(const xmlChar*)"degrees")) {
currentLoad->setUnit(RotationUnit::DEG);
}
}
}
|