2018-09-28 08:54:21 -07:00
|
|
|
// OpenSTA, Static Timing Analyzer
|
2026-04-13 14:58:16 -07:00
|
|
|
// Copyright (c) 2026, 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
|
|
|
|
2026-03-28 19:13:35 -07:00
|
|
|
#include <algorithm>
|
2026-04-13 14:58:16 -07:00
|
|
|
#include <cctype>
|
2023-06-15 08:59:56 -07:00
|
|
|
#include <cstdarg>
|
|
|
|
|
#include <cstring>
|
2026-04-15 09:38:10 -07:00
|
|
|
#include <set>
|
2018-09-28 08:54:21 -07:00
|
|
|
#include <string>
|
2026-03-28 19:13:35 -07:00
|
|
|
#include <string_view>
|
2026-01-03 16:59:35 -08:00
|
|
|
#include <vector>
|
2023-06-15 08:59:56 -07:00
|
|
|
|
2021-07-21 18:41:46 -07:00
|
|
|
#include "Machine.hh" // __attribute__
|
2018-09-28 08:54:21 -07:00
|
|
|
|
|
|
|
|
namespace sta {
|
|
|
|
|
|
2026-03-08 15:51:50 -07:00
|
|
|
using StringSeq = std::vector<std::string>;
|
2026-03-08 15:55:12 -07:00
|
|
|
using StringSet = std::set<std::string>;
|
2026-02-28 15:45:34 -08:00
|
|
|
|
2018-09-28 08:54:21 -07:00
|
|
|
inline bool
|
|
|
|
|
stringEq(const char *str1,
|
2026-01-03 16:59:35 -08:00
|
|
|
const char *str2)
|
2018-09-28 08:54:21 -07:00
|
|
|
{
|
|
|
|
|
return strcmp(str1, str2) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Compare the first length characters.
|
|
|
|
|
inline bool
|
|
|
|
|
stringEq(const char *str1,
|
2026-01-03 16:59:35 -08:00
|
|
|
const char *str2,
|
|
|
|
|
size_t length)
|
2018-09-28 08:54:21 -07:00
|
|
|
{
|
|
|
|
|
return strncmp(str1, str2, length) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-21 13:25:21 -07:00
|
|
|
// Case sensitive compare the beginning of str1 to str2.
|
|
|
|
|
inline bool
|
|
|
|
|
stringBeginEq(const char *str1,
|
2026-01-03 16:59:35 -08:00
|
|
|
const char *str2)
|
2019-06-21 13:25:21 -07:00
|
|
|
{
|
|
|
|
|
return strncmp(str1, str2, strlen(str2)) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-13 14:58:16 -07:00
|
|
|
inline bool
|
|
|
|
|
charEqual(unsigned char c1,
|
|
|
|
|
unsigned char c2)
|
|
|
|
|
{
|
|
|
|
|
return std::tolower(c1) == std::tolower(c2);
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-13 15:01:14 -07:00
|
|
|
// Case insensitive compare the beginning of str1 to str2.
|
2018-09-28 08:54:21 -07:00
|
|
|
inline bool
|
2026-03-28 19:13:35 -07:00
|
|
|
stringBeginEqual(std::string_view str,
|
|
|
|
|
std::string_view prefix)
|
2018-09-28 08:54:21 -07:00
|
|
|
{
|
2026-03-28 19:13:35 -07:00
|
|
|
if (str.size() < prefix.size())
|
|
|
|
|
return false;
|
2026-04-13 14:58:16 -07:00
|
|
|
return std::ranges::equal(str.substr(0, prefix.size()), prefix, charEqual);
|
2018-09-28 08:54:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Case insensitive compare.
|
|
|
|
|
inline bool
|
2026-03-28 19:13:35 -07:00
|
|
|
stringEqual(std::string_view s1,
|
|
|
|
|
std::string_view s2)
|
2018-09-28 08:54:21 -07:00
|
|
|
{
|
2026-04-13 14:58:16 -07:00
|
|
|
return std::ranges::equal(s1, s2, charEqual);
|
2018-09-28 08:54:21 -07:00
|
|
|
}
|
|
|
|
|
|
2026-03-28 19:13:35 -07:00
|
|
|
std::pair<float, bool>
|
|
|
|
|
stringFloat(const std::string &str);
|
2026-05-08 10:10:21 -07:00
|
|
|
std::pair<long long, bool>
|
|
|
|
|
stringLong(const std::string &str,
|
|
|
|
|
int base = 10);
|
2026-03-28 19:13:35 -07:00
|
|
|
|
2018-09-28 08:54:21 -07:00
|
|
|
bool
|
|
|
|
|
isDigits(const char *str);
|
|
|
|
|
|
2023-02-18 17:20:40 -07:00
|
|
|
bool
|
2026-03-28 19:13:35 -07:00
|
|
|
isDigits(std::string_view 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
|
|
|
|
2026-03-28 19:13:35 -07:00
|
|
|
// Parse text into delimiter separated tokens and skip whitepace.
|
2026-03-08 15:51:50 -07:00
|
|
|
StringSeq
|
2026-03-28 19:13:35 -07:00
|
|
|
parseTokens(const std::string &text,
|
|
|
|
|
std::string_view delims = " \t");
|
2019-06-17 08:32:28 -07:00
|
|
|
|
2026-04-13 14:58:16 -07:00
|
|
|
} // namespace sta
|