aboutsummaryrefslogtreecommitdiffstats
path: root/mutator_aux.cpp
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-11-30 09:21:11 +0000
committerbloodstalker <thabogre@gmail.com>2016-11-30 09:21:11 +0000
commiteaa3a7da79b0fcad4c0199f1d848b0c7dbfb6fb2 (patch)
tree77e676517f768d2143fc6e3fd190546f1fd4bf57 /mutator_aux.cpp
parenttinyxml2 makefile called by the makefile in the root dir (diff)
downloadmutator-eaa3a7da79b0fcad4c0199f1d848b0c7dbfb6fb2.tar.gz
mutator-eaa3a7da79b0fcad4c0199f1d848b0c7dbfb6fb2.zip
added xml output support for the misra report
Diffstat (limited to '')
-rw-r--r--mutator_aux.cpp56
1 files changed, 56 insertions, 0 deletions
diff --git a/mutator_aux.cpp b/mutator_aux.cpp
index a00ed0d..f4af533 100644
--- a/mutator_aux.cpp
+++ b/mutator_aux.cpp
@@ -4,8 +4,10 @@
#include "clang/AST/AST.h"
#include "mutator_aux.h"
#include "clang/Rewrite/Core/Rewriter.h"
+#include "tinyxml2/tinyxml2.h"
using namespace clang;
+using namespace tinyxml2;
namespace Devi {
/*a simple function that checks the sourcelocations for a macro expansion. returns the sourcelocation without
@@ -40,4 +42,58 @@ SourceLocation SourceLocationHasMacro (SourceLocation SL, Rewriter &Rewrite, std
return (SL);
}
+/*********************************************************************************************************************/
+XMLReport::XMLReport()
+{
+ RootPointer = XMLReportDoc.NewElement("Report");
+}
+
+void XMLReport::XMLCreateReport(void)
+{
+
+ XMLReportDoc.InsertFirstChild(RootPointer);
+}
+
+/*it is the caller's responsibility to make sure the sourcelocation passed to this member function
+contains only the spelling location.*/
+void XMLReport::XMLAddNode(ASTContext* ASTC, SourceLocation SL, std::string MisraRule, std::string Description)
+{
+ FullSourceLoc FSL = ASTC->getFullLoc(SL);
+
+ unsigned LineNumber = FSL.getSpellingLineNumber();
+ unsigned ColumnNumber = FSL.getSpellingColumnNumber();
+
+ const SourceManager& SM = FSL.getManager();
+ std::string FileNameString = SM.getFilename(SL).str();
+
+ XMLElement* MisraElement = XMLReportDoc.NewElement("MisraDiag");
+ MisraElement->SetText(Description.c_str());
+ MisraElement->SetAttribute("Misra-C:2004Rule", MisraRule.c_str());
+ MisraElement->SetAttribute("FileName", FileNameString.c_str());
+ MisraElement->SetAttribute("SpellingLineNumber", LineNumber);
+ MisraElement->SetAttribute("SpellingColumnNumber", ColumnNumber);
+ RootPointer->InsertEndChild(MisraElement);
+
+
+#if 0
+ XMLElement* pElement = XMLReportDoc.NewElement("SourceLocation");
+ pElement->SetText("rule:filename:line:column");
+ pElement->SetAttribute("rule", "17.4");
+ pElement->SetAttribute("filename", "testFuncs2.c");
+ pElement->SetAttribute("line", 67);
+ pElement->SetAttribute("column", 12);
+ RootPointer->InsertEndChild(pElement);
+#endif
+}
+
+void XMLReport::SaveReport(void)
+{
+ XMLError XMLErrorResult = XMLReportDoc.SaveFile("/home/bloodstalker/devi/hell2/test/misrareport.xml");
+
+ if (XMLErrorResult != XML_SUCCESS)
+ {
+ std::cout << "could not write xml misra report." << std::endl;
+ }
+}
+/*********************************************************************************************************************/
} \ No newline at end of file