mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-04-04 13:06:07 -04:00
implemented item serialisation and high level handlign in FS
This commit is contained in:
parent
85bb831f47
commit
5bfa77a0fe
@ -10,8 +10,40 @@ void FriendServer::threadTick()
|
||||
std::this_thread::sleep_for(std::chrono::milliseconds(200));
|
||||
|
||||
pqi->tick();
|
||||
|
||||
RsItem *item;
|
||||
|
||||
while(nullptr != (item = pqi->GetItem()))
|
||||
{
|
||||
RsFriendServerItem *fsitem = dynamic_cast<RsFriendServerItem*>(item);
|
||||
|
||||
if(!fsitem)
|
||||
{
|
||||
RsErr() << "Received an item of the wrong type!" ;
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
switch(fsitem->PacketSubType())
|
||||
{
|
||||
case RS_PKT_SUBTYPE_FS_CLIENT_REMOVE: handleClientRemove(dynamic_cast<RsFriendServerClientRemoveItem*>(fsitem));
|
||||
break;
|
||||
case RS_PKT_SUBTYPE_FS_CLIENT_PUBLISH: handleClientPublish(dynamic_cast<RsFriendServerClientPublishItem*>(fsitem));
|
||||
break;
|
||||
default: ;
|
||||
}
|
||||
delete item;
|
||||
}
|
||||
}
|
||||
|
||||
void FriendServer::handleClientPublish(const RsFriendServerClientPublishItem *item)
|
||||
{
|
||||
RsDbg() << "Received a client publish item:" << *item ;
|
||||
}
|
||||
void FriendServer::handleClientRemove(const RsFriendServerClientRemoveItem *item)
|
||||
{
|
||||
RsDbg() << "Received a client remove item:" << *item ;
|
||||
}
|
||||
FriendServer::FriendServer(const std::string& base_dir)
|
||||
{
|
||||
RsDbg() << "Creating friend server." ;
|
||||
|
@ -26,17 +26,23 @@
|
||||
|
||||
#include "network.h"
|
||||
|
||||
class RsFriendServerClientRemoveItem;
|
||||
class RsFriendServerClientPublishItem;
|
||||
|
||||
class FriendServer : public RsTickingThread
|
||||
{
|
||||
public:
|
||||
FriendServer(const std::string& base_directory);
|
||||
public:
|
||||
FriendServer(const std::string& base_directory);
|
||||
|
||||
private:
|
||||
virtual void threadTick() override;
|
||||
virtual void run() override;
|
||||
private:
|
||||
virtual void threadTick() override;
|
||||
virtual void run() override;
|
||||
|
||||
FsNetworkInterface *mni;
|
||||
pqistreamer *pqi;
|
||||
void handleClientRemove(const RsFriendServerClientRemoveItem *item);
|
||||
void handleClientPublish(const RsFriendServerClientPublishItem *item);
|
||||
|
||||
std::string mBaseDirectory;
|
||||
FsNetworkInterface *mni;
|
||||
pqistreamer *pqi;
|
||||
|
||||
std::string mBaseDirectory;
|
||||
};
|
||||
|
@ -5,21 +5,115 @@
|
||||
#include "rsitems/rsserviceids.h"
|
||||
#include "rsitems/itempriorities.h"
|
||||
|
||||
class FsItem: public RsItem
|
||||
const uint8_t RS_PKT_SUBTYPE_FS_CLIENT_PUBLISH = 0x01 ;
|
||||
const uint8_t RS_PKT_SUBTYPE_FS_CLIENT_REMOVE = 0x02 ;
|
||||
const uint8_t RS_PKT_SUBTYPE_FS_SERVER_RESPONSE = 0x03 ;
|
||||
const uint8_t RS_PKT_SUBTYPE_FS_SERVER_ENCRYPTED_RESPONSE = 0x04 ;
|
||||
|
||||
class RsFriendServerItem: public RsItem
|
||||
{
|
||||
public:
|
||||
FsItem(uint8_t item_subtype) : RsItem(RS_PKT_VERSION_SERVICE,RS_SERVICE_TYPE_FRIEND_SERVER,item_subtype)
|
||||
RsFriendServerItem(uint8_t item_subtype) : RsItem(RS_PKT_VERSION_SERVICE,RS_SERVICE_TYPE_FRIEND_SERVER,item_subtype)
|
||||
{
|
||||
setPriorityLevel(QOS_PRIORITY_DEFAULT) ;
|
||||
}
|
||||
virtual void clear() override;
|
||||
|
||||
virtual ~FsItem() {}
|
||||
virtual void clear() {}
|
||||
virtual ~RsFriendServerItem() {}
|
||||
};
|
||||
|
||||
class RsFriendServerClientPublishItem: public RsFriendServerItem
|
||||
{
|
||||
public:
|
||||
RsFriendServerClientPublishItem() : RsFriendServerItem(RS_PKT_SUBTYPE_FS_CLIENT_PUBLISH) {}
|
||||
|
||||
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx) override
|
||||
{
|
||||
RS_SERIAL_PROCESS(n_requested_friends);
|
||||
RS_SERIAL_PROCESS(long_invite);
|
||||
}
|
||||
virtual void clear() override
|
||||
{
|
||||
long_invite = std::string();
|
||||
n_requested_friends=0;
|
||||
}
|
||||
|
||||
// specific members for that item
|
||||
|
||||
uint32_t n_requested_friends;
|
||||
std::string long_invite;
|
||||
};
|
||||
|
||||
class RsFriendServerClientRemoveItem: public RsFriendServerItem
|
||||
{
|
||||
public:
|
||||
RsFriendServerClientRemoveItem() : RsFriendServerItem(RS_PKT_SUBTYPE_FS_CLIENT_REMOVE) {}
|
||||
|
||||
void serial_process(RsGenericSerializer::SerializeJob /* j */,RsGenericSerializer::SerializeContext& /* ctx */)
|
||||
{
|
||||
}
|
||||
};
|
||||
class RsFriendServerEncryptedServerResponseItem: public RsFriendServerItem
|
||||
{
|
||||
public:
|
||||
RsFriendServerEncryptedServerResponseItem() : RsFriendServerItem(RS_PKT_SUBTYPE_FS_SERVER_ENCRYPTED_RESPONSE) {}
|
||||
|
||||
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx) override
|
||||
{
|
||||
RsTypeSerializer::RawMemoryWrapper prox(bin_data, bin_len);
|
||||
RsTypeSerializer::serial_process(j, ctx, prox, "data");
|
||||
}
|
||||
|
||||
virtual void clear() override
|
||||
{
|
||||
free(bin_data);
|
||||
bin_len = 0;
|
||||
bin_data = nullptr;
|
||||
}
|
||||
//
|
||||
|
||||
void *bin_data;
|
||||
uint32_t bin_len;
|
||||
};
|
||||
|
||||
class RsFriendServerServerResponseItem: public RsFriendServerItem
|
||||
{
|
||||
public:
|
||||
RsFriendServerServerResponseItem() : RsFriendServerItem(RS_PKT_SUBTYPE_FS_SERVER_RESPONSE) {}
|
||||
|
||||
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx) override
|
||||
{
|
||||
RS_SERIAL_PROCESS(friend_invites);
|
||||
}
|
||||
|
||||
virtual void clear() override
|
||||
{
|
||||
friend_invites.clear();
|
||||
}
|
||||
// specific members for that item
|
||||
|
||||
std::map<std::string,bool> friend_invites;
|
||||
};
|
||||
|
||||
struct FsSerializer : RsServiceSerializer
|
||||
{
|
||||
FsSerializer(RsSerializationFlags flags = RsSerializationFlags::NONE): RsServiceSerializer(RS_SERVICE_TYPE_FRIEND_SERVER, flags) {}
|
||||
|
||||
virtual RsItem *create_item(uint16_t service_id,uint8_t item_sub_id) const {};
|
||||
virtual RsItem *create_item(uint16_t service_id,uint8_t item_sub_id) const
|
||||
{
|
||||
if(service_id != static_cast<uint16_t>(RsServiceType::FRIEND_SERVER))
|
||||
return nullptr;
|
||||
|
||||
switch(item_sub_id)
|
||||
{
|
||||
case RS_PKT_SUBTYPE_FS_CLIENT_REMOVE: return new RsFriendServerClientRemoveItem();
|
||||
case RS_PKT_SUBTYPE_FS_CLIENT_PUBLISH: return new RsFriendServerClientPublishItem();
|
||||
case RS_PKT_SUBTYPE_FS_SERVER_RESPONSE: return new RsFriendServerServerResponseItem();
|
||||
case RS_PKT_SUBTYPE_FS_SERVER_ENCRYPTED_RESPONSE: return new RsFriendServerEncryptedServerResponseItem();
|
||||
default:
|
||||
RsErr() << "Unknown subitem type " << item_sub_id << " in FsSerialiser" ;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user