libcruft-util/view.cpp

122 lines
2.8 KiB
C++

/*
* 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 "view.hpp"
#include "debug.hpp"
#include <cstring>
#include <iterator>
//-----------------------------------------------------------------------------
util::view::view ():
m_begin (nullptr),
m_end (nullptr)
{ ; }
//-----------------------------------------------------------------------------
util::view::view (const char *str):
m_begin (str),
m_end (str + strlen (str))
{ ; }
//-----------------------------------------------------------------------------
util::view::view (const char *_begin,
const char *_end):
m_begin (_begin),
m_end (_end)
{ ; }
//-----------------------------------------------------------------------------
const char*
util::view::begin (void) const
{
return m_begin;
}
//-----------------------------------------------------------------------------
const char*
util::view::end (void) const
{
return m_end;
}
//-----------------------------------------------------------------------------
bool
util::view::view::empty (void) const
{
return m_begin == nullptr ||
m_end == nullptr ||
m_begin == m_end;
}
//-----------------------------------------------------------------------------
size_t
util::view::size (void) const
{
return m_end - m_begin;
}
//-----------------------------------------------------------------------------
const char&
util::view::operator[] (size_t idx) const
{
CHECK_LT (m_begin + idx, m_end);
return m_begin[idx];
}
//-----------------------------------------------------------------------------
bool
util::view::operator== (const char *restrict rhs) const
{
return strlen (rhs) == size () &&
0 == strncmp (rhs, m_begin, size ());
}
//-----------------------------------------------------------------------------
bool
util::view::operator== (view v) const
{
return std::equal (m_begin, m_end, v.begin ());
}
//-----------------------------------------------------------------------------
std::ostream&
util::operator<< (std::ostream &os, util::view s)
{
std::copy (s.begin (), s.end (), std::ostream_iterator<char> (os));
return os;
}
//-----------------------------------------------------------------------------
bool
util::operator== (const char *str, view v)
{
return v == str;
}