// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers // // This file is part of Bytecoin. // // Bytecoin is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Bytecoin is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with Bytecoin. If not, see . #pragma once #include #include #include // memcpy #include #include namespace CryptoNote { class MemoryStream: public Common::IOutputStream { public: MemoryStream() : m_writePos(0) { } virtual size_t writeSome(const void* data, size_t size) override { if (size == 0) { return 0; } if (m_writePos + size > m_buffer.size()) { m_buffer.resize(m_writePos + size); } memcpy(&m_buffer[m_writePos], data, size); m_writePos += size; return size; } size_t size() { return m_buffer.size(); } const uint8_t* data() { return m_buffer.data(); } void clear() { m_writePos = 0; m_buffer.resize(0); } private: size_t m_writePos; std::vector m_buffer; }; }