spdlog/include/c11log/details/fast_buf.h

104 lines
2.4 KiB
C
Raw Normal View History

2014-03-19 22:00:26 -04:00
#pragma once
2014-03-22 10:29:43 -04:00
#include <array>
2014-03-19 22:00:26 -04:00
#include <vector>
2014-03-22 10:29:43 -04:00
#include <algorithm>
2014-03-19 22:00:26 -04:00
2014-03-22 10:26:08 -04:00
// Fast memory storage
2014-03-19 22:00:26 -04:00
// stores its contents on the stack when possible, in vector<char> otherwise
// NOTE: User should be remember that returned buffer might be on the stack!!
2014-03-22 10:37:48 -04:00
namespace c11log
{
namespace details
{
2014-03-19 22:00:26 -04:00
template<std::size_t STACK_SIZE=128>
class fast_buf
{
public:
fast_buf():_stack_size(0) {}
~fast_buf() {};
2014-03-22 08:11:17 -04:00
fast_buf(const bufpair_t& buf_to_copy):fast_buf()
{
append(buf_to_copy);
}
2014-03-19 22:00:26 -04:00
fast_buf(const fast_buf& other)
{
_stack_size = other._stack_size;
if(!other._v.empty())
_v = other._v;
else if(_stack_size)
std::copy(other._stack_buf.begin(), other._stack_buf.begin()+_stack_size, _stack_buf.begin());
}
fast_buf(fast_buf&& other)
{
_stack_size = other._stack_size;
if(!other._v.empty())
_v = other._v;
else if(_stack_size)
std::copy(other._stack_buf.begin(), other._stack_buf.begin()+_stack_size, _stack_buf.begin());
other.clear();
}
fast_buf& operator=(const fast_buf& other) = delete;
2014-03-22 08:11:17 -04:00
fast_buf& operator=(fast_buf&& other) = delete;
2014-03-19 22:00:26 -04:00
void append(const char* buf, std::size_t size)
{
//If we are aleady using _v, forget about the stack
if(!_v.empty())
{
_v.insert(_v.end(), buf, buf+ size);
}
//Try use the stack
else
{
if(_stack_size+size <= STACK_SIZE)
{
std::memcpy(&_stack_buf[_stack_size], buf, size);
_stack_size+=size;
}
//Not enough stack space. Copy all to _v
else
{
2014-03-22 08:11:17 -04:00
_v.reserve(_stack_size+size);
2014-03-19 22:00:26 -04:00
if(_stack_size)
_v.insert(_v.end(), _stack_buf.begin(), _stack_buf.begin() +_stack_size);
_v.insert(_v.end(), buf, buf+size);
}
}
}
2014-03-22 08:11:17 -04:00
void append(const bufpair_t &buf)
{
append(buf.first, buf.second);
}
2014-03-19 22:00:26 -04:00
void clear()
{
_stack_size = 0;
_v.clear();
}
bufpair_t get()
{
if(!_v.empty())
return bufpair_t(_v.data(), _v.size());
else
return bufpair_t(_stack_buf.data(), _stack_size);
}
private:
std::vector<char> _v;
std::array<char, STACK_SIZE> _stack_buf;
2014-03-22 08:11:17 -04:00
std::size_t _stack_size;
2014-03-19 22:00:26 -04:00
};
}
} //namespace c11log { namespace details {