vmime/src/headerField.cpp

101 lines
2.2 KiB
C++
Raw Normal View History

2004-10-05 10:28:21 +00:00
//
// VMime library (http://vmime.sourceforge.net)
// Copyright (C) 2002-2004 Vincent Richard <vincent@vincent-richard.net>
//
// 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 2 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, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#include "headerField.hpp"
#include "headerFieldFactory.hpp"
namespace vmime
{
headerField::headerField()
2004-10-21 15:05:47 +00:00
: m_name("X-Undefined")
2004-10-05 10:28:21 +00:00
{
}
headerField::headerField(const string& fieldName)
2004-10-21 15:05:47 +00:00
: m_name(fieldName)
2004-10-05 10:28:21 +00:00
{
}
headerField::~headerField()
{
}
headerField* headerField::clone() const
{
2004-10-21 15:05:47 +00:00
headerField* field = headerFieldFactory::getInstance()->create(m_name);
2004-10-05 10:28:21 +00:00
field->copyFrom(*this);
return (field);
}
2004-10-21 15:05:47 +00:00
void headerField::copyFrom(const component& other)
2004-10-05 10:28:21 +00:00
{
2004-10-21 15:05:47 +00:00
const headerField& hf = dynamic_cast <const headerField&>(other);
getValue().copyFrom(hf.getValue());
2004-10-05 10:28:21 +00:00
}
2004-10-21 15:05:47 +00:00
headerField& headerField::operator=(const headerField& other)
2004-10-05 10:28:21 +00:00
{
2004-10-21 15:05:47 +00:00
copyFrom(other);
2004-10-05 10:28:21 +00:00
return (*this);
}
2004-10-21 15:05:47 +00:00
void headerField::parse(const string& buffer, const string::size_type position, const string::size_type end,
string::size_type* newPosition)
2004-10-05 10:28:21 +00:00
{
2004-10-21 15:05:47 +00:00
getValue().parse(buffer, position, end, newPosition);
2004-12-15 20:28:09 +00:00
setParsedBounds(position, end);
2004-10-05 10:28:21 +00:00
}
2004-10-21 15:05:47 +00:00
void headerField::generate(utility::outputStream& os, const string::size_type maxLineLength,
2004-10-05 10:28:21 +00:00
const string::size_type curLinePos, string::size_type* newLinePos) const
{
2004-10-21 15:05:47 +00:00
os << m_name + ": ";
2004-10-05 10:28:21 +00:00
2004-10-21 15:05:47 +00:00
getValue().generate(os, maxLineLength, curLinePos + m_name.length() + 2, newLinePos);
2004-10-05 10:28:21 +00:00
}
2004-10-21 15:05:47 +00:00
const string headerField::getName() const
2004-10-05 10:28:21 +00:00
{
2004-10-21 15:05:47 +00:00
return (m_name);
2004-10-05 10:28:21 +00:00
}
const bool headerField::isCustom() const
{
2004-10-21 15:05:47 +00:00
return (m_name.length() > 2 && m_name[0] == 'X' && m_name[1] == '-');
2004-10-05 10:28:21 +00:00
}
} // vmime