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
|
/*=========================================================================
Program: KWStyle - Kitware Style Checker
Module: kwsCheckNamespace.cxx
Copyright (c) Kitware, Inc. All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "kwsParser.h"
namespace kws {
/** Find the name space
* using namespace is prohibited for this parser
* We look if the closing bracket is at the end of the file, if yes we accept otherwise we reject*/
bool Parser::CheckNamespace(const char* name,bool doNotCheckMain)
{
// If there is a 'int main' keyword in the file we do not check
// Or if there is not keyword class
if(doNotCheckMain)
{
if( (m_BufferNoComment.find("main ",0) != std::string::npos)
|| (m_BufferNoComment.find("class ",0) == std::string::npos)
)
{
return false;
}
}
m_TestsDone[NAMESPACE] = true;
char* val = new char[255];
sprintf(val,"The first namespace of the file should match %s",name);
m_TestsDescription[NAMESPACE] = val;
delete [] val;
std::string nameSpace = "";
size_t pos = m_BufferNoComment.find("namespace",0);
if(pos == std::string::npos)
{
Error error;
error.line = this->GetLineNumber(0,true);
error.line2 = error.line;
error.number = NAMESPACE;
error.description = "namespace not defined";
m_ErrorList.push_back(error);
return false;
}
// check that the word is not using namespace
bool ok = true;
if(this->FindPreviousWord(pos) == "using")
{
ok = false;
}
if(ok)
{
std::string names = name;
// extract the namespace
std::string nspace = this->FindNextWord(pos);
if(nspace != names)
{
Error error;
error.line = this->GetLineNumber(pos,true);
error.line2 = error.line;
error.number = NAMESPACE;
error.description = "namespace is wrong";
m_ErrorList.push_back(error);
return false;
}
}
/*
// Now search if we have other namespaces
while(pos!= std::string::npos && ok)
{
pos = buffer.find("namespace",pos+1);
// check that the word is not using namespace
use = buffer.find("using",pos-20);
ok = true;
if((use!=-1 && pos-use<20) || (pos == -1))
{
ok = false;
}
if(ok)
{
// extract the namespace
long int bracket = buffer.find("{",pos);
long int closing = FindClosingBracket(buffer,bracket);
// Find the number of } after closing
int num = 0;
int close = closing+1;
while(buffer.find("}",close) != -1)
{
num++;
close=buffer.find("}",close);
close++;
}
if(bracket != -1 && bracket-pos-10<10 && num==nNameSpace)
{
std::string name = buffer.substr(pos+10,bracket-pos-10);
RemoveCtrlN(name);
RemoveChar(name,' ');
RemoveCtrlN(name);
nameSpace += "::";
nameSpace += name;
nNameSpace++;
}
}
}
*/
return true;
}
} // end namespace kws
|