-
Notifications
You must be signed in to change notification settings - Fork 30
/
kwsCheckExtraSpaces.cxx
99 lines (87 loc) · 2.68 KB
/
kwsCheckExtraSpaces.cxx
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
/*=========================================================================
Program: KWStyle - Kitware Style Checker
Module: kwsCheckExtraSpaces.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 {
/** Check the number of space between the end of the declaration
* and the end of the file */
bool Parser::CheckExtraSpaces(unsigned long max,bool checkEmptyLines)
{
m_TestsDone[SPACES] = true;
constexpr size_t length = 255;
char* val = new char[length];
snprintf(val,length,"Spaces at the end of line = %ld max spaces",max);
m_TestsDescription[SPACES] = val;
delete [] val;
bool hasError = false;
auto posEndOfLine = static_cast<long int>(m_Buffer.find("\r\n", 0));
while(posEndOfLine != -1)
{
bool checking = true;
if(!checkEmptyLines)
{
// Check if the line is empty
long pos = posEndOfLine-1;
bool empty = true;
while(pos>0 && m_Buffer[pos]!='\n')
{
if(m_Buffer[pos] != ' ')
{
empty = false;
break;
}
pos--;
}
if(empty)
{
checking = false;
}
}
if(checking)
{
// We try to find the word before that
long i=posEndOfLine-1;
unsigned long space = 0;
while(i>=0)
{
if(m_Buffer[i] == ' ')
{
space++;
if(space > max)
{
Error error;
error.line = this->GetLineNumber(posEndOfLine);
error.line2 = error.line;
error.number = SPACES;
error.description = "Number of spaces before end of line exceed: ";
constexpr size_t length = 21;
char localval[length];
snprintf(localval,length,"%ld",space);
error.description += localval;
error.description += " (max=";
snprintf(localval,length,"%ld",max);
error.description += localval;
error.description += ")";
m_ErrorList.push_back(error);
hasError = true;
break; // avoid multiple error line
}
}
else
{
break;
}
i--;
}
}
posEndOfLine = static_cast<long int>(m_Buffer.find("\r\n",posEndOfLine+1));
}
return !hasError;
}
} // end namespace kws