2014-04-12 03:24:17 -04:00
|
|
|
/*
|
|
|
|
* libretroshare/src/services: p3wikiservice.h
|
|
|
|
*
|
|
|
|
* Wiki interface for RetroShare.
|
|
|
|
*
|
|
|
|
* Copyright 2012-2012 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2.1 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "gxs/rsgenexchange.h"
|
|
|
|
#include "util/rstickevent.h"
|
|
|
|
|
|
|
|
#include "retroshare/rstokenservice.h"
|
|
|
|
#include "retroshare/rsgxsifacehelper.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Test Service.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define RS_SERVICE_GXS_TYPE_TEST 0x123
|
|
|
|
|
|
|
|
class RsTestGroup
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsGroupMetaData mMeta;
|
|
|
|
std::string mTestString;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RsTestMsg
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsMsgMetaData mMeta;
|
|
|
|
std::string mTestString;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::ostream &operator<<(std::ostream &out, const RsTestGroup &group);
|
|
|
|
std::ostream &operator<<(std::ostream &out, const RsTestMsg &msg);
|
|
|
|
|
|
|
|
|
|
|
|
class GxsTestService: public RsGenExchange, public RsTickEvent, public RsGxsIfaceHelper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GxsTestService(RsGeneralDataService* gds, RsNetworkExchangeService* nes, RsGixs *gixs, uint32_t testMode);
|
|
|
|
virtual RsServiceInfo getServiceInfo();
|
|
|
|
static uint32_t testAuthenPolicy(uint32_t testMode);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual void notifyChanges(std::vector<RsGxsNotify*>& changes) ;
|
|
|
|
|
|
|
|
// Overloaded from RsTickEvent.
|
|
|
|
virtual void handle_event(uint32_t event_type, const std::string &elabel);
|
|
|
|
|
2014-04-27 09:26:14 -04:00
|
|
|
// override for examination of data.
|
|
|
|
virtual RsGenExchange::ServiceCreate_Return service_CreateGroup(RsGxsGrpItem* grpItem, RsTlvSecurityKeySet& /*keySet*/);
|
|
|
|
|
2014-04-12 03:24:17 -04:00
|
|
|
public:
|
|
|
|
|
|
|
|
virtual void service_tick();
|
|
|
|
|
|
|
|
/* Specific Service Data */
|
|
|
|
virtual bool getTestGroups(const uint32_t &token, std::vector<RsTestGroup> &groups);
|
|
|
|
virtual bool getTestMsgs(const uint32_t &token, std::vector<RsTestMsg> &msgs);
|
|
|
|
virtual bool getRelatedMsgs(const uint32_t &token, std::vector<RsTestMsg> &msgs);
|
|
|
|
|
|
|
|
virtual bool submitTestGroup(uint32_t &token, RsTestGroup &group);
|
|
|
|
virtual bool submitTestMsg(uint32_t &token, RsTestMsg &msg);
|
|
|
|
|
2014-04-27 09:26:14 -04:00
|
|
|
|
2014-04-12 03:24:17 -04:00
|
|
|
virtual bool updateTestGroup(uint32_t &token, RsTestGroup &group);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
uint32_t mTestMode;
|
|
|
|
};
|
|
|
|
|