166 lines
4.8 KiB
C++
166 lines
4.8 KiB
C++
//
|
|
// VMime library (http://www.vmime.org)
|
|
// Copyright (C) 2002-2009 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 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, 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.
|
|
//
|
|
|
|
#ifndef VMIME_MESSAGEIDSEQUENCE_HPP_INCLUDED
|
|
#define VMIME_MESSAGEIDSEQUENCE_HPP_INCLUDED
|
|
|
|
|
|
#include "vmime/messageId.hpp"
|
|
|
|
|
|
namespace vmime
|
|
{
|
|
|
|
|
|
/** A list of message identifiers (basic type).
|
|
*/
|
|
|
|
class messageIdSequence : public headerFieldValue
|
|
{
|
|
public:
|
|
|
|
messageIdSequence();
|
|
messageIdSequence(const messageIdSequence& midSeq);
|
|
|
|
~messageIdSequence();
|
|
|
|
|
|
ref <component> clone() const;
|
|
void copyFrom(const component& other);
|
|
messageIdSequence& operator=(const messageIdSequence& other);
|
|
|
|
const std::vector <ref <const component> > getChildComponents() const;
|
|
|
|
|
|
/** Add a message-id at the end of the list.
|
|
*
|
|
* @param mid message-id to append
|
|
*/
|
|
void appendMessageId(ref <messageId> mid);
|
|
|
|
/** Insert a new message-id before the specified message-id.
|
|
*
|
|
* @param beforeMid message-id before which the new message-id will be inserted
|
|
* @param mid message-id to insert
|
|
* @throw exceptions::no_such_messageid if the message-id is not in the list
|
|
*/
|
|
void insertMessageIdBefore(ref <messageId> beforeMid, ref <messageId> mid);
|
|
|
|
/** Insert a new message-id before the specified position.
|
|
*
|
|
* @param pos position at which to insert the new message-id (0 to insert at
|
|
* the beginning of the list)
|
|
* @param mid message-id to insert
|
|
*/
|
|
void insertMessageIdBefore(const int pos, ref <messageId> mid);
|
|
|
|
/** Insert a new message-id after the specified message-id.
|
|
*
|
|
* @param afterMid message-id after which the new message-id will be inserted
|
|
* @param mid message-id to insert
|
|
* @throw exceptions::no_such_message_id if the message-id is not in the list
|
|
*/
|
|
void insertMessageIdAfter(ref <messageId> afterMid, ref <messageId> mid);
|
|
|
|
/** Insert a new message-id after the specified position.
|
|
*
|
|
* @param pos position of the message-id before the new message-id
|
|
* @param mid message-id to insert
|
|
*/
|
|
void insertMessageIdAfter(const int pos, ref <messageId> mid);
|
|
|
|
/** Remove the specified message-id from the list.
|
|
*
|
|
* @param mid message-id to remove
|
|
* @throw exceptions::no_such_message_id if the message-id is not in the list
|
|
*/
|
|
void removeMessageId(ref <messageId> mid);
|
|
|
|
/** Remove the message-id at the specified position.
|
|
*
|
|
* @param pos position of the message-id to remove
|
|
*/
|
|
void removeMessageId(const int pos);
|
|
|
|
/** Remove all message-ids from the list.
|
|
*/
|
|
void removeAllMessageIds();
|
|
|
|
/** Return the number of message-ides in the list.
|
|
*
|
|
* @return number of message-ides
|
|
*/
|
|
int getMessageIdCount() const;
|
|
|
|
/** Tests whether the list of message-ides is empty.
|
|
*
|
|
* @return true if there is no message-id, false otherwise
|
|
*/
|
|
bool isEmpty() const;
|
|
|
|
/** Return the message-id at the specified position.
|
|
*
|
|
* @param pos position
|
|
* @return message-id at position 'pos'
|
|
*/
|
|
const ref <messageId> getMessageIdAt(const int pos);
|
|
|
|
/** Return the message-id at the specified position.
|
|
*
|
|
* @param pos position
|
|
* @return message-id at position 'pos'
|
|
*/
|
|
const ref <const messageId> getMessageIdAt(const int pos) const;
|
|
|
|
/** Return the message-id list.
|
|
*
|
|
* @return list of message-ids
|
|
*/
|
|
const std::vector <ref <const messageId> > getMessageIdList() const;
|
|
|
|
/** Return the message-id list.
|
|
*
|
|
* @return list of message-ids
|
|
*/
|
|
const std::vector <ref <messageId> > getMessageIdList();
|
|
|
|
private:
|
|
|
|
std::vector <ref <messageId> > m_list;
|
|
|
|
public:
|
|
|
|
using component::parse;
|
|
using component::generate;
|
|
|
|
// Component parsing & assembling
|
|
void parse(const string& buffer, const string::size_type position, const string::size_type end, string::size_type* newPosition = NULL);
|
|
void generate(utility::outputStream& os, const string::size_type maxLineLength = lineLengthLimits::infinite, const string::size_type curLinePos = 0, string::size_type* newLinePos = NULL) const;
|
|
};
|
|
|
|
|
|
} // vmime
|
|
|
|
|
|
#endif // VMIME_MESSAGEIDSEQUENCE_HPP_INCLUDED
|