2012-07-05 17:26:14 -04:00
|
|
|
#ifndef RSGXSSERVICE_H
|
|
|
|
#define RSGXSSERVICE_H
|
|
|
|
|
|
|
|
|
2013-03-06 18:33:23 -05:00
|
|
|
#include "retroshare/rstokenservice.h"
|
2012-07-05 17:26:14 -04:00
|
|
|
|
2013-02-28 16:58:38 -05:00
|
|
|
typedef std::map<RsGxsGroupId, std::vector<RsMsgMetaData> > GxsMsgMetaMap;
|
|
|
|
typedef std::map<RsGxsGrpMsgIdPair, std::vector<RsMsgMetaData> > GxsMsgRelatedMetaMap;
|
2012-07-05 17:26:14 -04:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* The aim of this class is to abstract
|
|
|
|
* how changes are represented so
|
|
|
|
* they can be determined outside the
|
|
|
|
* client API without explcitly
|
|
|
|
* enumerating all possible changes
|
|
|
|
* at the interface
|
|
|
|
*/
|
2012-07-28 16:01:30 -04:00
|
|
|
class RsGxsNotify
|
2012-07-05 17:26:14 -04:00
|
|
|
{
|
|
|
|
public:
|
2013-06-04 17:00:43 -04:00
|
|
|
|
|
|
|
enum NotifyType { TYPE_PUBLISH, TYPE_RECEIVE, TYPE_PROCESSED };
|
|
|
|
|
2012-08-06 17:00:38 -04:00
|
|
|
virtual ~RsGxsNotify() {return; }
|
2013-06-04 17:00:43 -04:00
|
|
|
virtual NotifyType getType() = 0;
|
2012-07-05 17:26:14 -04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Relevant to group changes
|
|
|
|
* TODO: extent to indicate whether a meta change or actual data
|
|
|
|
*/
|
2012-07-28 16:01:30 -04:00
|
|
|
class RsGxsGroupChange : public RsGxsNotify
|
2012-07-05 17:26:14 -04:00
|
|
|
{
|
|
|
|
public:
|
2013-06-04 17:00:43 -04:00
|
|
|
RsGxsGroupChange(NotifyType type) : NOTIFY_TYPE(type) {}
|
2013-02-28 16:58:38 -05:00
|
|
|
std::list<RsGxsGroupId> mGrpIdList;
|
2013-06-04 17:00:43 -04:00
|
|
|
NotifyType getType(){ return NOTIFY_TYPE;}
|
|
|
|
private:
|
|
|
|
const NotifyType NOTIFY_TYPE;
|
2012-07-05 17:26:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Relevant to message changes
|
|
|
|
* TODO: extent to indicate whether a meta change or actual data
|
|
|
|
*/
|
2012-07-28 16:01:30 -04:00
|
|
|
class RsGxsMsgChange : public RsGxsNotify
|
2012-07-05 17:26:14 -04:00
|
|
|
{
|
|
|
|
public:
|
2013-06-04 17:00:43 -04:00
|
|
|
RsGxsMsgChange(NotifyType type) : NOTIFY_TYPE(type) {}
|
2012-07-22 17:38:15 -04:00
|
|
|
std::map<RsGxsGroupId, std::vector<RsGxsMessageId> > msgChangeMap;
|
2013-06-04 17:00:43 -04:00
|
|
|
NotifyType getType(){ return NOTIFY_TYPE;}
|
|
|
|
private:
|
|
|
|
const NotifyType NOTIFY_TYPE;
|
2012-07-05 17:26:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // RSGXSSERVICE_H
|