cmake/Source/cmAlgorithms.h

434 lines
9.9 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2015-08-17 11:37:30 +02:00
#ifndef cmAlgorithms_h
#define cmAlgorithms_h
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h" // IWYU pragma: keep
2017-04-14 19:02:05 +02:00
2017-07-20 19:35:53 +02:00
#include "cm_kwiml.h"
2017-04-14 19:02:05 +02:00
#include <algorithm>
#include <functional>
#include <iterator>
2018-01-26 17:06:56 +01:00
#include <memory>
2017-04-14 19:02:05 +02:00
#include <sstream>
#include <string.h>
#include <string>
2018-08-09 18:06:22 +02:00
#include <unordered_set>
2017-04-14 19:02:05 +02:00
#include <utility>
#include <vector>
2015-08-17 11:37:30 +02:00
2016-07-09 11:21:54 +02:00
inline bool cmHasLiteralPrefixImpl(const std::string& str1, const char* str2,
size_t N)
2015-08-17 11:37:30 +02:00
{
return strncmp(str1.c_str(), str2, N) == 0;
}
2016-07-09 11:21:54 +02:00
inline bool cmHasLiteralPrefixImpl(const char* str1, const char* str2,
size_t N)
2015-08-17 11:37:30 +02:00
{
return strncmp(str1, str2, N) == 0;
}
2016-07-09 11:21:54 +02:00
inline bool cmHasLiteralSuffixImpl(const std::string& str1, const char* str2,
2015-08-17 11:37:30 +02:00
size_t N)
{
size_t len = str1.size();
return len >= N && strcmp(str1.c_str() + len - N, str2) == 0;
}
2016-07-09 11:21:54 +02:00
inline bool cmHasLiteralSuffixImpl(const char* str1, const char* str2,
2015-08-17 11:37:30 +02:00
size_t N)
{
size_t len = strlen(str1);
return len >= N && strcmp(str1 + len - N, str2) == 0;
}
2016-07-09 11:21:54 +02:00
template <typename T, size_t N>
2016-03-13 13:35:51 +01:00
bool cmHasLiteralPrefix(const T& str1, const char (&str2)[N])
2015-08-17 11:37:30 +02:00
{
return cmHasLiteralPrefixImpl(str1, str2, N - 1);
}
2016-07-09 11:21:54 +02:00
template <typename T, size_t N>
2016-03-13 13:35:51 +01:00
bool cmHasLiteralSuffix(const T& str1, const char (&str2)[N])
2015-08-17 11:37:30 +02:00
{
return cmHasLiteralSuffixImpl(str1, str2, N - 1);
}
2016-07-09 11:21:54 +02:00
struct cmStrCmp
{
cmStrCmp(const char* test)
: m_test(test)
{
}
cmStrCmp(const std::string& test)
: m_test(test)
2015-08-17 11:37:30 +02:00
{
}
2016-07-09 11:21:54 +02:00
bool operator()(const std::string& input) const { return m_test == input; }
bool operator()(const char* input) const
2015-08-17 11:37:30 +02:00
{
return strcmp(input, m_test.c_str()) == 0;
}
private:
const std::string m_test;
};
2016-07-09 11:21:54 +02:00
template <typename FwdIt>
2015-08-17 11:37:30 +02:00
FwdIt cmRotate(FwdIt first, FwdIt middle, FwdIt last)
{
const typename std::iterator_traits<FwdIt>::difference_type dist =
2016-07-09 11:21:54 +02:00
std::distance(middle, last);
2015-08-17 11:37:30 +02:00
std::rotate(first, middle, last);
std::advance(first, dist);
return first;
}
2017-07-20 19:35:53 +02:00
template <typename Container, typename Predicate>
void cmEraseIf(Container& cont, Predicate pred)
{
cont.erase(std::remove_if(cont.begin(), cont.end(), pred), cont.end());
}
2015-08-17 11:37:30 +02:00
namespace ContainerAlgorithms {
2016-07-09 11:21:54 +02:00
template <typename T>
2015-08-17 11:37:30 +02:00
struct cmIsPair
{
2016-07-09 11:21:54 +02:00
enum
{
value = false
};
2015-08-17 11:37:30 +02:00
};
2016-07-09 11:21:54 +02:00
template <typename K, typename V>
2018-01-26 17:06:56 +01:00
struct cmIsPair<std::pair<K, V>>
2015-08-17 11:37:30 +02:00
{
2016-07-09 11:21:54 +02:00
enum
{
value = true
};
2015-08-17 11:37:30 +02:00
};
2016-07-09 11:21:54 +02:00
template <typename Range,
bool valueTypeIsPair = cmIsPair<typename Range::value_type>::value>
2015-08-17 11:37:30 +02:00
struct DefaultDeleter
{
2016-07-09 11:21:54 +02:00
void operator()(typename Range::value_type value) const { delete value; }
2015-08-17 11:37:30 +02:00
};
2016-07-09 11:21:54 +02:00
template <typename Range>
2015-08-17 11:37:30 +02:00
struct DefaultDeleter<Range, /* valueTypeIsPair = */ true>
{
2016-07-09 11:21:54 +02:00
void operator()(typename Range::value_type value) const
{
2015-08-17 11:37:30 +02:00
delete value.second;
}
};
2016-07-09 11:21:54 +02:00
template <typename FwdIt>
2015-08-17 11:37:30 +02:00
FwdIt RemoveN(FwdIt i1, FwdIt i2, size_t n)
{
FwdIt m = i1;
std::advance(m, n);
return cmRotate(i1, m, i2);
}
2016-07-09 11:21:54 +02:00
template <typename Range>
2015-08-17 11:37:30 +02:00
struct BinarySearcher
{
typedef typename Range::value_type argument_type;
BinarySearcher(Range const& r)
: m_range(r)
{
}
bool operator()(argument_type const& item) const
{
return std::binary_search(m_range.begin(), m_range.end(), item);
}
2016-07-09 11:21:54 +02:00
2015-08-17 11:37:30 +02:00
private:
Range const& m_range;
};
}
2016-07-09 11:21:54 +02:00
template <typename const_iterator_>
2015-11-17 17:22:37 +01:00
struct cmRange
{
typedef const_iterator_ const_iterator;
typedef typename std::iterator_traits<const_iterator>::value_type value_type;
typedef typename std::iterator_traits<const_iterator>::difference_type
difference_type;
cmRange(const_iterator begin_, const_iterator end_)
2016-07-09 11:21:54 +02:00
: Begin(begin_)
, End(end_)
{
}
2015-11-17 17:22:37 +01:00
const_iterator begin() const { return Begin; }
const_iterator end() const { return End; }
bool empty() const { return std::distance(Begin, End) == 0; }
difference_type size() const { return std::distance(Begin, End); }
2016-03-13 13:35:51 +01:00
cmRange& advance(KWIML_INT_intptr_t amount)
2015-11-17 17:22:37 +01:00
{
std::advance(Begin, amount);
return *this;
}
2016-03-13 13:35:51 +01:00
cmRange& retreat(KWIML_INT_intptr_t amount)
2015-11-17 17:22:37 +01:00
{
std::advance(End, -amount);
return *this;
}
2016-07-09 11:21:54 +02:00
2015-11-17 17:22:37 +01:00
private:
const_iterator Begin;
const_iterator End;
};
typedef cmRange<std::vector<std::string>::const_iterator> cmStringRange;
class cmListFileBacktrace;
2016-07-09 11:21:54 +02:00
typedef cmRange<std::vector<cmListFileBacktrace>::const_iterator>
cmBacktraceRange;
2015-11-17 17:22:37 +01:00
2016-07-09 11:21:54 +02:00
template <typename Iter1, typename Iter2>
2015-11-17 17:22:37 +01:00
cmRange<Iter1> cmMakeRange(Iter1 begin, Iter2 end)
2015-08-17 11:37:30 +02:00
{
2015-11-17 17:22:37 +01:00
return cmRange<Iter1>(begin, end);
2015-08-17 11:37:30 +02:00
}
2016-07-09 11:21:54 +02:00
template <typename Range>
cmRange<typename Range::const_iterator> cmMakeRange(Range const& range)
2015-08-17 11:37:30 +02:00
{
2016-07-09 11:21:54 +02:00
return cmRange<typename Range::const_iterator>(range.begin(), range.end());
2015-08-17 11:37:30 +02:00
}
2016-07-09 11:21:54 +02:00
template <typename Range>
2015-08-17 11:37:30 +02:00
void cmDeleteAll(Range const& r)
{
std::for_each(r.begin(), r.end(),
ContainerAlgorithms::DefaultDeleter<Range>());
}
2016-07-09 11:21:54 +02:00
template <typename Range>
2015-08-17 11:37:30 +02:00
std::string cmJoin(Range const& r, const char* delimiter)
{
2016-07-09 11:21:54 +02:00
if (r.empty()) {
2015-08-17 11:37:30 +02:00
return std::string();
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
std::ostringstream os;
typedef typename Range::value_type ValueType;
typedef typename Range::const_iterator InputIt;
const InputIt first = r.begin();
InputIt last = r.end();
--last;
2016-07-09 11:21:54 +02:00
std::copy(first, last, std::ostream_iterator<ValueType>(os, delimiter));
2015-08-17 11:37:30 +02:00
os << *last;
return os.str();
}
2016-07-09 11:21:54 +02:00
template <typename Range>
2017-04-14 19:02:05 +02:00
std::string cmJoin(Range const& r, std::string const& delimiter)
2015-08-17 11:37:30 +02:00
{
return cmJoin(r, delimiter.c_str());
2016-03-13 13:35:51 +01:00
}
2015-08-17 11:37:30 +02:00
2016-07-09 11:21:54 +02:00
template <typename Range>
2015-08-17 11:37:30 +02:00
typename Range::const_iterator cmRemoveN(Range& r, size_t n)
{
return ContainerAlgorithms::RemoveN(r.begin(), r.end(), n);
}
2016-07-09 11:21:54 +02:00
template <typename Range, typename InputRange>
2015-08-17 11:37:30 +02:00
typename Range::const_iterator cmRemoveIndices(Range& r, InputRange const& rem)
{
typename InputRange::const_iterator remIt = rem.begin();
typename InputRange::const_iterator remEnd = rem.end();
const typename Range::iterator rangeEnd = r.end();
2016-07-09 11:21:54 +02:00
if (remIt == remEnd) {
2015-08-17 11:37:30 +02:00
return rangeEnd;
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
typename Range::iterator writer = r.begin();
std::advance(writer, *remIt);
typename Range::iterator pivot = writer;
typename InputRange::value_type prevRem = *remIt;
++remIt;
size_t count = 1;
2016-07-09 11:21:54 +02:00
for (; writer != rangeEnd && remIt != remEnd; ++count, ++remIt) {
2015-08-17 11:37:30 +02:00
std::advance(pivot, *remIt - prevRem);
prevRem = *remIt;
writer = ContainerAlgorithms::RemoveN(writer, pivot, count);
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
return ContainerAlgorithms::RemoveN(writer, rangeEnd, count);
}
2016-07-09 11:21:54 +02:00
template <typename Range, typename MatchRange>
typename Range::const_iterator cmRemoveMatching(Range& r, MatchRange const& m)
2015-08-17 11:37:30 +02:00
{
return std::remove_if(r.begin(), r.end(),
ContainerAlgorithms::BinarySearcher<MatchRange>(m));
}
2016-07-09 11:21:54 +02:00
template <typename Range>
2015-08-17 11:37:30 +02:00
typename Range::const_iterator cmRemoveDuplicates(Range& r)
{
2018-08-09 18:06:22 +02:00
typedef typename Range::value_type T;
std::unordered_set<T> unique;
2015-08-17 11:37:30 +02:00
std::vector<size_t> indices;
size_t count = 0;
const typename Range::const_iterator end = r.end();
2016-07-09 11:21:54 +02:00
for (typename Range::const_iterator it = r.begin(); it != end;
++it, ++count) {
2018-08-09 18:06:22 +02:00
const typename std::unordered_set<T>::iterator occur = unique.find(*it);
if (occur == unique.end()) {
unique.insert(*it);
2016-07-09 11:21:54 +02:00
} else {
2015-08-17 11:37:30 +02:00
indices.push_back(count);
}
2016-07-09 11:21:54 +02:00
}
if (indices.empty()) {
2015-08-17 11:37:30 +02:00
return end;
2016-07-09 11:21:54 +02:00
}
2015-08-17 11:37:30 +02:00
return cmRemoveIndices(r, indices);
}
2016-07-09 11:21:54 +02:00
template <typename Range>
2017-04-14 19:02:05 +02:00
std::string cmWrap(std::string const& prefix, Range const& r,
std::string const& suffix, std::string const& sep)
2015-08-17 11:37:30 +02:00
{
2016-07-09 11:21:54 +02:00
if (r.empty()) {
2015-08-17 11:37:30 +02:00
return std::string();
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
return prefix + cmJoin(r, suffix + sep + prefix) + suffix;
2015-08-17 11:37:30 +02:00
}
2016-07-09 11:21:54 +02:00
template <typename Range>
2017-07-20 19:35:53 +02:00
std::string cmWrap(char prefix, Range const& r, char suffix,
std::string const& sep)
2015-08-17 11:37:30 +02:00
{
return cmWrap(std::string(1, prefix), r, std::string(1, suffix), sep);
}
2016-07-09 11:21:54 +02:00
template <typename Range, typename T>
2015-08-17 11:37:30 +02:00
typename Range::const_iterator cmFindNot(Range const& r, T const& t)
{
2018-01-26 17:06:56 +01:00
return std::find_if(r.begin(), r.end(), [&t](T const& i) { return i != t; });
2015-08-17 11:37:30 +02:00
}
2016-07-09 11:21:54 +02:00
template <typename Range>
cmRange<typename Range::const_reverse_iterator> cmReverseRange(
Range const& range)
2015-08-17 11:37:30 +02:00
{
2016-07-09 11:21:54 +02:00
return cmRange<typename Range::const_reverse_iterator>(range.rbegin(),
range.rend());
2015-08-17 11:37:30 +02:00
}
2015-11-17 17:22:37 +01:00
template <class Iter>
std::reverse_iterator<Iter> cmMakeReverseIterator(Iter it)
{
return std::reverse_iterator<Iter>(it);
}
2016-07-09 11:21:54 +02:00
inline bool cmHasSuffix(const std::string& str, const std::string& suffix)
{
if (str.size() < suffix.size()) {
return false;
}
return str.compare(str.size() - suffix.size(), suffix.size(), suffix) == 0;
}
inline void cmStripSuffixIfExists(std::string& str, const std::string& suffix)
{
if (cmHasSuffix(str, suffix)) {
str.resize(str.size() - suffix.size());
}
}
2018-01-26 17:06:56 +01:00
namespace cm {
#if defined(CMake_HAVE_CXX_MAKE_UNIQUE)
using std::make_unique;
#else
template <typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&&... args)
{
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}
#endif
2018-04-23 21:13:27 +02:00
#if __cplusplus >= 201703L || defined(_MSVC_LANG) && _MSVC_LANG >= 201703L
using std::size;
#else
// std::size backport from C++17.
template <class C>
2018-08-09 18:06:22 +02:00
# if !defined(_MSC_VER) || _MSC_VER >= 1900
2018-04-23 21:13:27 +02:00
constexpr
2018-08-09 18:06:22 +02:00
# endif
2018-04-23 21:13:27 +02:00
auto
size(C const& c) -> decltype(c.size())
{
return c.size();
}
template <typename T, size_t N>
2018-08-09 18:06:22 +02:00
# if !defined(_MSC_VER) || _MSC_VER >= 1900
2018-04-23 21:13:27 +02:00
constexpr
2018-08-09 18:06:22 +02:00
# endif
2018-04-23 21:13:27 +02:00
std::size_t
size(const T (&)[N]) throw()
{
return N;
}
#endif
#if __cplusplus >= 201402L || defined(_MSVC_LANG) && _MSVC_LANG >= 201402L
using std::cbegin;
using std::cend;
#else
// std::c{begin,end} backport from C++14
template <class C>
2018-08-09 18:06:22 +02:00
# if defined(_MSC_VER) && _MSC_VER < 1900
2018-04-23 21:13:27 +02:00
auto cbegin(C const& c)
2018-08-09 18:06:22 +02:00
# else
2018-04-23 21:13:27 +02:00
constexpr auto cbegin(C const& c) noexcept(noexcept(std::begin(c)))
2018-08-09 18:06:22 +02:00
# endif
2018-04-23 21:13:27 +02:00
-> decltype(std::begin(c))
{
return std::begin(c);
}
template <class C>
2018-08-09 18:06:22 +02:00
# if defined(_MSC_VER) && _MSC_VER < 1900
2018-04-23 21:13:27 +02:00
auto cend(C const& c)
2018-08-09 18:06:22 +02:00
# else
2018-04-23 21:13:27 +02:00
constexpr auto cend(C const& c) noexcept(noexcept(std::end(c)))
2018-08-09 18:06:22 +02:00
# endif
2018-04-23 21:13:27 +02:00
-> decltype(std::end(c))
{
return std::end(c);
}
#endif
2018-01-26 17:06:56 +01:00
} // namespace cm
2015-08-17 11:37:30 +02:00
#endif