diff options
author | 2015-08-26 15:50:06 +0300 | |
---|---|---|
committer | 2015-08-26 15:50:06 +0300 | |
commit | 53f0e28d7f30c7175cbb15884c309613593859d8 (patch) | |
tree | e75ff499233519baa6c50c60fa0c726da7b42e03 /external_libs/yaml-cpp/src/ostream.cpp | |
parent | a628a35b10fbd38211c353f506a8c49c2cc3dd7e (diff) | |
parent | 00d6f001971b324bb9c884aaf0384a4cee076550 (diff) |
Merge branch 'lib_fix'
Diffstat (limited to 'external_libs/yaml-cpp/src/ostream.cpp')
-rw-r--r-- | external_libs/yaml-cpp/src/ostream.cpp | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/external_libs/yaml-cpp/src/ostream.cpp b/external_libs/yaml-cpp/src/ostream.cpp new file mode 100644 index 00000000..a7f1e14b --- /dev/null +++ b/external_libs/yaml-cpp/src/ostream.cpp @@ -0,0 +1,63 @@ +#include "yaml-cpp/ostream.h" +#include <cstring> + +namespace YAML +{ + ostream::ostream(): m_buffer(0), m_pos(0), m_size(0), m_row(0), m_col(0) + { + reserve(1024); + } + + ostream::~ostream() + { + delete [] m_buffer; + } + + void ostream::reserve(unsigned size) + { + if(size <= m_size) + return; + + char *newBuffer = new char[size]; + std::memset(newBuffer, 0, size * sizeof(char)); + std::memcpy(newBuffer, m_buffer, m_size * sizeof(char)); + delete [] m_buffer; + m_buffer = newBuffer; + m_size = size; + } + + void ostream::put(char ch) + { + if(m_pos >= m_size - 1) // an extra space for the NULL terminator + reserve(m_size * 2); + + m_buffer[m_pos] = ch; + m_pos++; + + if(ch == '\n') { + m_row++; + m_col = 0; + } else + m_col++; + } + + ostream& operator << (ostream& out, const char *str) + { + std::size_t length = std::strlen(str); + for(std::size_t i=0;i<length;i++) + out.put(str[i]); + return out; + } + + ostream& operator << (ostream& out, const std::string& str) + { + out << str.c_str(); + return out; + } + + ostream& operator << (ostream& out, char ch) + { + out.put(ch); + return out; + } +} |