libcruft-util/alloc/raw/linear.cpp

122 lines
2.6 KiB
C++
Raw Normal View History

2015-11-13 17:17:37 +11:00
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
*/
#include "linear.hpp"
2015-11-13 17:17:37 +11:00
#include "../../pointer.hpp"
#include "../../debug.hpp"
2015-11-13 17:17:37 +11:00
using util::alloc::raw::linear;
2015-11-13 17:17:37 +11:00
///////////////////////////////////////////////////////////////////////////////
linear::linear (util::view<std::byte*> _data):
m_begin (_data.begin ()),
m_end (_data.end ()),
m_cursor (_data.begin ())
{ ; }
2015-11-13 17:17:37 +11:00
///////////////////////////////////////////////////////////////////////////////
std::byte*
2018-02-28 16:19:27 +11:00
linear::data (void)
{
return m_begin;
}
//-----------------------------------------------------------------------------
const std::byte*
2018-02-28 16:19:27 +11:00
linear::data (void) const
{
return m_begin;
}
2016-06-22 19:51:18 +10:00
//-----------------------------------------------------------------------------
std::byte*
2017-08-31 13:48:33 +10:00
linear::begin (void)
2016-06-22 19:51:18 +10:00
{
return m_begin;
}
//-----------------------------------------------------------------------------
const std::byte*
2017-08-31 13:48:33 +10:00
linear::begin (void) const
{
return m_begin;
}
//-----------------------------------------------------------------------------
std::byte*
linear::end (void)
{
return m_end;
}
//-----------------------------------------------------------------------------
const std::byte*
linear::end (void) const
{
return m_end;
}
2016-06-22 19:51:18 +10:00
//-----------------------------------------------------------------------------
size_t
linear::offset (const void *_ptr) const
{
auto ptr = reinterpret_cast<const std::byte*> (_ptr);
2016-06-22 19:51:18 +10:00
CHECK_GE (ptr, m_begin);
return ptr - m_begin;
}
2015-11-13 17:17:37 +11:00
///////////////////////////////////////////////////////////////////////////////
void
linear::reset (void)
{
m_cursor = m_begin;
}
///////////////////////////////////////////////////////////////////////////////
size_t
linear::capacity (void) const
{
return m_end - m_begin;
}
//-----------------------------------------------------------------------------
size_t
2015-11-30 16:08:07 +11:00
linear::used (void) const
{
return m_cursor - m_begin;
}
//-----------------------------------------------------------------------------
size_t
linear::remain (void) const
{
2015-11-30 16:08:07 +11:00
return capacity () - used ();
}