2007-11-14 22:18:48 -05:00
|
|
|
/*
|
|
|
|
* "$Id: pqihandler.h,v 1.10 2007-03-31 09:41:32 rmf24 Exp $"
|
|
|
|
*
|
|
|
|
* 3P/PQI network interface for RetroShare.
|
|
|
|
*
|
|
|
|
* Copyright 2004-2006 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 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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MRK_PQI_HANDLER_HEADER
|
|
|
|
#define MRK_PQI_HANDLER_HEADER
|
|
|
|
|
|
|
|
#include "pqi/pqi.h"
|
|
|
|
#include "pqi/pqisecurity.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
class SearchModule
|
|
|
|
{
|
|
|
|
public:
|
2007-12-11 20:29:14 -05:00
|
|
|
std::string peerid;
|
2007-11-14 22:18:48 -05:00
|
|
|
PQInterface *pqi;
|
|
|
|
SecurityPolicy *sp;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Presents a P3 Face to the world!
|
|
|
|
// and funnels data through to a PQInterface.
|
|
|
|
//
|
|
|
|
class pqihandler: public P3Interface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
pqihandler(SecurityPolicy *Global);
|
2007-12-11 20:29:14 -05:00
|
|
|
bool AddSearchModule(SearchModule *mod);
|
|
|
|
bool RemoveSearchModule(SearchModule *mod);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
// P3Interface.
|
2007-12-11 20:29:14 -05:00
|
|
|
virtual int SearchSpecific(RsCacheRequest *ns);
|
|
|
|
virtual int SendSearchResult(RsCacheItem *);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
// inputs.
|
2007-12-11 20:29:14 -05:00
|
|
|
virtual RsCacheRequest * RequestedSearch();
|
|
|
|
virtual RsCacheItem * GetSearchResult();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
// file i/o
|
2007-12-11 20:29:14 -05:00
|
|
|
virtual int SendFileRequest(RsFileRequest *ns);
|
|
|
|
virtual int SendFileData(RsFileData *ns);
|
|
|
|
virtual RsFileRequest * GetFileRequest();
|
|
|
|
virtual RsFileData * GetFileData();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
// Rest of P3Interface
|
|
|
|
virtual int tick();
|
|
|
|
virtual int status();
|
|
|
|
|
2007-12-11 20:29:14 -05:00
|
|
|
// Service Data Interface
|
|
|
|
virtual int SendRsRawItem(RsRawItem *);
|
|
|
|
virtual RsRawItem *GetRsRawItem();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
// rate control.
|
|
|
|
void setMaxIndivRate(bool in, float val);
|
|
|
|
float getMaxIndivRate(bool in);
|
|
|
|
void setMaxRate(bool in, float val);
|
|
|
|
float getMaxRate(bool in);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/* check to be overloaded by those that can
|
|
|
|
* generates warnings otherwise
|
|
|
|
*/
|
2007-12-11 20:29:14 -05:00
|
|
|
virtual int checkOutgoingRsItem(RsItem *item, int global);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2007-12-11 20:29:14 -05:00
|
|
|
int HandleRsItem(RsItem *ns, int allowglobal);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
int GetItems();
|
2007-12-11 20:29:14 -05:00
|
|
|
void SortnStoreItem(RsItem *item);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2007-12-11 20:29:14 -05:00
|
|
|
std::map<std::string, SearchModule *> mods;
|
2007-11-14 22:18:48 -05:00
|
|
|
SecurityPolicy *globsec;
|
|
|
|
|
|
|
|
// Temporary storage...
|
2007-12-11 20:29:14 -05:00
|
|
|
std::list<RsItem *> in_result, in_search,
|
|
|
|
in_request, in_data, in_service;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// rate control.
|
|
|
|
int UpdateRates();
|
|
|
|
|
|
|
|
float rateIndiv_in;
|
|
|
|
float rateIndiv_out;
|
|
|
|
float rateMax_in;
|
|
|
|
float rateMax_out;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
inline void pqihandler::setMaxIndivRate(bool in, float val)
|
|
|
|
{
|
|
|
|
if (in)
|
|
|
|
rateIndiv_in = val;
|
|
|
|
else
|
|
|
|
rateIndiv_out = val;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline float pqihandler::getMaxIndivRate(bool in)
|
|
|
|
{
|
|
|
|
if (in)
|
|
|
|
return rateIndiv_in;
|
|
|
|
else
|
|
|
|
return rateIndiv_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void pqihandler::setMaxRate(bool in, float val)
|
|
|
|
{
|
|
|
|
if (in)
|
|
|
|
rateMax_in = val;
|
|
|
|
else
|
|
|
|
rateMax_out = val;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline float pqihandler::getMaxRate(bool in)
|
|
|
|
{
|
|
|
|
if (in)
|
|
|
|
return rateMax_in;
|
|
|
|
else
|
|
|
|
return rateMax_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // MRK_PQI_HANDLER_HEADER
|