diff options
| -rw-r--r-- | mutator_aux.cpp | 225 | 
1 files changed, 1 insertions, 224 deletions
| diff --git a/mutator_aux.cpp b/mutator_aux.cpp index b195403..9153004 100644 --- a/mutator_aux.cpp +++ b/mutator_aux.cpp @@ -32,8 +32,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.*  #include "json/json.hpp"  /*********************************************************************************************************************/  using namespace clang; -using namespace tinyxml2; -using json = nlohmann::json;  /*********************************************************************************************************************/  namespace Devi {  /*a simple function that checks the sourcelocations for a macro expansion. returns the sourcelocation without @@ -175,229 +173,8 @@ bool IsTheMatchInMainFile(bool MainFileFlag, bool MainFile)    }  }  /*********************************************************************************************************************/ -/*********************************************************************************************************************/ -/******************************************************XMLReport******************************************************/ -XMLReport::XMLReport() -{ -  RootPointer = XMLReportDoc.NewElement("mutator:Report"); -#if 1 -  RootPointer->SetAttribute("xmlns:mutator", "http://www.w3.org/2001/XMLSchema"); -#endif -} - -void XMLReport::XMLCreateReport() -{ -  XMLReportDoc.InsertFirstChild(RootPointer); -} - -/*it is the caller's responsibility to make sure the sourcelocation passed to this overload of the member function -contains only the spelling location.*/ -void XMLReport::XMLAddNode(ASTContext* ASTC, SourceLocation SL, std::string MisraRule, std::string Description) -{ -  //assert(SL.isValid() && "SourceLocation passed as function parameter in an overload(1) of XMLAddNode is not valid."); - -  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); -} - -void XMLReport::XMLAddNode(FullSourceLoc FullSrcLoc, SourceLocation SL, std::string MisraRule, std::string Description) -{ -  //assert(SL.isValid() && "SourceLocation passed as function parameter in an overload(2) of XMLAddNode is not valid."); - -  unsigned LineNumber = FullSrcLoc.getSpellingLineNumber(); -  unsigned ColumnNumber = FullSrcLoc.getSpellingColumnNumber(); - -  const SourceManager& SM = FullSrcLoc.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); -} - -void XMLReport::XMLAddNode(const SourceManager &SM, SourceLocation SL, std::string MisraRule, std::string Description) -{ -  SL = SM.getSpellingLoc(SL); - -  //assert(SL.isValid() && "SourceLocation Acquired by SourceManager in an overload(3) of XMLAddNode is not valid."); - -  unsigned LineNumber = SM.getSpellingLineNumber(SL); -  unsigned ColumnNumber = SM.getSpellingColumnNumber(SL); - -  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); -} - -void XMLReport::XMLAddNode(std::string FilePath, std::string MisraRule, std::string Description) -{ -  //assert(SL.isValid() && "SourceLocation Acquired by SourceManager in an overload(3) of XMLAddNode is not valid."); - -  XMLElement* MisraElement = XMLReportDoc.NewElement("MisraDiag"); -  MisraElement->SetText(Description.c_str()); -  MisraElement->SetAttribute("Misra-C-2004Rule", MisraRule.c_str()); -  MisraElement->SetAttribute("FileName", FilePath.c_str()); -  RootPointer->InsertEndChild(MisraElement); -} - -void XMLReport::XMLAddNode(unsigned Line, unsigned Column, std::string FileName, std::string MisraRule, std::string Description) -{ -  //assert(SL.isValid() && "SourceLocation Acquired by SourceManager in an overload(3) of XMLAddNode is not valid."); - -  XMLElement* MisraElement = XMLReportDoc.NewElement("MisraDiag"); -  MisraElement->SetText(Description.c_str()); -  MisraElement->SetAttribute("Misra-C-2004Rule", MisraRule.c_str()); -  MisraElement->SetAttribute("FileName", FileName.c_str()); -  MisraElement->SetAttribute("SpellingLineNumber", Line); -  MisraElement->SetAttribute("SpellingColumnNumber", Column); -  RootPointer->InsertEndChild(MisraElement); -} - -void XMLReport::SaveReport(void) -{ -  XMLError XMLErrorResult = XMLReportDoc.SaveFile("./test/misrareport.xml"); - -  if (XMLErrorResult != XML_SUCCESS) -  { -    std::cout << "could not write xml misra report." << std::endl; -  } -} -/***************************************************End of XMLReport**************************************************/ -/*********************************************************************************************************************/ -/*****************************************************JSONReport******************************************************/ -JSONReport::JSONReport() {} - -void JSONReport::JSONCreateReport(void) -{ -  JSONRepFile.open("./test/misrareport.json", std::ios::out); -} - -void JSONReport::JSONAddElement(ASTContext* ASTC, SourceLocation SL, std::string MisraRule, std::string Description) -{ -  //assert(SL.isValid() && "SourceLocation passed as function parameter in an overload(1) of JSONAddElement is not valid."); - -  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(); - -  json RepJ; - -  RepJ["MisraDiag"]["Description"] = Description.c_str(); -  RepJ["MisraDiag"]["Misra-C-2004Rule"] = MisraRule.c_str(); -  RepJ["MisraDiag"]["FileName"] = FileNameString.c_str(); -  RepJ["MisraDiag"]["SpellingLineNumber"] = LineNumber; -  RepJ["MisraDiag"]["SpellingColumnNumber"] = ColumnNumber; - -  JSONRepFile << RepJ << std::endl; -} - -void JSONReport::JSONAddElement(FullSourceLoc FullSrcLoc, SourceLocation SL, std::string MisraRule, std::string Description) -{ -  //assert(SL.isValid() && "SourceLocation passed as function parameter in an overload(2) of XMLAddNode is not valid."); - -  unsigned LineNumber = FullSrcLoc.getSpellingLineNumber(); -  unsigned ColumnNumber = FullSrcLoc.getSpellingColumnNumber(); - -  const SourceManager& SM = FullSrcLoc.getManager(); -  std::string FileNameString = SM.getFilename(SL).str(); - -  json RepJ; - -  RepJ["MisraDiag"]["Description"] = Description.c_str(); -  RepJ["MisraDiag"]["Misra-C-2004Rule"] = MisraRule.c_str(); -  RepJ["MisraDiag"]["FileName"] = FileNameString.c_str(); -  RepJ["MisraDiag"]["SpellingLineNumber"] = LineNumber; -  RepJ["MisraDiag"]["SpellingColumnNumber"] = ColumnNumber; - -  JSONRepFile << RepJ << std::endl; -} - -void JSONReport::JSONAddElement(const SourceManager &SM, SourceLocation SL, std::string MisraRule, std::string Description) -{ -  SL = SM.getSpellingLoc(SL); - -  //assert(SL.isValid() && "SourceLocation Acquired by SourceManager in an overload(3) of XMLAddNode is not valid."); - -  unsigned LineNumber = SM.getSpellingLineNumber(SL); -  unsigned ColumnNumber = SM.getSpellingColumnNumber(SL); - -  std::string FileNameString = SM.getFilename(SL).str(); - -  json RepJ; - -  RepJ["MisraDiag"]["Description"] = Description.c_str(); -  RepJ["MisraDiag"]["Misra-C-2004Rule"] = MisraRule.c_str(); -  RepJ["MisraDiag"]["FileName"] = FileNameString.c_str(); -  RepJ["MisraDiag"]["SpellingLineNumber"] = LineNumber; -  RepJ["MisraDiag"]["SpellingColumnNumber"] = ColumnNumber; - -  JSONRepFile << RepJ << std::endl; -} - -void JSONReport::JSONAddElement(std::string FilePath, std::string MisraRule, std::string Description) -{ -  //assert(SL.isValid() && "SourceLocation Acquired by SourceManager in an overload(3) of XMLAddNode is not valid."); - -  json RepJ; - -  RepJ["MisraDiag"]["Description"] = Description.c_str(); -  RepJ["MisraDiag"]["Misra-C-2004Rule"] = MisraRule.c_str(); -  RepJ["MisraDiag"]["FileName"] = FilePath.c_str(); - - -  JSONRepFile << RepJ << std::endl; -} - -void JSONReport::JSONAddElement(unsigned Line, unsigned Column, std::string FileName, std::string MisraRule, std::string Description) -{ -  //assert(SL.isValid() && "SourceLocation Acquired by SourceManager in an overload(3) of XMLAddNode is not valid."); - -  json RepJ; - -  RepJ["MisraDiag"]["Description"] = Description.c_str(); -  RepJ["MisraDiag"]["Misra-C-2004Rule"] = MisraRule.c_str(); -  RepJ["MisraDiag"]["FileName"] = FileName.c_str(); -  RepJ["MisraDiag"]["SpellingLineNumber"] = Line; -  RepJ["MisraDiag"]["SpellingColumnNumber"] = Column; - -  JSONRepFile << RepJ << std::endl; -} - -void JSONReport::CloseReport(void) -{ -  JSONRepFile.close(); -} -/*********************************************************************************************************************/ -/****************************************************End Of JSONReport************************************************/ -/*********************************************************************************************************************/  /*End of namespace Devi*/  }  /*********************************************************************************************************************/  /*last line intentionally left blank.*/ + | 
