Exheredludis/paludis/util/tail_output_stream.cc
Saleem Abdulrasool 64ba7d5be8 modernize: use default method synthesis
Convert a number of destructors to default synthesized functions.  Try to
inline a few instances into the header.  It should be possible to inline all of
them, however, gcc seems to emit a number of warnings.  Furthermore, some of the
destructors are pure-virtualed, but provide an implementation.  Placing the
definition into the header causes ODR violations.
2016-08-06 11:58:04 -07:00

119 lines
2.9 KiB
C++

/* vim: set sw=4 sts=4 et foldmethod=syntax : */
/*
* Copyright (c) 2008, 2010, 2011, 2012 Ciaran McCreesh
*
* This file is part of the Paludis package manager. Paludis is free software;
* you can redistribute it and/or modify it under the terms of the GNU General
* Public License version 2, as published by the Free Software Foundation.
*
* Paludis 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 General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <paludis/util/tail_output_stream.hh>
#include <paludis/util/pimp-impl.hh>
#include <paludis/util/iterator_funcs.hh>
#include <functional>
#include <algorithm>
#include <list>
#include <mutex>
using namespace paludis;
namespace paludis
{
template <>
struct Imp<TailOutputStreamBuf>
{
unsigned int n;
const unsigned int size;
std::list<std::string> tail;
std::mutex mutex;
Imp(const unsigned int nn) :
n(1),
size(nn)
{
tail.push_back("");
}
};
}
TailOutputStreamBuf::TailOutputStreamBuf(const unsigned int n) :
_imp(n)
{
}
TailOutputStreamBuf::~TailOutputStreamBuf() = default;
TailOutputStreamBuf::int_type
TailOutputStreamBuf::overflow(int_type c)
{
if (c != traits_type::eof())
_append(std::string(1, c));
return c;
}
std::streamsize
TailOutputStreamBuf::xsputn(const char * s, std::streamsize num)
{
_append(std::string(s, num));
return num;
}
void
TailOutputStreamBuf::_append(const std::string & s)
{
std::unique_lock<std::mutex> lock(_imp->mutex);
for (std::string::size_type p(0), p_end(s.length()) ; p != p_end ; ++p)
{
if ('\n' == s[p])
{
if (++_imp->n > _imp->size + 1)
{
_imp->tail.pop_front();
--_imp->n;
}
_imp->tail.push_back("");
}
else
_imp->tail.back().append(&s[p], 1);
}
}
const std::shared_ptr<const Sequence<std::string> >
TailOutputStreamBuf::tail(const bool clear)
{
std::shared_ptr<Sequence<std::string> > result(std::make_shared<Sequence<std::string>>());
std::unique_lock<std::mutex> lock(_imp->mutex);
for (std::list<std::string>::const_iterator i(_imp->tail.begin()), i_end(_imp->tail.end()), i_last(previous(_imp->tail.end())) ;
i != i_end ; ++i)
{
if (i == i_last && i->empty())
continue;
result->push_back(*i);
}
if (clear)
{
_imp->tail.clear();
_imp->n = 1;
_imp->tail.push_back("");
}
return result;
}
namespace paludis
{
template class Pimp<TailOutputStreamBuf>;
}