mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 18:12:02 +00:00
188 lines
4.7 KiB
C++
188 lines
4.7 KiB
C++
#pragma once
|
|
#include <iostream>
|
|
|
|
// TODO: https://stackoverflow.com/questions/16464032/how-to-enhance-this-variable-dumping-debug-macro-to-be-variadic
|
|
#define DUMPS(VAR) #VAR " = " << VAR
|
|
#define DUMPHEAD std::cerr << __FILE__ << ":" << __LINE__ << " "
|
|
#define DUMP(V1) DUMPHEAD << DUMPS(V1) << "\n";
|
|
#define DUMP2(V1, V2) DUMPHEAD << DUMPS(V1) << ", " << DUMPS(V2) << "\n";
|
|
#define DUMP3(V1, V2, V3) DUMPHEAD << DUMPS(V1) << ", " << DUMPS(V2) << ", " << DUMPS(V3) << "\n";
|
|
#define DUMP4(V1, V2, V3, V4) DUMPHEAD << DUMPS(V1) << ", " << DUMPS(V2) << ", " << DUMPS(V3)<< ", " << DUMPS(V4) << "\n";
|
|
#define DUMP5(V1, V2, V3, V4, V5) DUMPHEAD << DUMPS(V1) << ", " << DUMPS(V2) << ", " << DUMPS(V3)<< ", " << DUMPS(V4) << ", " << DUMPS(V5) << "\n";
|
|
|
|
|
|
#include <utility>
|
|
|
|
template <typename K, typename V>
|
|
std::ostream & operator<<(std::ostream & stream, const std::pair<K, V> & what)
|
|
{
|
|
stream << "pair{" << what.first << ", " << what.second << "}";
|
|
return stream;
|
|
}
|
|
|
|
|
|
template <typename T>
|
|
void dumpContainer(std::ostream & stream, const T & container)
|
|
{
|
|
stream << "{";
|
|
bool first = true;
|
|
for (const auto & elem : container)
|
|
{
|
|
if (!first)
|
|
stream << ", ";
|
|
first = false;
|
|
stream << elem;
|
|
}
|
|
stream << "}";
|
|
}
|
|
|
|
|
|
#include <vector>
|
|
|
|
template <typename T>
|
|
std::ostream & operator<<(std::ostream & stream, const std::vector<T> & what)
|
|
{
|
|
stream << "vector(size = " << what.size() << ", capacity = " << what.capacity() << ")";
|
|
dumpContainer(stream, what);
|
|
return stream;
|
|
}
|
|
|
|
|
|
#include <array>
|
|
|
|
template <typename T, size_t N>
|
|
std::ostream & operator<<(std::ostream & stream, const std::array<T, N> & what)
|
|
{
|
|
stream << "array<" << what.size() << ">";
|
|
dumpContainer(stream, what);
|
|
return stream;
|
|
}
|
|
|
|
|
|
#include <map>
|
|
|
|
template <typename K, typename V>
|
|
std::ostream & operator<<(std::ostream & stream, const std::map<K, V> & what)
|
|
{
|
|
stream << "map(size = " << what.size() << ")";
|
|
dumpContainer(stream, what);
|
|
return stream;
|
|
}
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
template <typename K, typename V>
|
|
std::ostream & operator<<(std::ostream & stream, const std::unordered_map<K, V> & what)
|
|
{
|
|
stream << "unordered_map(size = " << what.size() << ")";
|
|
dumpContainer(stream, what);
|
|
return stream;
|
|
}
|
|
|
|
|
|
#include <set>
|
|
|
|
template <typename K>
|
|
std::ostream & operator<<(std::ostream & stream, const std::set<K> & what)
|
|
{
|
|
stream << "set(size = " << what.size() << ")";
|
|
dumpContainer(stream, what);
|
|
return stream;
|
|
}
|
|
|
|
|
|
#include <unordered_set>
|
|
|
|
template <typename K>
|
|
std::ostream & operator<<(std::ostream & stream, const std::unordered_set<K> & what)
|
|
{
|
|
stream << "unordered_set(size = " << what.size() << ")";
|
|
dumpContainer(stream, what);
|
|
return stream;
|
|
}
|
|
|
|
|
|
#include <list>
|
|
|
|
template <typename K>
|
|
std::ostream & operator<<(std::ostream & stream, const std::list<K> & what)
|
|
{
|
|
stream << "list(size = " << what.size() << ")";
|
|
dumpContainer(stream, what);
|
|
return stream;
|
|
}
|
|
|
|
|
|
#include <ratio>
|
|
|
|
template <std::intmax_t Num, std::intmax_t Denom>
|
|
std::ostream & operator<<(std::ostream & stream, const std::ratio<Num, Denom> &)
|
|
{
|
|
stream << "ratio<Num=" << Num << ", Denom=" << Denom << ">";
|
|
return stream;
|
|
}
|
|
|
|
#include <chrono>
|
|
template <typename clock, typename duration>
|
|
std::ostream & operator<<(std::ostream & stream, const std::chrono::duration<clock, duration> & what)
|
|
{
|
|
stream << "chrono::duration<clock=" << clock() << ", duration=" << duration() << ">{" << what.count() << "}";
|
|
return stream;
|
|
}
|
|
|
|
template <typename clock, typename duration>
|
|
std::ostream & operator<<(std::ostream & stream, const std::chrono::time_point<clock, duration> & what)
|
|
{
|
|
stream << "chrono::time_point{" << what.time_since_epoch() << "}";
|
|
return stream;
|
|
}
|
|
|
|
|
|
#include <memory>
|
|
|
|
template <typename T>
|
|
std::ostream & operator<<(std::ostream & stream, const std::shared_ptr<T> & what)
|
|
{
|
|
stream << "shared_ptr(" << what.get() <<", use_count = " << what.use_count() << ") {";
|
|
if (what)
|
|
stream << *what;
|
|
else
|
|
stream << "nullptr";
|
|
stream << "}";
|
|
return stream;
|
|
}
|
|
|
|
template <typename T>
|
|
std::ostream & operator<<(std::ostream & stream, const std::unique_ptr<T> & what)
|
|
{
|
|
stream << "unique_ptr(" << what.get() <<") {";
|
|
if (what)
|
|
stream << *what;
|
|
else
|
|
stream << "nullptr";
|
|
stream << "}";
|
|
return stream;
|
|
}
|
|
|
|
|
|
#include <optional>
|
|
|
|
template <typename T>
|
|
std::ostream & operator<<(std::ostream & stream, const std::optional<T> & what)
|
|
{
|
|
stream << "optional{";
|
|
if (what)
|
|
stream << *what;
|
|
else
|
|
stream << "empty";
|
|
stream << "}";
|
|
return stream;
|
|
}
|
|
|
|
|
|
namespace std { class exception; }
|
|
std::ostream & operator<<(std::ostream & stream, const std::exception & what);
|
|
|
|
// TODO: add more types
|