2015-06-20 22:26:51 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2019-09-01 11:49:43 +02:00
|
|
|
* Copyright (C) 2007-2019 Cppcheck team.
|
2015-06-20 22:26:51 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef utilsH
|
|
|
|
#define utilsH
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2015-11-29 13:23:13 +01:00
|
|
|
#include <algorithm>
|
2017-09-30 12:45:25 +02:00
|
|
|
#include <cctype>
|
2017-05-27 04:33:47 +02:00
|
|
|
#include <cstddef>
|
|
|
|
#include <string>
|
2015-11-29 13:23:13 +01:00
|
|
|
|
2017-04-02 09:26:14 +02:00
|
|
|
inline bool endsWith(const std::string &str, char c)
|
|
|
|
{
|
2018-03-29 17:37:06 +02:00
|
|
|
return str[str.size()-1U] == c;
|
2017-04-01 18:14:18 +02:00
|
|
|
}
|
|
|
|
|
2018-07-25 16:14:43 +02:00
|
|
|
inline bool endsWith(const std::string &str, const char end[], std::size_t endlen)
|
2017-04-23 10:17:35 +02:00
|
|
|
{
|
2018-07-25 16:14:43 +02:00
|
|
|
return (str.size() >= endlen) && (str.compare(str.size()-endlen, endlen, end)==0);
|
2017-04-23 10:17:35 +02:00
|
|
|
}
|
|
|
|
|
2017-05-23 14:58:43 +02:00
|
|
|
inline static const char *getOrdinalText(int i)
|
|
|
|
{
|
|
|
|
if (i == 1)
|
|
|
|
return "st";
|
|
|
|
if (i == 2)
|
|
|
|
return "nd";
|
|
|
|
if (i == 3)
|
|
|
|
return "rd";
|
|
|
|
return "th";
|
|
|
|
}
|
|
|
|
|
2017-09-30 11:25:46 +02:00
|
|
|
inline static int caseInsensitiveStringCompare(const std::string &lhs, const std::string &rhs)
|
|
|
|
{
|
|
|
|
if (lhs.size() != rhs.size())
|
2017-09-30 23:05:42 +02:00
|
|
|
return (lhs.size() < rhs.size()) ? -1 : 1;
|
2017-09-30 11:25:46 +02:00
|
|
|
for (unsigned int i = 0; i < lhs.size(); ++i) {
|
2017-10-01 14:24:37 +02:00
|
|
|
const int c1 = std::toupper(lhs[i]);
|
|
|
|
const int c2 = std::toupper(rhs[i]);
|
2017-09-30 11:25:46 +02:00
|
|
|
if (c1 != c2)
|
2017-09-30 23:05:42 +02:00
|
|
|
return (c1 < c2) ? -1 : 1;
|
2017-09-30 11:25:46 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-25 00:19:27 +02:00
|
|
|
#define UNUSED(x) (void)(x)
|
|
|
|
|
2019-07-14 11:40:44 +02:00
|
|
|
// Use the nonneg macro when you want to assert that a variable/argument is not negative
|
2019-07-24 15:08:04 +02:00
|
|
|
#ifdef __CPPCHECK__
|
|
|
|
#define nonneg __cppcheck_low__(0)
|
|
|
|
#elif defined(NONNEG)
|
2019-07-14 11:40:44 +02:00
|
|
|
// Enable non-negative values checking
|
|
|
|
// TODO : investigate using annotations/contracts for stronger value checking
|
|
|
|
#define nonneg unsigned
|
|
|
|
#else
|
|
|
|
// Disable non-negative values checking
|
|
|
|
#define nonneg
|
|
|
|
#endif
|
|
|
|
|
2019-07-24 09:57:53 +02:00
|
|
|
#if defined(__has_feature)
|
|
|
|
#if __has_feature(address_sanitizer)
|
|
|
|
#define ASAN 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ASAN
|
|
|
|
#ifdef __SANITIZE_ADDRESS__
|
|
|
|
#define ASAN 1
|
|
|
|
#else
|
|
|
|
#define ASAN 0
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2015-06-20 22:26:51 +02:00
|
|
|
#endif
|