// 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_UNIQUE_BUFFER_H

// Fwd decl; circ dep.
namespace ircd::allocator
{
	std::unique_ptr<char, decltype(&std::free)>
	aligned_alloc(const size_t &align, const size_t &size);
}

/// Like unique_ptr, this template holds ownership of an allocated buffer
///
template<class buffer>
struct ircd::buffer::unique_buffer
:buffer
{
	bool operator!() const;
	explicit operator bool() const;

	buffer release();

	unique_buffer() = default;
	unique_buffer(const size_t &size, const size_t &align = 0);
	explicit unique_buffer(const const_buffer &);
	unique_buffer(unique_buffer &&) noexcept;
	unique_buffer(const unique_buffer &) = delete;
	unique_buffer &operator=(unique_buffer &&) & noexcept;
	unique_buffer &operator=(const unique_buffer &) = delete;
	~unique_buffer() noexcept;
};

template<class buffer>
ircd::buffer::unique_buffer<buffer>::unique_buffer(const const_buffer &src)
:buffer
{
	allocator::aligned_alloc(0, ircd::buffer::size(src)).release(), ircd::buffer::size(src)
}
{
	using ircd::buffer::size;

	assert(this->begin() != nullptr);
	assert(size(src) == size(*this));
	const mutable_buffer dst
	{
		const_cast<char *>(this->begin()), size(src)
	};

	copy(dst, src);
}

template<class buffer>
ircd::buffer::unique_buffer<buffer>::unique_buffer(const size_t &size,
                                                   const size_t &align)
:buffer
{
	allocator::aligned_alloc(align, size).release(), size
}
{}

template<class buffer>
ircd::buffer::unique_buffer<buffer>::unique_buffer(unique_buffer &&other)
noexcept
:buffer
{
	other.release()
}
{
	assert(std::get<0>(other) == nullptr);
}

template<class buffer>
ircd::buffer::unique_buffer<buffer> &
ircd::buffer::unique_buffer<buffer>::operator=(unique_buffer &&other)
& noexcept
{
	this->~unique_buffer();

	static_cast<buffer &>(*this) = other.release();
	assert(std::get<0>(other) == nullptr);

	return *this;
}

template<class buffer>
ircd::buffer::unique_buffer<buffer>::~unique_buffer()
noexcept
{
	std::free(const_cast<char *>(this->begin()));
}

template<class buffer>
buffer
ircd::buffer::unique_buffer<buffer>::release()
{
	const buffer ret{*this};
	std::get<0>(*this) = nullptr;
	std::get<1>(*this) = nullptr;
	return ret;
}

template<class buffer>
ircd::buffer::unique_buffer<buffer>::operator
bool()
const
{
	return !this->buffer::empty();
}

template<class buffer>
bool
ircd::buffer::unique_buffer<buffer>::operator!()
const
{
	return this->buffer::empty();
}