0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-25 05:18:23 +02:00
construct/include/ircd/buffer/shared_buffer.h
Jason Volk 30796e5729 ircd::buffer: Fix template name conflicts for clang-11; apply inline linkages.
ircd::json::tuple: Fix template name related for clang-11.

ircd::ctx: Fix template related for clang-11; inline linkages.

ircd:Ⓜ️🪝 Fix template related for clang-11.
2020-10-29 04:06:59 -07:00

89 lines
2.1 KiB
C++

// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
#pragma once
#define HAVE_IRCD_BUFFER_SHARED_BUFFER_H
/// Like shared_ptr, this template shares ownership of an allocated buffer
///
template<class buffer_type>
struct ircd::buffer::shared_buffer
:buffer_type
{
std::shared_ptr<char> sp;
shared_buffer(unique_buffer<buffer_type> &&) noexcept;
explicit shared_buffer(const size_t &size, const size_t &align = 0);
explicit shared_buffer(const const_buffer &);
shared_buffer() = default;
shared_buffer(shared_buffer &&) = default;
shared_buffer(const shared_buffer &) = default;
shared_buffer &operator=(shared_buffer &&) = default;
shared_buffer &operator=(const shared_buffer &) = default;
shared_buffer &operator=(unique_buffer<buffer_type> &&) noexcept;
~shared_buffer() = default;
};
template<class buffer_type>
inline
ircd::buffer::shared_buffer<buffer_type>::shared_buffer(const const_buffer &src)
:shared_buffer
{
unique_buffer<buffer_type>
{
src
}
}
{}
template<class buffer_type>
inline
ircd::buffer::shared_buffer<buffer_type>::shared_buffer(const size_t &size,
const size_t &align)
:shared_buffer
{
unique_buffer<buffer_type>
{
size, align
}
}
{}
template<class buffer_type>
inline
ircd::buffer::shared_buffer<buffer_type>::shared_buffer(unique_buffer<buffer_type> &&buf)
noexcept
:buffer_type
{
data(buf), size(buf)
}
,sp
{
data(buf), &std::free
}
{
buf.release();
}
template<class buffer_type>
inline ircd::buffer::shared_buffer<buffer_type> &
ircd::buffer::shared_buffer<buffer_type>::operator=(unique_buffer<buffer_type> &&buf)
noexcept
{
sp.reset(data(buf), &std::free);
*static_cast<buffer_type *>(this) = buffer_type
{
sp.get(), size(buf)
};
buf.release();
return *this;
}