spdlog/include/c11log/details/fast_oss.h

87 lines
1.7 KiB
C
Raw Normal View History

2014-01-25 17:09:04 +08:00
#pragma once
2014-03-07 06:52:50 +08:00
// Fast ostringstream like supprt which return its string by ref and nothing more
2014-01-25 17:09:04 +08:00
#include<streambuf>
#include<string>
2014-03-07 06:52:50 +08:00
namespace c11log
{
namespace details
{
class str_devicebuf:public std::streambuf
{
2014-01-25 17:09:04 +08:00
public:
2014-02-22 04:51:54 +08:00
str_devicebuf() = default;
~str_devicebuf() = default;
2014-03-04 07:23:38 +08:00
2014-03-07 06:52:50 +08:00
str_devicebuf(const str_devicebuf& other) = delete;
str_devicebuf(str_devicebuf&& other) = delete;
str_devicebuf& operator=(const str_devicebuf&) = delete;
str_devicebuf& operator=(str_devicebuf&&) = delete;
const std::string& str_ref() const
{
2014-02-22 04:51:54 +08:00
return _str;
}
2014-01-25 17:09:04 +08:00
void reset_str()
{
2014-02-22 04:51:54 +08:00
_str.clear();
}
2014-01-25 17:09:04 +08:00
protected:
virtual int sync() override
{
2014-02-22 04:51:54 +08:00
return 0;
2014-03-17 08:01:40 +08:00
2014-02-22 04:51:54 +08:00
}
2014-01-25 17:09:04 +08:00
virtual std::streamsize xsputn(const char_type* s, std::streamsize count) override
{
2014-03-17 02:48:37 +08:00
auto ssize = _str.size();
auto cap_left = _str.capacity() - ssize;
if(cap_left < static_cast<std::size_t>(count))
_str.reserve(ssize + count + 128);
2014-02-22 04:51:54 +08:00
_str.append(s, static_cast<unsigned int>(count));
return count;
}
2014-01-25 17:09:04 +08:00
virtual int_type overflow(int_type ch) override
{
2014-02-22 04:51:54 +08:00
if (ch != traits_type::eof())
_str.append((char*)&ch, 1);
return 1;
}
2014-01-25 17:09:04 +08:00
private:
2014-02-22 04:51:54 +08:00
std::string _str;
2014-01-25 17:09:04 +08:00
};
2014-03-07 06:52:50 +08:00
class fast_oss:public std::ostream
{
2014-01-25 17:09:04 +08:00
public:
2014-02-22 04:51:54 +08:00
fast_oss():std::ostream(&_dev) {}
~fast_oss() = default;
2014-03-04 07:23:38 +08:00
2014-03-07 06:52:50 +08:00
fast_oss(const fast_oss& other) = delete;
fast_oss(fast_oss&& other) = delete;
fast_oss& operator=(const fast_oss& other) = delete;
const std::string& str_ref() const
{
2014-02-22 04:51:54 +08:00
return _dev.str_ref();
}
void reset_str()
{
_dev.reset_str();
}
2014-01-25 17:09:04 +08:00
private:
2014-02-22 04:51:54 +08:00
str_devicebuf _dev;
2014-01-25 17:09:04 +08:00
};
}
2014-02-04 02:28:19 +08:00
}