Mercurial > hg > orthanc
view Core/LoggingUtils.h @ 3587:76b3228f99b0
Sort file lists
to make builds reproducible in spite of
nondeterministic filesystem readdir order.
See https://reproducible-builds.org/ for why this matters.
author | Bernhard M. Wiedemann <bernhard+hgcommit@lsmod.de> |
---|---|
date | Thu, 05 Dec 2019 16:21:41 +0100 |
parents | 815b81142ff7 |
children |
line wrap: on
line source
#include <sstream> #include <iostream> namespace Orthanc { namespace Logging { /** std::streambuf subclass used in FunctionCallingStream */ template<typename T> class FuncStreamBuf : public std::stringbuf { public: FuncStreamBuf(T func) : func_(func) {} virtual int sync() { std::string text = this->str(); const char* buf = text.c_str(); func_(buf); this->str(""); return 0; } private: T func_; }; } }