blob: 70ffec8dd3408126ff938609582d5cb3ebe3ab6f [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2013-2017 Regents of the University of California.
*
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
*
* ndn-cxx library 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.
*
* ndn-cxx library 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 copies of the GNU General Public License and GNU Lesser
* General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
* <http://www.gnu.org/licenses/>.
*
* See AUTHORS.md for complete list of ndn-cxx authors and contributors.
*
* @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html>
*/
#ifndef NDN_ENCODING_BUFFER_HPP
#define NDN_ENCODING_BUFFER_HPP
#include "../common.hpp"
#include <vector>
namespace ndn {
/**
* @brief General-purpose automatically managed/resized buffer
*
* In most respect, the Buffer class is equivalent to a `std::vector<uint8_t>`, and it in fact
* uses the latter as a base class. In addition to that, it provides the get<T>() helper method
* that automatically casts the returned pointer to the requested type.
*/
class Buffer : public std::vector<uint8_t>
{
public:
using std::vector<uint8_t>::vector;
/** @brief Creates an empty Buffer
*/
Buffer();
/** @brief Creates a Buffer by copying contents from a raw buffer
* @param buf const pointer to buffer to copy
* @param length length of the buffer to copy
*/
Buffer(const void* buf, size_t length);
/** @return pointer to the first byte of the buffer, cast to the requested type T
*/
template<class T>
T*
get() noexcept
{
return reinterpret_cast<T*>(data());
}
/** @return const pointer to the first byte of the buffer, cast to the requested type T
*/
template<class T>
const T*
get() const noexcept
{
return reinterpret_cast<const T*>(data());
}
};
using BufferPtr = shared_ptr<Buffer>;
using ConstBufferPtr = shared_ptr<const Buffer>;
} // namespace ndn
#endif // NDN_ENCODING_BUFFER_HPP