1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
/*
* Copyright (c) 2011-2013 libbitcoin developers (see AUTHORS)
*
* This file is part of libbitcoin.
*
* libbitcoin is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License with
* additional permissions to the one published by the Free Software
* Foundation, either version 3 of the License, or (at your option)
* any later version. For more information see LICENSE.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBBITCOIN_NET_SHARED_CONST_BUFFER_HPP
#define LIBBITCOIN_NET_SHARED_CONST_BUFFER_HPP
#include <boost/asio.hpp>
#include <bitcoin/types.hpp>
#include <bitcoin/utility/serializer.hpp>
namespace libbitcoin {
// A reference-counted non-modifiable buffer class.
class shared_const_buffer
{
public:
// Construct from a stream object
explicit shared_const_buffer(const data_chunk& user_data)
: data_(std::make_shared<data_chunk>(
std::begin(user_data), std::end(user_data))),
buffer_(boost::asio::buffer(*data_))
{
}
// Implement the ConstBufferSequence requirements.
typedef boost::asio::const_buffer value_type;
typedef const value_type* const_iterator;
const_iterator begin() const
{
return &buffer_;
}
const_iterator end() const
{
return &buffer_ + 1;
}
private:
std::shared_ptr<data_chunk> data_;
value_type buffer_;
};
} // namespace libbitcoin
#endif
|