fa4295db6b
* Initial Implementation: include * Initial Implementation: lib details (#11) * Initial Implementation: lib details * Initial Implementation: lib (#12) * Initial Implementation: lib * Initial Implementation: source (#13) * Initial Implementation: source * Initial Implementation: samples (#14) * Initial Implementation: samples * Initial Implementation: tests (#15) * Initial Implementation: tests * Initial Implementation: scripts (#16) * Initial Implementation: scripts * Initial Implementation: cmake (#17) * Initial Implementation: cmake * Initial Implementation: top-level files (#18) * Initial Implementation: top-level files - clang-format - clang-tidy - cmake-format - ignore build and cache directories - main CMakeLists.txt - pyproject.toml (python formatting) - VERSION file * Initial Implementation: workflow (#19) * Fix unused variable - rocprofiler_register_warn_level
128 lignes
4.0 KiB
C++
128 lignes
4.0 KiB
C++
// MIT License
|
|
//
|
|
// Copyright (c) 2022 Advanced Micro Devices, Inc. All Rights Reserved.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
#include "utility.hpp"
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
namespace rocprofiler_register
|
|
{
|
|
namespace utility
|
|
{
|
|
namespace
|
|
{
|
|
template <typename ContainerT, typename... Args>
|
|
inline auto
|
|
emplace_impl(ContainerT& _c, int, Args&&... _args)
|
|
-> decltype(_c.emplace_back(std::forward<Args>(_args)...))
|
|
{
|
|
return _c.emplace_back(std::forward<Args>(_args)...);
|
|
}
|
|
|
|
template <typename ContainerT, typename... Args>
|
|
inline auto
|
|
emplace_impl(ContainerT& _c, long, Args&&... _args)
|
|
-> decltype(_c.emplace(std::forward<Args>(_args)...))
|
|
{
|
|
return _c.emplace(std::forward<Args>(_args)...);
|
|
}
|
|
|
|
template <typename ContainerT, typename... Args>
|
|
inline auto
|
|
emplace(ContainerT& _c, Args&&... _args)
|
|
{
|
|
return emplace_impl(_c, 0, std::forward<Args>(_args)...);
|
|
}
|
|
|
|
template <typename ContainerT, typename ArgT>
|
|
inline auto
|
|
reserve_impl(ContainerT& _c, int, ArgT _arg) -> decltype(_c.reserve(_arg), bool())
|
|
{
|
|
_c.reserve(_arg);
|
|
return true;
|
|
}
|
|
|
|
template <typename ContainerT, typename ArgT>
|
|
inline auto
|
|
reserve_impl(ContainerT&, long, ArgT)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
template <typename ContainerT, typename ArgT>
|
|
inline auto
|
|
reserve(ContainerT& _c, ArgT _arg)
|
|
{
|
|
return reserve_impl(_c, 0, _arg);
|
|
}
|
|
} // namespace
|
|
|
|
template <typename ContainerT>
|
|
ContainerT
|
|
delimit(const std::string& line, std::string_view delimiters)
|
|
{
|
|
ContainerT _result{};
|
|
size_t _beginp = 0; // position that is the beginning of the new string
|
|
size_t _delimp = 0; // position of the delimiter in the string
|
|
if(reserve(_result, 0))
|
|
{
|
|
size_t _nmax = 0;
|
|
for(char itr : line)
|
|
{
|
|
for(size_t j = 0; j < delimiters.length(); ++j)
|
|
{
|
|
if(itr == delimiters.at(j)) ++_nmax;
|
|
}
|
|
}
|
|
reserve(_result, _nmax);
|
|
}
|
|
while(_beginp < line.length() && _delimp < line.length())
|
|
{
|
|
// find the first character (starting at _delimp) that is not a delimiter
|
|
_beginp = line.find_first_not_of(delimiters, _delimp);
|
|
// if no a character after or at _end that is not a delimiter is not found
|
|
// then we are done
|
|
if(_beginp == std::string::npos) break;
|
|
// starting at the position of the new string, find the next delimiter
|
|
_delimp = line.find_first_of(delimiters, _beginp);
|
|
std::string _tmp{};
|
|
// starting at the position of the new string, get the characters
|
|
// between this position and the next delimiter
|
|
_tmp = line.substr(_beginp, _delimp - _beginp);
|
|
// don't add empty strings
|
|
if(!_tmp.empty()) emplace(_result, _tmp);
|
|
}
|
|
return _result;
|
|
}
|
|
|
|
template std::vector<std::string>
|
|
delimit(const std::string&, std::string_view);
|
|
|
|
template std::set<std::string>
|
|
delimit(const std::string&, std::string_view);
|
|
} // namespace utility
|
|
} // namespace rocprofiler_register
|