//===-- STLUtils.h ----------------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef liblldb_STLUtils_h_ #define liblldb_STLUtils_h_ #include #include #include #include //---------------------------------------------------------------------- // C string less than compare function object //---------------------------------------------------------------------- struct CStringCompareFunctionObject { bool operator()(const char *s1, const char *s2) const { return strcmp(s1, s2) < 0; } }; //---------------------------------------------------------------------- // C string equality function object (binary predicate). //---------------------------------------------------------------------- struct CStringEqualBinaryPredicate { bool operator()(const char *s1, const char *s2) const { return strcmp(s1, s2) == 0; } }; //---------------------------------------------------------------------- // Templated type for finding an entry in a std::map whose value is equal // to something //---------------------------------------------------------------------- template class ValueEquals { public: ValueEquals(const S &val) : second_value(val) {} // Compare the second item bool operator()(std::pair elem) { return elem.second == second_value; } private: S second_value; }; template inline void PrintAllCollectionElements(std::ostream &s, const T &coll, const char *header_cstr = nullptr, const char *separator_cstr = " ") { typename T::const_iterator pos; if (header_cstr) s << header_cstr; for (pos = coll.begin(); pos != coll.end(); ++pos) { s << *pos << separator_cstr; } s << std::endl; } // The function object below can be used to delete a STL container that // contains C++ object pointers. // // Usage: std::for_each(vector.begin(), vector.end(), for_each_delete()); struct for_each_cplusplus_delete { template void operator()(T *ptr) { delete ptr; } }; typedef std::vector STLStringArray; typedef std::vector CStringArray; #endif // liblldb_STLUtils_h_