mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-16 08:55:46 +08:00
136 lines
2.8 KiB
C++
136 lines
2.8 KiB
C++
#pragma once
|
|
|
|
// A faster-than-ostringstream class
|
|
// uses stack_buf as the underlying buffer (upto 192 bytes before using the heap)
|
|
|
|
#include <ostream>
|
|
#include <iomanip>
|
|
#include "fast_istostr.h"
|
|
#include "stack_buf.h"
|
|
|
|
|
|
namespace c11log
|
|
{
|
|
namespace details
|
|
{
|
|
|
|
class stack_devicebuf :public std::streambuf
|
|
{
|
|
public:
|
|
static const unsigned short stack_size = 256;
|
|
using stackbuf_t = stack_buf<stack_size>;
|
|
|
|
stack_devicebuf() = default;
|
|
~stack_devicebuf() = default;
|
|
stack_devicebuf& operator=(const stack_devicebuf&) = delete;
|
|
|
|
stack_devicebuf(const stack_devicebuf& other) :std::basic_streambuf<char>(), _stackbuf(other._stackbuf)
|
|
{}
|
|
|
|
stack_devicebuf(stack_devicebuf&& other):
|
|
std::basic_streambuf<char>(),
|
|
_stackbuf(std::move(other._stackbuf))
|
|
{
|
|
other.clear();
|
|
}
|
|
|
|
stackbuf_t::bufpair_t buf() const
|
|
{
|
|
return _stackbuf.get();
|
|
}
|
|
|
|
std::size_t size() const
|
|
{
|
|
return _stackbuf.size();
|
|
}
|
|
|
|
void clear()
|
|
{
|
|
_stackbuf.clear();
|
|
}
|
|
|
|
protected:
|
|
// copy the give buffer into the accumulated fast buffer
|
|
std::streamsize xsputn(const char_type* s, std::streamsize count) override
|
|
{
|
|
_stackbuf.append(s, static_cast<unsigned int>(count));
|
|
return count;
|
|
}
|
|
|
|
int_type overflow(int_type ch) override
|
|
{
|
|
if (traits_type::not_eof(ch))
|
|
{
|
|
char c = traits_type::to_char_type(ch);
|
|
xsputn(&c, 1);
|
|
}
|
|
return ch;
|
|
}
|
|
private:
|
|
stackbuf_t _stackbuf;
|
|
};
|
|
|
|
|
|
class fast_oss :public std::ostream
|
|
{
|
|
public:
|
|
fast_oss() :std::ostream(&_dev) {}
|
|
~fast_oss() = default;
|
|
|
|
fast_oss& operator=(const fast_oss& other) = delete;
|
|
fast_oss& operator=(const fast_oss&& other) = delete;
|
|
|
|
fast_oss(const fast_oss& other) :std::basic_ios<char>(), std::ostream(&_dev), _dev(other._dev)
|
|
{}
|
|
|
|
fast_oss(fast_oss&& other) :std::basic_ios<char>(), std::ostream(&_dev), _dev(std::move(other._dev))
|
|
{
|
|
other.clear();
|
|
}
|
|
|
|
std::string str()
|
|
{
|
|
auto buf = _dev.buf();
|
|
return std::string(buf.first, buf.second);
|
|
}
|
|
|
|
|
|
std::size_t size() const
|
|
{
|
|
return _dev.size();
|
|
}
|
|
|
|
void clear()
|
|
{
|
|
_dev.clear();
|
|
}
|
|
|
|
// The following were added because they add significant boost to perfromance
|
|
void putc(char c)
|
|
{
|
|
_dev.sputc(c);
|
|
}
|
|
|
|
|
|
// put int and pad with zeroes if smalled than min_width
|
|
void put_int(int n, int min_width)
|
|
{
|
|
std::string s;
|
|
details::fast_itostr(n, s, min_width);
|
|
_dev.sputn(s.data(), s.size());
|
|
//sprintf_s(buf, "%d", n);
|
|
//_dev.sputn(buf, width);
|
|
}
|
|
|
|
void put_str(const std::string& str)
|
|
{
|
|
_dev.sputn(str.data(), str.size());
|
|
}
|
|
|
|
|
|
private:
|
|
stack_devicebuf _dev;
|
|
};
|
|
}
|
|
}
|