69 lines
2.3 KiB
C++
69 lines
2.3 KiB
C++
/***************************************************************************
|
|
multipacketmessage.h - description
|
|
-------------------
|
|
begin : Thu May 23 2005
|
|
copyright : (C) 2006 by Diederik van der Boor
|
|
email : "vdboor" --at-- "codingdomain.com"
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef MULTIPACKETMESSAGE_H
|
|
#define MULTIPACKETMESSAGE_H
|
|
|
|
#include "mimemessage.h"
|
|
|
|
#include <QBuffer>
|
|
|
|
|
|
/**
|
|
* @author Diederik van der Boor
|
|
* @ingroup NetworkCore
|
|
*/
|
|
class MultiPacketMessage
|
|
{
|
|
public: // public methods
|
|
|
|
// The constructor
|
|
MultiPacketMessage();
|
|
// The constructor for sending huge messages
|
|
MultiPacketMessage( const MimeMessage &message );
|
|
|
|
// The destructor
|
|
virtual ~MultiPacketMessage();
|
|
|
|
// Add a message to the part
|
|
void addChunk( const MimeMessage &message );
|
|
// Returh the complete message
|
|
const MimeMessage & getMessage() const;
|
|
// Return whether the full message is received/sended
|
|
bool isComplete() const;
|
|
//Return the next part of multipacket message
|
|
const MimeMessage & getNextPart();
|
|
|
|
private:
|
|
// The buffer for the data
|
|
QBuffer buffer_;
|
|
// The number of chunks the message consists of
|
|
int chunks_;
|
|
// The last chunk received/sended
|
|
int lastChunk_;
|
|
// The message ID
|
|
QString messageId_;
|
|
// The current/result message
|
|
MimeMessage result_;
|
|
// The message
|
|
QString messageText_;
|
|
|
|
};
|
|
|
|
|
|
#endif
|