Files
OpenSTA/include/sta/StringUtil.hh
T

211 lines
4.5 KiB
C++
Raw Normal View History

2018-09-28 08:54:21 -07:00
// OpenSTA, Static Timing Analyzer
2025-01-21 18:54:33 -07:00
// Copyright (c) 2025, Parallax Software, Inc.
2018-09-28 08:54:21 -07: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
2022-01-04 10:17:08 -07:00
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2018-09-28 08:54:21 -07:00
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
2022-01-04 10:17:08 -07:00
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2025-01-21 18:54:33 -07:00
//
// The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software.
//
// Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
//
// This notice may not be removed or altered from any source distribution.
2018-09-28 08:54:21 -07:00
2020-02-15 17:13:16 -07:00
#pragma once
2018-09-28 08:54:21 -07:00
2023-06-15 08:59:56 -07:00
#include <cstdarg>
#include <cstring>
2018-09-28 08:54:21 -07:00
#include <string>
2023-06-15 08:59:56 -07:00
2021-07-21 18:41:46 -07:00
#include "Machine.hh" // __attribute__
2019-06-17 08:32:28 -07:00
#include "Vector.hh"
2018-09-28 08:54:21 -07:00
namespace sta {
inline bool
stringEq(const char *str1,
const char *str2)
{
return strcmp(str1, str2) == 0;
}
// Compare the first length characters.
inline bool
stringEq(const char *str1,
const char *str2,
size_t length)
{
return strncmp(str1, str2, length) == 0;
}
inline bool
stringEqIf(const char *str1,
const char *str2)
{
2019-03-12 17:25:53 -07:00
return (str1 == nullptr && str2 == nullptr)
2018-09-28 08:54:21 -07:00
|| (str1 && str2 && strcmp(str1, str2) == 0);
}
2019-06-21 13:25:21 -07:00
// Case sensitive compare the beginning of str1 to str2.
inline bool
stringBeginEq(const char *str1,
const char *str2)
{
return strncmp(str1, str2, strlen(str2)) == 0;
}
// Case insensitive compare the beginning of str1 to str2.
2018-09-28 08:54:21 -07:00
inline bool
stringBeginEqual(const char *str1,
const char *str2)
2018-09-28 08:54:21 -07:00
{
return strncasecmp(str1, str2, strlen(str2)) == 0;
2018-09-28 08:54:21 -07:00
}
// Case insensitive compare.
inline bool
stringEqual(const char *str1,
const char *str2)
{
return strcasecmp(str1, str2) == 0;
}
inline bool
stringEqualIf(const char *str1,
const char *str2)
{
2019-03-12 17:25:53 -07:00
return (str1 == nullptr && str2 == nullptr)
2018-09-28 08:54:21 -07:00
|| (str1 && str2 && strcasecmp(str1, str2) == 0);
}
inline bool
stringLess(const char *str1,
const char *str2)
{
return strcmp(str1, str2) < 0;
}
inline bool
stringLessIf(const char *str1,
const char *str2)
{
2019-03-12 17:25:53 -07:00
return (str1 == nullptr && str2 != nullptr)
|| (str1 != nullptr && str2 != nullptr && strcmp(str1, str2) < 0);
2018-09-28 08:54:21 -07:00
}
class CharPtrLess
{
public:
bool operator()(const char *string1,
const char *string2) const
{
return stringLess(string1, string2);
}
};
// Case insensitive comparision.
class CharPtrCaseLess
{
public:
bool operator()(const char *string1,
const char *string2) const
{
return strcasecmp(string1, string2) < 0;
}
};
2020-05-01 09:40:26 -07:00
class StringLessIf
{
public:
bool operator()(const char *string1,
const char *string2) const
{
return stringLessIf(string1, string2);
}
};
2018-09-28 08:54:21 -07:00
// strdup using new instead of malloc so delete can be used on the strings.
char *
stringCopy(const char *str);
inline void
stringAppend(char *&str1,
const char *str2)
{
strcpy(str1, str2);
str1 += strlen(str2);
}
2023-02-18 17:20:40 -07:00
void
stringDeleteCheck(const char *str);
2018-09-28 08:54:21 -07:00
// Delete for strings allocated with new char[].
inline void
stringDelete(const char *str)
{
delete [] str;
}
bool
isDigits(const char *str);
// Print to a new string.
2019-01-16 15:37:31 -08:00
// Caller owns returned string.
2018-09-28 08:54:21 -07:00
char *
2019-01-16 15:37:31 -08:00
stringPrint(const char *fmt,
...) __attribute__((format (printf, 1, 2)));
2025-04-11 16:59:48 -07:00
std::string
2019-01-16 15:37:31 -08:00
stdstrPrint(const char *fmt,
...) __attribute__((format (printf, 1, 2)));
2018-09-28 08:54:21 -07:00
char *
2019-01-16 15:37:31 -08:00
stringPrintArgs(const char *fmt,
2018-09-28 08:54:21 -07:00
va_list args);
2019-01-16 15:37:31 -08:00
void
2025-04-11 16:59:48 -07:00
stringPrint(std::string &str,
2019-01-16 15:37:31 -08:00
const char *fmt,
...) __attribute__((format (printf, 2, 3)));
2024-09-16 17:04:31 -07:00
// Formated append to std::string.
void
2025-04-11 16:59:48 -07:00
stringAppend(std::string &str,
2024-09-16 17:04:31 -07:00
const char *fmt,
...) __attribute__((format (printf, 2, 3)));
2019-01-16 15:37:31 -08:00
2018-09-28 08:54:21 -07:00
// Print to a temporary string.
char *
2019-01-16 15:37:31 -08:00
stringPrintTmp(const char *fmt,
...) __attribute__((format (printf, 1, 2)));
2018-09-28 08:54:21 -07:00
char *
makeTmpString(size_t length);
2025-03-30 15:27:53 -07:00
char *
2025-04-11 16:59:48 -07:00
makeTmpString(std::string &str);
2023-02-18 17:20:40 -07:00
bool
isTmpString(const char *str);
2018-09-28 08:54:21 -07:00
////////////////////////////////////////////////////////////////
// Trim right spaces.
void
2025-04-11 16:59:48 -07:00
trimRight(std::string &str);
2018-09-28 08:54:21 -07:00
2025-04-11 16:59:48 -07:00
typedef Vector<std::string> StringVector;
2019-06-17 08:32:28 -07:00
void
2025-04-11 16:59:48 -07:00
split(const std::string &text,
const std::string &delims,
2019-06-17 08:32:28 -07:00
// Return values.
StringVector &tokens);
2018-09-28 08:54:21 -07:00
} // namespace