diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-22 00:14:32 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-22 00:14:32 +0100 |
commit | ce7524f3d64a9d687c6786b7a3bb0d0fe76b52fa (patch) | |
tree | 3e455bcb7574f20d704aeb3ad94e166fb92ecf22 /src/Buffer.cpp | |
parent | f24c77a1ff2dc6bf98802b61fa85030b6c8b75f5 (diff) | |
download | dabmod-ce7524f3d64a9d687c6786b7a3bb0d0fe76b52fa.tar.gz dabmod-ce7524f3d64a9d687c6786b7a3bb0d0fe76b52fa.tar.bz2 dabmod-ce7524f3d64a9d687c6786b7a3bb0d0fe76b52fa.zip |
Minor Buffer improvements
Diffstat (limited to 'src/Buffer.cpp')
-rw-r--r-- | src/Buffer.cpp | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 3f6f296..e96b8d6 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -3,7 +3,7 @@ Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2017 + Copyright (C) 2018 Matthias P. Braendli, matthias.braendli@mpb.li http://opendigitalradio.org @@ -58,7 +58,7 @@ Buffer::Buffer(Buffer&& other) other.m_data = nullptr; } -Buffer::Buffer(const std::vector<uint8_t> &vec) +Buffer::Buffer(const std::vector<uint8_t>& vec) { PDEBUG("Buffer::Buffer(vector [%zu])\n", vec.size()); @@ -78,34 +78,38 @@ Buffer::~Buffer() } -Buffer &Buffer::operator=(const Buffer ©) +Buffer& Buffer::operator=(const Buffer& other) { - setData(copy.m_data, copy.m_len); + if (&other != this) { + setData(other.m_data, other.m_len); + } return *this; } Buffer& Buffer::operator=(Buffer&& other) { - m_len = other.m_len; - m_capacity = other.m_capacity; - m_data = other.m_data; - - other.m_len = 0; - other.m_capacity = 0; - other.m_data = nullptr; + if (&other != this) { + m_len = other.m_len; + m_capacity = other.m_capacity; + m_data = other.m_data; + + other.m_len = 0; + other.m_capacity = 0; + other.m_data = nullptr; + } return *this; } -Buffer &Buffer::operator=(const std::vector<uint8_t> ©) +Buffer& Buffer::operator=(const std::vector<uint8_t>& buf) { - setData(copy.data(), copy.size()); + setData(buf.data(), buf.size()); return *this; } -Buffer &Buffer::operator+=(const Buffer ©) +Buffer& Buffer::operator+=(const Buffer& other) { - appendData(copy.m_data, copy.m_len); + appendData(other.m_data, other.m_len); return *this; } @@ -143,6 +147,7 @@ void Buffer::appendData(const void *data, size_t len) { size_t offset = m_len; setLength(m_len + len); + if (data != nullptr) { memcpy((char*)m_data + offset, data, len); } |