mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
b2967418ff
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8320 b45a01b8-16f6-495d-af2f-9b41ad6348cc
204 lines
4.8 KiB
C++
204 lines
4.8 KiB
C++
/*
|
|
* libretroshare/src/pqi pqiservice.cc
|
|
*
|
|
* 3P/PQI network interface for RetroShare.
|
|
*
|
|
* Copyright 2004-2013 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".
|
|
*
|
|
*/
|
|
|
|
#include "pqi/pqiservice.h"
|
|
#include "util/rsdebug.h"
|
|
#include "util/rsstring.h"
|
|
|
|
const int pqiservicezone = 60478;
|
|
|
|
/****
|
|
* #define SERVICE_DEBUG 1
|
|
****/
|
|
|
|
void pqiService::setServiceServer(p3ServiceServerIface *server)
|
|
{
|
|
mServiceServer = server;
|
|
}
|
|
|
|
bool pqiService::send(RsRawItem *item)
|
|
{
|
|
return mServiceServer->sendItem(item);
|
|
}
|
|
|
|
|
|
p3ServiceServer::p3ServiceServer(pqiPublisher *pub, p3ServiceControl *ctrl) : mPublisher(pub), mServiceControl(ctrl), srvMtx("p3ServiceServer")
|
|
{
|
|
RsStackMutex stack(srvMtx); /********* LOCKED *********/
|
|
|
|
#ifdef SERVICE_DEBUG
|
|
pqioutput(PQL_DEBUG_BASIC, pqiservicezone,
|
|
"p3ServiceServer::p3ServiceServer()");
|
|
#endif
|
|
|
|
return;
|
|
}
|
|
|
|
int p3ServiceServer::addService(pqiService *ts, bool defaultOn)
|
|
{
|
|
RsStackMutex stack(srvMtx); /********* LOCKED *********/
|
|
|
|
#ifdef SERVICE_DEBUG
|
|
pqioutput(PQL_DEBUG_BASIC, pqiservicezone,
|
|
"p3ServiceServer::addService()");
|
|
#endif
|
|
|
|
RsServiceInfo info = ts->getServiceInfo();
|
|
std::map<uint32_t, pqiService *>::iterator it;
|
|
it = services.find(info.mServiceType);
|
|
if (it != services.end())
|
|
{
|
|
std::cerr << "p3ServiceServer::addService(): Service already added with id " << info.mServiceType << "!" << std::endl;
|
|
// it exists already!
|
|
return -1;
|
|
}
|
|
|
|
ts->setServiceServer(this);
|
|
services[info.mServiceType] = ts;
|
|
|
|
// This doesn't need to be in Mutex.
|
|
mServiceControl->registerService(info, defaultOn);
|
|
|
|
return 1;
|
|
}
|
|
|
|
bool p3ServiceServer::recvItem(RsRawItem *item)
|
|
{
|
|
RsStackMutex stack(srvMtx); /********* LOCKED *********/
|
|
|
|
#ifdef SERVICE_DEBUG
|
|
std::cerr << "p3ServiceServer::incoming()";
|
|
std::cerr << std::endl;
|
|
|
|
{
|
|
std::string out;
|
|
rs_sprintf(out, "p3ServiceServer::incoming() PacketId: %x\nLooking for Service: %x\nItem:\n", item -> PacketId(), (item -> PacketId() & 0xffffff00));
|
|
item -> print_string(out);
|
|
std::cerr << out;
|
|
std::cerr << std::endl;
|
|
}
|
|
#endif
|
|
|
|
// Packet Filtering.
|
|
// This doesn't need to be in Mutex.
|
|
if (!mServiceControl->checkFilter(item->PacketId() & 0xffffff00, item->PeerId()))
|
|
{
|
|
#ifdef SERVICE_DEBUG
|
|
std::cerr << "p3ServiceServer::recvItem() Fails Filtering " << std::endl;
|
|
#endif
|
|
delete item;
|
|
return false;
|
|
}
|
|
|
|
|
|
std::map<uint32_t, pqiService *>::iterator it;
|
|
it = services.find(item -> PacketId() & 0xffffff00);
|
|
if (it == services.end())
|
|
{
|
|
#ifdef SERVICE_DEBUG
|
|
std::cerr << "p3ServiceServer::incoming() Service: No Service - deleting";
|
|
std::cerr << std::endl;
|
|
#endif
|
|
delete item;
|
|
return false;
|
|
}
|
|
|
|
{
|
|
#ifdef SERVICE_DEBUG
|
|
std::cerr << "p3ServiceServer::incoming() Sending to : " << (void *) it -> second;
|
|
std::cerr << std::endl;
|
|
#endif
|
|
|
|
return (it->second) -> recv(item);
|
|
}
|
|
|
|
delete item;
|
|
return false;
|
|
}
|
|
|
|
|
|
|
|
bool p3ServiceServer::sendItem(RsRawItem *item)
|
|
{
|
|
#ifdef SERVICE_DEBUG
|
|
std::cerr << "p3ServiceServer::sendItem()";
|
|
std::cerr << std::endl;
|
|
item -> print(std::cerr);
|
|
std::cerr << std::endl;
|
|
#endif
|
|
if (!item)
|
|
{
|
|
std::cerr << "p3ServiceServer::sendItem() Caught Null item";
|
|
std::cerr << std::endl;
|
|
return false;
|
|
}
|
|
|
|
// Packet Filtering.
|
|
if (!mServiceControl->checkFilter(item->PacketId() & 0xffffff00, item->PeerId()))
|
|
{
|
|
std::cerr << "p3ServiceServer::sendItem() Fails Filtering for packet id=" << std::hex << item->PacketId() << ", and peer " << item->PeerId() << std::endl;
|
|
delete item;
|
|
return false;
|
|
}
|
|
|
|
mPublisher->sendItem(item);
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
int p3ServiceServer::tick()
|
|
{
|
|
|
|
mServiceControl->tick();
|
|
|
|
RsStackMutex stack(srvMtx); /********* LOCKED *********/
|
|
|
|
#ifdef SERVICE_DEBUG
|
|
pqioutput(PQL_DEBUG_ALL, pqiservicezone,
|
|
"p3ServiceServer::tick()");
|
|
#endif
|
|
|
|
std::map<uint32_t, pqiService *>::iterator it;
|
|
|
|
// from the beginning to where we started.
|
|
for(it = services.begin();it != services.end(); ++it)
|
|
{
|
|
|
|
#ifdef SERVICE_DEBUG
|
|
std::string out;
|
|
rs_sprintf(out, "p3ServiceServer::service id: %u -> Service: %p", it -> first, it -> second);
|
|
pqioutput(PQL_DEBUG_ALL, pqiservicezone, out);
|
|
#endif
|
|
|
|
// now we should actually tick the service.
|
|
(it -> second) -> tick();
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
|
|
|