spdlog/include/c11log/details/fast_oss.h

82 lines
1.4 KiB
C
Raw Normal View History

2014-01-25 04:09:04 -05:00
#pragma once
#include<streambuf>
#include<string>
namespace c11log
{
namespace details
{
2014-01-25 04:09:04 -05:00
class str_devicebuf:public std::streambuf
{
2014-01-25 04:09:04 -05:00
public:
str_devicebuf() = default;
~str_devicebuf() = default;
str_devicebuf(const str_devicebuf& other):std::streambuf(),_str(other._str) {}
str_devicebuf& operator=(const str_devicebuf other)
{
if(this != &other)
_str = other._str;
return *this;
}
2014-01-25 04:09:04 -05:00
const std::string& str_ref() const {
return _str;
}
2014-01-25 04:09:04 -05:00
void clear() {
_str.clear();
}
2014-01-25 04:09:04 -05:00
protected:
virtual int sync() override {
return 0;
}
2014-01-25 04:09:04 -05:00
virtual std::streamsize xsputn(const char_type* s, std::streamsize count) override {
_str.append(s, static_cast<unsigned int>(count));
return count;
}
2014-01-25 04:09:04 -05:00
virtual int_type overflow(int_type ch) override {
if (ch != traits_type::eof())
_str.append((char*)&ch, 1);
return 1;
}
2014-01-25 04:09:04 -05:00
private:
std::string _str;
2014-01-25 04:09:04 -05:00
};
class fast_oss:public std::ostream
{
2014-01-25 04:09:04 -05:00
public:
fast_oss():std::ostream(&_dev) {}
~fast_oss() = default;
fast_oss(const fast_oss& other):std::basic_ios<char>(), std::ostream(),_dev(other._dev) {}
2014-02-08 18:56:21 -05:00
fast_oss& operator=(const fast_oss& other)
{
if(&other != this)
_dev = other._dev;
return *this;
}
2014-01-25 04:09:04 -05:00
const std::string& str_ref() const
{
return _dev.str_ref();
}
2014-01-25 04:09:04 -05:00
const std::string str() const
{
return _dev.str_ref();
}
2014-01-25 04:09:04 -05:00
void clear()
{
_dev.clear();
}
2014-01-25 04:09:04 -05:00
private:
str_devicebuf _dev;
2014-01-25 04:09:04 -05:00
};
}
2014-02-03 13:28:19 -05:00
}