2004-10-05 10:28:21 +00:00
|
|
|
//
|
2005-03-18 21:33:11 +00:00
|
|
|
// VMime library (http://www.vmime.org)
|
2005-01-03 12:26:48 +00:00
|
|
|
// Copyright (C) 2002-2005 Vincent Richard <vincent@vincent-richard.net>
|
2004-10-05 10:28:21 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2005-09-17 10:10:29 +00:00
|
|
|
// 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.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// Linking this library statically or dynamically with other modules is making
|
|
|
|
// a combined work based on this library. Thus, the terms and conditions of
|
|
|
|
// the GNU General Public License cover the whole combination.
|
2004-10-05 10:28:21 +00:00
|
|
|
//
|
|
|
|
|
2004-12-26 20:23:29 +00:00
|
|
|
#include "vmime/addressList.hpp"
|
|
|
|
#include "vmime/parserHelpers.hpp"
|
|
|
|
#include "vmime/exception.hpp"
|
|
|
|
#include "vmime/mailboxList.hpp"
|
2004-10-05 10:28:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace vmime
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
addressList::addressList()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
addressList::addressList(const addressList& addrList)
|
2004-10-05 10:28:21 +00:00
|
|
|
: component()
|
|
|
|
{
|
2004-10-21 15:05:47 +00:00
|
|
|
copyFrom(addrList);
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
addressList::~addressList()
|
|
|
|
{
|
2004-10-21 15:05:47 +00:00
|
|
|
removeAllAddresses();
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void addressList::parse(const string& buffer, const string::size_type position,
|
|
|
|
const string::size_type end, string::size_type* newPosition)
|
|
|
|
{
|
2004-10-21 15:05:47 +00:00
|
|
|
removeAllAddresses();
|
2004-10-05 10:28:21 +00:00
|
|
|
|
|
|
|
string::size_type pos = position;
|
|
|
|
|
|
|
|
while (pos < end)
|
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
ref <address> parsedAddress = address::parseNext(buffer, pos, end, &pos);
|
2004-10-05 10:28:21 +00:00
|
|
|
|
|
|
|
if (parsedAddress != NULL)
|
|
|
|
m_list.push_back(parsedAddress);
|
|
|
|
}
|
|
|
|
|
2004-12-15 20:28:09 +00:00
|
|
|
setParsedBounds(position, end);
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
if (newPosition)
|
|
|
|
*newPosition = end;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void addressList::generate(utility::outputStream& os, const string::size_type maxLineLength,
|
|
|
|
const string::size_type curLinePos, string::size_type* newLinePos) const
|
|
|
|
{
|
2005-03-27 13:06:45 +00:00
|
|
|
string::size_type pos = curLinePos;
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
if (!m_list.empty())
|
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
for (std::vector <ref <address> >::const_iterator i = m_list.begin() ; ; )
|
2004-10-05 10:28:21 +00:00
|
|
|
{
|
2004-10-21 15:05:47 +00:00
|
|
|
(*i)->generate(os, maxLineLength - 2, pos, &pos);
|
2004-10-05 10:28:21 +00:00
|
|
|
|
2005-03-27 13:06:45 +00:00
|
|
|
if (++i == m_list.end())
|
2004-10-05 10:28:21 +00:00
|
|
|
break;
|
|
|
|
|
2005-03-27 13:06:45 +00:00
|
|
|
os << ", ";
|
|
|
|
pos += 2;
|
|
|
|
}
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
2005-03-27 13:06:45 +00:00
|
|
|
|
|
|
|
if (newLinePos)
|
|
|
|
*newLinePos = pos;
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
void addressList::copyFrom(const component& other)
|
|
|
|
{
|
|
|
|
const addressList& addrList = dynamic_cast <const addressList&>(other);
|
|
|
|
|
|
|
|
removeAllAddresses();
|
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
for (std::vector <ref <address> >::const_iterator it = addrList.m_list.begin() ;
|
2004-10-21 15:05:47 +00:00
|
|
|
it != addrList.m_list.end() ; ++it)
|
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
m_list.push_back((*it)->clone().dynamicCast <address>());
|
2004-10-21 15:05:47 +00:00
|
|
|
}
|
|
|
|
}
|
2004-10-05 10:28:21 +00:00
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
|
|
|
|
addressList& addressList::operator=(const addressList& other)
|
2004-10-05 10:28:21 +00:00
|
|
|
{
|
2004-10-21 15:05:47 +00:00
|
|
|
copyFrom(other);
|
|
|
|
return (*this);
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
addressList& addressList::operator=(const mailboxList& other)
|
|
|
|
{
|
2005-02-06 17:14:08 +00:00
|
|
|
removeAllAddresses();
|
|
|
|
|
|
|
|
for (int i = 0 ; i < other.getMailboxCount() ; ++i)
|
2005-07-12 22:28:02 +00:00
|
|
|
m_list.push_back(other.getMailboxAt(i)->clone().dynamicCast <address>());
|
2005-02-06 17:14:08 +00:00
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
return (*this);
|
|
|
|
}
|
2004-10-05 10:28:21 +00:00
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
ref <component> addressList::clone() const
|
2004-10-05 10:28:21 +00:00
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
return vmime::create <addressList>(*this);
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
void addressList::appendAddress(ref <address> addr)
|
2004-10-21 15:05:47 +00:00
|
|
|
{
|
|
|
|
m_list.push_back(addr);
|
|
|
|
}
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
void addressList::insertAddressBefore(ref <address> beforeAddress, ref <address> addr)
|
2004-10-05 10:28:21 +00:00
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
const std::vector <ref <address> >::iterator it = std::find
|
2004-10-21 15:05:47 +00:00
|
|
|
(m_list.begin(), m_list.end(), beforeAddress);
|
|
|
|
|
|
|
|
if (it == m_list.end())
|
|
|
|
throw exceptions::no_such_address();
|
|
|
|
|
|
|
|
m_list.insert(it, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
void addressList::insertAddressBefore(const int pos, ref <address> addr)
|
2004-10-21 15:05:47 +00:00
|
|
|
{
|
|
|
|
m_list.insert(m_list.begin() + pos, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
void addressList::insertAddressAfter(ref <address> afterAddress, ref <address> addr)
|
2004-10-21 15:05:47 +00:00
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
const std::vector <ref <address> >::iterator it = std::find
|
2004-10-21 15:05:47 +00:00
|
|
|
(m_list.begin(), m_list.end(), afterAddress);
|
|
|
|
|
|
|
|
if (it == m_list.end())
|
|
|
|
throw exceptions::no_such_address();
|
|
|
|
|
|
|
|
m_list.insert(it + 1, addr);
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
void addressList::insertAddressAfter(const int pos, ref <address> addr)
|
2004-10-21 15:05:47 +00:00
|
|
|
{
|
|
|
|
m_list.insert(m_list.begin() + pos + 1, addr);
|
|
|
|
}
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
void addressList::removeAddress(ref <address> addr)
|
2004-10-05 10:28:21 +00:00
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
const std::vector <ref <address> >::iterator it = std::find
|
2004-10-21 15:05:47 +00:00
|
|
|
(m_list.begin(), m_list.end(), addr);
|
|
|
|
|
|
|
|
if (it == m_list.end())
|
|
|
|
throw exceptions::no_such_address();
|
|
|
|
|
|
|
|
m_list.erase(it);
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
void addressList::removeAddress(const int pos)
|
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
const std::vector <ref <address> >::iterator it = m_list.begin() + pos;
|
2004-10-21 15:05:47 +00:00
|
|
|
|
|
|
|
m_list.erase(it);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void addressList::removeAllAddresses()
|
2004-10-05 10:28:21 +00:00
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
m_list.clear();
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
const int addressList::getAddressCount() const
|
|
|
|
{
|
|
|
|
return (m_list.size());
|
|
|
|
}
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
const bool addressList::isEmpty() const
|
2004-10-05 10:28:21 +00:00
|
|
|
{
|
2004-10-21 15:05:47 +00:00
|
|
|
return (m_list.empty());
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
ref <address> addressList::getAddressAt(const int pos)
|
2004-10-21 15:05:47 +00:00
|
|
|
{
|
|
|
|
return (m_list[pos]);
|
|
|
|
}
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
const ref <const address> addressList::getAddressAt(const int pos) const
|
2004-10-05 10:28:21 +00:00
|
|
|
{
|
2004-10-21 15:05:47 +00:00
|
|
|
return (m_list[pos]);
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
const std::vector <ref <const address> > addressList::getAddressList() const
|
2004-10-05 10:28:21 +00:00
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
std::vector <ref <const address> > list;
|
2004-10-05 10:28:21 +00:00
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
list.reserve(m_list.size());
|
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
for (std::vector <ref <address> >::const_iterator it = m_list.begin() ;
|
2004-10-21 15:05:47 +00:00
|
|
|
it != m_list.end() ; ++it)
|
|
|
|
{
|
|
|
|
list.push_back(*it);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (list);
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
const std::vector <ref <address> > addressList::getAddressList()
|
2004-10-05 10:28:21 +00:00
|
|
|
{
|
2004-10-21 15:05:47 +00:00
|
|
|
return (m_list);
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-12 22:28:02 +00:00
|
|
|
const std::vector <ref <const component> > addressList::getChildComponents() const
|
2004-12-20 12:33:55 +00:00
|
|
|
{
|
2005-07-12 22:28:02 +00:00
|
|
|
std::vector <ref <const component> > list;
|
2004-12-20 12:33:55 +00:00
|
|
|
|
|
|
|
copy_vector(m_list, list);
|
|
|
|
|
|
|
|
return (list);
|
|
|
|
}
|
2004-10-21 15:05:47 +00:00
|
|
|
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
} // vmime
|