/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #pragma once #include // for Q_REQUIRED_RESULT #include #include #include #include namespace Utils { ////////////////// // anyOf ///////////////// // anyOf taking a member function pointer template bool anyOf(const T &container, R (S::*predicate)() const) { return std::any_of(container.begin(), container.end(), std::mem_fn(predicate)); } template bool anyOf(const T &container, F predicate) { return std::any_of(container.begin(), container.end(), predicate); } template int count(const T &container, F predicate) { return std::count_if(container.begin(), container.end(), predicate); } ////////////////// // allOf ///////////////// template bool allOf(const T &container, F predicate) { return std::all_of(container.begin(), container.end(), predicate); } ////////////////// // erase ///////////////// template void erase(QList &container, F predicate) { container.erase(std::remove_if(container.begin(), container.end(), predicate), container.end()); } ////////////////// // contains ///////////////// template bool contains(const T &container, F function) { typename T::const_iterator end = container.end(); typename T::const_iterator begin = container.begin(); typename T::const_iterator it = std::find_if(begin, end, function); return it != end; } ////////////////// // findOr ///////////////// template typename T::value_type findOr(const T &container, typename T::value_type other, F function) { typename T::const_iterator end = container.end(); typename T::const_iterator begin = container.begin(); typename T::const_iterator it = std::find_if(begin, end, function); if (it == end) return other; return *it; } template typename T::value_type findOr(const T &container, typename T::value_type other, R (S::*function)() const) { return findOr(container, other, std::mem_fn(function)); } template int indexOf(const T &container, F function) { typename T::const_iterator end = container.end(); typename T::const_iterator begin = container.begin(); typename T::const_iterator it = std::find_if(begin, end, function); if (it == end) return -1; return it - begin; } template typename T::value_type findOrDefault(const T &container, F function) { return findOr(container, typename T::value_type(), function); } template typename T::value_type findOrDefault(const T &container, R (S::*function)() const) { return findOr(container, typename T::value_type(), function); } ////////////////// // find helpers ////////////////// template decltype(auto) equal(R (S::*function)() const, T value) { // This should use std::equal_to<> instead of std::eqaul_to, // but that's not supported everywhere yet, since it is C++14 return std::bind(std::equal_to(), value, std::bind(function, std::placeholders::_1)); } template decltype(auto) equal(R S::*member, T value) { return std::bind(std::equal_to(), value, std::bind(member, std::placeholders::_1)); } ////////////////// // max element ////////////////// template typename T::value_type maxElementOr(const T &container, typename T::value_type other) { typename T::const_iterator end = container.end(); typename T::const_iterator begin = container.begin(); typename T::const_iterator it = std::max_element(begin, end); if (it == end) return other; return *it; } ////////////////// // transform ///////////////// namespace { ///////////////// // helper code for transform to use back_inserter and thus push_back for everything // and insert for QSet<> // // QSetInsertIterator, straight from the standard for insert_iterator // just without the additional parameter to insert template class QSetInsertIterator : public std::iterator { protected: Container *container; public: typedef Container container_type; explicit QSetInsertIterator (Container &x) : container(&x) {} QSetInsertIterator &operator=(const typename Container::value_type &value) { container->insert(value); return *this; } QSetInsertIterator &operator= (typename Container::value_type &&value) { container->insert(std::move(value)); return *this; } QSetInsertIterator&operator*() { return *this; } QSetInsertIterator &operator++() { return *this; } QSetInsertIterator operator++(int) { return *this; } }; // inserter helper function, returns a std::back_inserter for most containers // and is overloaded for QSet<> to return a QSetInsertIterator template inline std::back_insert_iterator inserter(C &container) { return std::back_inserter(container); } template inline QSetInsertIterator> inserter(QSet &container) { return QSetInsertIterator>(container); } // Result type of transform operation template class Container, template class InputContainer, typename IT, typename Function> using ResultContainer = Container>>; } // anonymous // different container types for input and output, e.g. transforming a QList into a QSet template class C, // result container type template class SC, // input container type typename T, // input value type typename F> // function type Q_REQUIRED_RESULT decltype(auto) transform(const SC &container, F function) { ResultContainer result; result.reserve(container.size()); std::transform(container.begin(), container.end(), inserter(result), function); return result; } // different container types for input and output, e.g. transforming a QList into a QSet // for member function pointers template class C, // result container type template class SC, // input container type typename T, // input value type typename R, typename S> Q_REQUIRED_RESULT decltype(auto) transform(const SC &container, R (S::*p)() const) { return transform(container, std::mem_fn(p)); } // same container type for input and output, e.g. transforming a QList into QList // or QStringList -> QList<> template class C, // container typename T, // container value type typename F> Q_REQUIRED_RESULT decltype(auto) transform(const C &container, F function) { return transform(container, function); } // same container type for member function pointer template class C, // container typename T, // container value type typename R, typename S> Q_REQUIRED_RESULT decltype(auto) transform(const C &container, R (S::*p)() const) { return transform(container, std::mem_fn(p)); } // same container type for members template class C, // container typename T, // container value type typename R, typename S> Q_REQUIRED_RESULT decltype(auto) transform(const C &container, R S::*member) { return transform(container, std::mem_fn(member)); } // QStringList different containers template class C, // result container type typename F> Q_REQUIRED_RESULT decltype(auto) transform(const QStringList &container, F function) { return transform(container, function); } // QStringList -> QList template Q_REQUIRED_RESULT decltype(auto) transform(const QStringList &container, F function) { return Utils::transform(container, function); } ////////////////// // filtered ///////////////// template Q_REQUIRED_RESULT C filtered(const C &container, F predicate) { C out; std::copy_if(container.begin(), container.end(), inserter(out), predicate); return out; } template Q_REQUIRED_RESULT C filtered(const C &container, R (S::*predicate)() const) { C out; std::copy_if(container.begin(), container.end(), inserter(out), std::mem_fn(predicate)); return out; } ////////////////// // partition ///////////////// // Recommended usage: // C hit; // C miss; // std::tie(hit, miss) = Utils::partition(container, predicate); template Q_REQUIRED_RESULT std::tuple partition(const C &container, F predicate) { C hit; C miss; auto hitIns = inserter(hit); auto missIns = inserter(miss); for (auto i : container) { if (predicate(i)) hitIns = i; else missIns = i; } return std::make_tuple(hit, miss); } template Q_REQUIRED_RESULT std::tuple partition(const C &container, R (S::*predicate)() const) { return partition(container, std::mem_fn(predicate)); } ////////////////// // filteredUnique ///////////////// template Q_REQUIRED_RESULT C filteredUnique(const C &container) { C result; auto ins = inserter(result); QSet seen; int setSize = 0; auto endIt = container.end(); for (auto it = container.begin(); it != endIt; ++it) { seen.insert(*it); if (setSize == seen.size()) // unchanged size => was already seen continue; ++setSize; ins = *it; } return result; } ////////////////// // sort ///////////////// template inline void sort(Container &c) { std::sort(c.begin(), c.end()); } template inline void sort(Container &c, Predicate p) { std::sort(c.begin(), c.end(), p); } // pointer to member template inline void sort(Container &c, R S::*member) { auto f = std::mem_fn(member); using const_ref = typename Container::const_reference; std::sort(c.begin(), c.end(), [&f](const_ref a, const_ref b) { return f(a) < f(b); }); } // pointer to member function template inline void sort(Container &c, R (S::*function)() const) { auto f = std::mem_fn(function); using const_ref = typename Container::const_reference; std::sort(c.begin(), c.end(), [&f](const_ref a, const_ref b) { return f(a) < f(b); }); } ////////////////// // reverseForeach ///////////////// template inline void reverseForeach(const Container &c, const Op &operation) { auto rend = c.rend(); for (auto it = c.rbegin(); it != rend; ++it) operation(*it); } }