Skip to content

Commit 8afaa51

Browse files
committed
coding style: rename parse_int() -> parseInt()
... for consistency. We use camel-case to name our own functions. Closes: https://github.com/kdudka/csdiff/pull/new/parse-int
1 parent 4a17373 commit 8afaa51

5 files changed

+10
-10
lines changed

src/lib/cwe-name-lookup.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ bool CweNameLookup::handleLine(const TStringList &fields)
5353

5454
// parse CWE number
5555
const std::string &cweId = fields[/* CWE */ 0];
56-
const int cwe = parse_int(cweId, -1);
56+
const int cwe = parseInt(cweId, -1);
5757
if (cwe < 0) {
5858
// we use "unmapped" for findings without any CWE assigned
5959
// as discussed in https://github.com/csutils/csdiff/pull/61

src/lib/parser-common.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <boost/algorithm/string/replace.hpp>
2626
#include <boost/lexical_cast.hpp>
2727

28-
int parse_int(const std::string &str, const int fallback)
28+
int parseInt(const std::string &str, const int fallback)
2929
{
3030
try {
3131
return boost::lexical_cast<int>(str);

src/lib/parser-common.hh

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#define RE_EVENT_SIGMA "(?:Sigma (?:main )?event)"
3939
#define RE_EVENT RE_EVENT_GCC "|" RE_EVENT_PROSPECTOR "|" RE_EVENT_SIGMA
4040

41-
int parse_int(const std::string &, int fallback = 0);
41+
int parseInt(const std::string &, int fallback = 0);
4242

4343
class ImpliedAttrDigger {
4444
public:

src/lib/parser-cov.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,10 @@ EToken ErrFileLexer::readNext()
190190
evt_.msg = sm[/* msg */ 5];
191191

192192
// parse line number
193-
evt_.line = parse_int(sm[/* line */ 2]);
193+
evt_.line = parseInt(sm[/* line */ 2]);
194194

195195
// parse column number
196-
evt_.column = parse_int(sm[/* col */ 3]);
196+
evt_.column = parseInt(sm[/* col */ 3]);
197197

198198
return T_EVENT;
199199
}
@@ -479,7 +479,7 @@ void AnnotHandler::handleDef(Defect *pDef)
479479
{
480480
boost::smatch sm;
481481
if (boost::regex_match(pDef->annotation, sm, reCweAnnot_)) {
482-
pDef->cwe = parse_int(sm[/* cwe */ 1]);
482+
pDef->cwe = parseInt(sm[/* cwe */ 1]);
483483
pDef->annotation.clear();
484484
}
485485
}

src/lib/parser-gcc.cc

+4-4
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,10 @@ EToken Tokenizer::readNext(DefEvent *pEvt)
178178
pEvt->fileName = sm["file"];
179179

180180
// parse line number
181-
pEvt->line = parse_int(sm["line"]);
181+
pEvt->line = parseInt(sm["line"]);
182182

183183
// parse column number
184-
pEvt->column = parse_int(sm["col"]);
184+
pEvt->column = parseInt(sm["col"]);
185185

186186
return tok;
187187
}
@@ -467,7 +467,7 @@ bool BasicGccParser::digCppcheckEvt(Defect *pDef)
467467
keyEvt.event += "]";
468468

469469
// store CWE if available
470-
pDef->cwe = parse_int(sm[/* cwe */ 2]);
470+
pDef->cwe = parseInt(sm[/* cwe */ 2]);
471471

472472
// this assignment invalidates sm!
473473
keyEvt.msg = sm[/* msg */ 3];
@@ -628,7 +628,7 @@ void GccPostProcessor::Private::transGccAnal(Defect *pDef) const
628628
if (!boost::regex_match(keyEvt.msg, sm, this->reGccAnalCwe))
629629
return;
630630

631-
pDef->cwe = parse_int(sm[/* cwe */ 2]);
631+
pDef->cwe = parseInt(sm[/* cwe */ 2]);
632632
// this invalidates sm
633633
keyEvt.msg = sm[/* msg */ 1];
634634
}

0 commit comments

Comments
 (0)