mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-31 18:36:24 -05:00
78e8758b9e
function In file included from ../../../trunk/libretroshare/src/rsserver/ rsinit.cc:769: ../../../trunk/libretroshare/src/services/p3photoservice.h:59:10: warning: 'p3PhotoService::msgsChanged' hides overloaded virtual function [-Woverloaded-virtual] void msgsChanged(std::map<RsGxsGroupId, ^ ../../../trunk/libretroshare/src/retroshare/rsphoto.h:206:18: note: hidden overloaded virtual function 'RsPhoto::msgsChanged' declared here: type mismatch at 1st parameter ('GxsMsgIdResult &' (aka 'map<t_RsGenericIdType<CERT_SIGN_LEN, false, RS_GENERIC_ID_GXS_GROUP_ID_TYPE>, set<t_RsGenericIdType<SHA1_SIZE, false, RS_GENERIC_ID_SHA1_ID_TYPE> > > &') vs 'std::map<RsGxsGroupId, std::vector<RsGxsMessageId> > &' (aka 'map<t_RsGenericIdType<CERT_SIGN_LEN, false, RS_GENERIC_ID_GXS_GROUP_ID_TYPE>, vector<t_RsGenericIdType<SHA1_SIZE, false, RS_GENERIC_ID_SHA1_ID_TYPE> > > &')) virtual void msgsChanged(GxsMsgIdResult& msgs) = 0; ^
146 lines
5.4 KiB
C++
146 lines
5.4 KiB
C++
/*******************************************************************************
|
|
* libretroshare/src/services: p3photoservice.h *
|
|
* *
|
|
* libretroshare: retroshare core library *
|
|
* *
|
|
* Copyright 2008-2012 Robert Fernie,Chris Evi-Parker <retroshare@lunamutt.com>*
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
#ifndef P3PHOTOSERVICEV2_H
|
|
#define P3PHOTOSERVICEV2_H
|
|
|
|
#include "gxs/rsgenexchange.h"
|
|
#include "retroshare/rsphoto.h"
|
|
|
|
class p3PhotoService : public RsPhoto, public RsGenExchange
|
|
{
|
|
public:
|
|
|
|
p3PhotoService(RsGeneralDataService* gds, RsNetworkExchangeService* nes, RsGixs* gixs);
|
|
virtual RsServiceInfo getServiceInfo();
|
|
|
|
static uint32_t photoAuthenPolicy();
|
|
|
|
public:
|
|
|
|
/*!
|
|
* @return true if a change has occured
|
|
*/
|
|
bool updated();
|
|
|
|
/*!
|
|
*
|
|
*/
|
|
void service_tick();
|
|
|
|
protected:
|
|
|
|
void notifyChanges(std::vector<RsGxsNotify*>& changes);
|
|
public:
|
|
|
|
/** Requests **/
|
|
|
|
void groupsChanged(std::list<RsGxsGroupId>& grpIds);
|
|
|
|
|
|
void msgsChanged(GxsMsgIdResult& msgs);
|
|
|
|
RsTokenService* getTokenService();
|
|
|
|
bool getGroupList(const uint32_t &token,
|
|
std::list<RsGxsGroupId> &groupIds);
|
|
bool getMsgList(const uint32_t &token,
|
|
GxsMsgIdResult& msgIds);
|
|
|
|
/* Generic Summary */
|
|
bool getGroupSummary(const uint32_t &token,
|
|
std::list<RsGroupMetaData> &groupInfo);
|
|
|
|
bool getMsgSummary(const uint32_t &token,
|
|
MsgMetaResult &msgInfo);
|
|
|
|
/* Specific Service Data */
|
|
bool getAlbum(const uint32_t &token, std::vector<RsPhotoAlbum> &albums);
|
|
bool getPhoto(const uint32_t &token, PhotoResult &photos);
|
|
bool getPhotoComment(const uint32_t &token, PhotoCommentResult &comments);
|
|
bool getPhotoRelatedComment(const uint32_t &token, PhotoRelatedCommentResult &comments);
|
|
|
|
public:
|
|
|
|
/** Modifications **/
|
|
|
|
/*!
|
|
* submits album, which returns a token that needs
|
|
* to be acknowledge to get album grp id
|
|
* @param token token to redeem for acknowledgement
|
|
* @param album album to be submitted
|
|
*/
|
|
bool submitAlbumDetails(uint32_t& token, RsPhotoAlbum &album);
|
|
|
|
/*!
|
|
* submits photo, which returns a token that needs
|
|
* to be acknowledge to get photo msg-grp id pair
|
|
* @param token token to redeem for acknowledgement
|
|
* @param photo photo to be submitted
|
|
*/
|
|
bool submitPhoto(uint32_t& token, RsPhotoPhoto &photo);
|
|
|
|
/*!
|
|
* submits photo comment, which returns a token that needs
|
|
* to be acknowledged to get photo msg-grp id pair
|
|
* The mParentId needs to be set to an existing msg for which
|
|
* commenting is enabled
|
|
* @param token token to redeem for acknowledgement
|
|
* @param comment comment to be submitted
|
|
*/
|
|
bool submitComment(uint32_t& token, RsPhotoComment &photo);
|
|
|
|
/*!
|
|
* subscribes to group, and returns token which can be used
|
|
* to be acknowledged to get group Id
|
|
* @param token token to redeem for acknowledgement
|
|
* @param grpId the id of the group to subscribe to
|
|
*/
|
|
bool subscribeToAlbum(uint32_t& token, const RsGxsGroupId& grpId, bool subscribe);
|
|
|
|
/*!
|
|
* This allows the client service to acknowledge that their msgs has
|
|
* been created/modified and retrieve the create/modified msg ids
|
|
* @param token the token related to modification/create request
|
|
* @param msgIds map of grpid->msgIds of message created/modified
|
|
* @return true if token exists false otherwise
|
|
*/
|
|
bool acknowledgeMsg(const uint32_t& token, std::pair<RsGxsGroupId, RsGxsMessageId>& msgId);
|
|
|
|
/*!
|
|
* This allows the client service to acknowledge that their grps has
|
|
* been created/modified and retrieve the create/modified grp ids
|
|
* @param token the token related to modification/create request
|
|
* @param msgIds vector of ids of groups created/modified
|
|
* @return true if token exists false otherwise
|
|
*/
|
|
bool acknowledgeGrp(const uint32_t& token, RsGxsGroupId& grpId);
|
|
|
|
private:
|
|
|
|
std::vector<RsGxsGroupChange*> mGroupChange;
|
|
std::vector<RsGxsMsgChange*> mMsgChange;
|
|
|
|
RsMutex mPhotoMutex;
|
|
};
|
|
|
|
#endif // P3PHOTOSERVICEV2_H
|