//
// aegis - project change supervisor
// Copyright (C) 1998, 2001, 2003-2006, 2008 Peter Miller
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program 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, see
// .
//
#include
#include
#include
stracc_t::~stracc_t()
{
delete [] buffer;
length = 0;
maximum = 0;
buffer = 0;
}
stracc_t::stracc_t() :
length(0),
maximum(0),
buffer(0)
{
}
stracc_t::stracc_t(const stracc_t &arg) :
length(0),
maximum(0),
buffer(0)
{
push_back(arg);
}
stracc_t &
stracc_t::operator=(const stracc_t &arg)
{
if (this != &arg)
{
clear();
push_back(arg);
}
return *this;
}
string_ty *
stracc_t::mkstr()
const
{
return str_n_from_c(buffer, length);
}
void
stracc_t::overflow(char c)
{
if (length >= maximum)
{
size_t new_maximum = maximum * 2 + 16;
char *new_buffer = new char [new_maximum];
if (length)
memcpy(new_buffer, buffer, length);
delete [] buffer;
buffer = new_buffer;
maximum = new_maximum;
}
buffer[length++] = c;
}
void
stracc_t::push_back(const stracc_t &arg)
{
push_back(arg.buffer, arg.length);
}
void
stracc_t::push_back(const char *cp, size_t n)
{
if (!n)
return;
if (length + n > maximum)
{
size_t new_maximum = maximum;
for (;;)
{
new_maximum = new_maximum * 2 + 16;
if (length + n <= new_maximum)
break;
}
char *new_buffer = new char [new_maximum];
if (length)
memcpy(new_buffer, buffer, length);
delete [] buffer;
buffer = new_buffer;
maximum = new_maximum;
}
memcpy(buffer + length, cp, n);
length += n;
}
void
stracc_t::push_back(const char *s)
{
push_back(s, strlen(s));
}
size_t
stracc_t::count_nul_characters()
const
{
size_t result = 0;
const char *cp = buffer;
const char *ep = cp + length;
while (cp < ep)
{
if (!*cp)
++result;
++cp;
}
return result;
}