2010-05-27 20:04:31 -05:00
|
|
|
/*
|
2015-06-24 10:52:32 -05:00
|
|
|
Copyright (c) 2005-2015 by Jakob Schröter <js@camaya.net>
|
2010-05-27 20:04:31 -05:00
|
|
|
This file is part of the gloox library. http://camaya.net/gloox
|
|
|
|
|
|
|
|
This software is distributed under a license. The full license
|
|
|
|
agreement can be found in the file LICENSE in this distribution.
|
|
|
|
This software may not be copied, modified, sold or distributed
|
|
|
|
other than expressed in the named license agreement.
|
|
|
|
|
|
|
|
This software is distributed without any warranty.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef FLEXOFFHANDLER_H__
|
|
|
|
#define FLEXOFFHANDLER_H__
|
|
|
|
|
|
|
|
#include "disco.h"
|
|
|
|
#include "gloox.h"
|
|
|
|
|
|
|
|
namespace gloox
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Describes the possible results of a message retrieval or deletion request.
|
|
|
|
*/
|
|
|
|
enum FlexibleOfflineResult
|
|
|
|
{
|
|
|
|
FomrRemoveSuccess, /**< Message(s) were removed successfully. */
|
|
|
|
FomrRequestSuccess, /**< Message(s) were fetched successfully. */
|
|
|
|
FomrForbidden, /**< The requester is a JID other than an authorized resource of the
|
|
|
|
* user. Something wnet serieously wrong */
|
|
|
|
FomrItemNotFound, /**< The requested node (message ID) does not exist. */
|
2015-06-24 10:52:32 -05:00
|
|
|
FomrUnknownError /**< An error occurred which is not specified in @xep{0013}. */
|
2010-05-27 20:04:31 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Implementation of this virtual interface allows for retrieval of offline messages following
|
2015-06-24 10:52:32 -05:00
|
|
|
* @xep{0030}.
|
2010-05-27 20:04:31 -05:00
|
|
|
*
|
2015-06-24 10:52:32 -05:00
|
|
|
* @author Jakob Schröter <js@camaya.net>
|
2010-05-27 20:04:31 -05:00
|
|
|
* @since 0.7
|
|
|
|
*/
|
|
|
|
class GLOOX_API FlexibleOfflineHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Virtual Destructor.
|
|
|
|
*/
|
|
|
|
virtual ~FlexibleOfflineHandler() {}
|
|
|
|
|
|
|
|
/**
|
2015-06-24 10:52:32 -05:00
|
|
|
* This function is called to indicate whether the server supports @xep{0013} or not.
|
2010-05-27 20:04:31 -05:00
|
|
|
* Call @ref FlexibleOffline::checkSupport() to trigger the check.
|
2015-06-24 10:52:32 -05:00
|
|
|
* @param support Whether the server support @xep{0013} or not.
|
2010-05-27 20:04:31 -05:00
|
|
|
*/
|
|
|
|
virtual void handleFlexibleOfflineSupport( bool support ) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is called to announce the number of available offline messages.
|
|
|
|
* Call @ref FlexibleOffline::getMsgCount() to trigger the check.
|
|
|
|
* @param num The number of stored offline messages.
|
|
|
|
*/
|
|
|
|
virtual void handleFlexibleOfflineMsgNum( int num ) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is called when the offline message headers arrive.
|
|
|
|
* Call @ref FlexibleOffline::fetchHeaders() to trigger the check.
|
|
|
|
* @param headers A map of ID/sender pairs describing the offline messages.
|
|
|
|
*/
|
|
|
|
virtual void handleFlexibleOfflineMessageHeaders( const Disco::ItemList& headers ) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is called to indicate the result of a fetch or delete instruction.
|
|
|
|
* @param foResult The result of the operation.
|
|
|
|
*/
|
|
|
|
virtual void handleFlexibleOfflineResult( FlexibleOfflineResult foResult ) = 0;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // FLEXOFFHANDLER_H__
|