mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-22 07:41:20 -04:00
* Addition of almost completed p3ranking class - still streaming / ranking to do.
* Major modifications to p3disc to use the new AuthMgr and ConnMgr. * Modified RsDiscItems to match new p3disc. * Modified ConnMgr to accept information from p3disc. * Addition of new Load/Save Certificate From/To Binary to AuthMgr. * Corrected default build to Linux. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@325 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
3451af6152
commit
06aae24efd
19 changed files with 1541 additions and 2171 deletions
95
libretroshare/src/rsserver/p3rank.cc
Normal file
95
libretroshare/src/rsserver/p3rank.cc
Normal file
|
@ -0,0 +1,95 @@
|
|||
/*
|
||||
* libretroshare/src/rsserver: p3rank.cc
|
||||
*
|
||||
* RetroShare C++ Interface.
|
||||
*
|
||||
* Copyright 2007-2008 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".
|
||||
*
|
||||
*/
|
||||
|
||||
#include "rsserver/p3rank.h"
|
||||
|
||||
RsRanks *rsRanks = NULL;
|
||||
|
||||
p3Rank::p3Rank(p3Ranking *ranking)
|
||||
:mRank(ranking)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
p3Rank::~p3Rank()
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
/* Set Sort Methods */
|
||||
bool p3Rank::setSortPeriod(uint32_t period)
|
||||
{
|
||||
return mRank->setSortPeriod(period);
|
||||
}
|
||||
|
||||
bool p3Rank::setSortMethod(uint32_t type)
|
||||
{
|
||||
return mRank->setSortMethod(type);
|
||||
}
|
||||
|
||||
bool p3Rank::clearPeerFilter()
|
||||
{
|
||||
return mRank->clearPeerFilter();
|
||||
}
|
||||
|
||||
bool p3Rank::setPeerFilter(std::list<std::string> peers)
|
||||
{
|
||||
return mRank->setPeerFilter(peers);
|
||||
}
|
||||
|
||||
/* get Ids */
|
||||
uint32_t p3Rank::getRankingsCount()
|
||||
{
|
||||
return mRank->getRankingsCount();
|
||||
}
|
||||
|
||||
float p3Rank::getMaxRank()
|
||||
{
|
||||
return mRank->getMaxRank();
|
||||
}
|
||||
|
||||
bool p3Rank::getRankings(uint32_t first, uint32_t count, std::list<std::string> &rids)
|
||||
{
|
||||
return mRank->getRankings(first, count, rids);
|
||||
}
|
||||
|
||||
bool p3Rank::getRankDetails(std::string rid, RsRankDetails &details)
|
||||
{
|
||||
return mRank->getRankDetails(rid, details);
|
||||
}
|
||||
|
||||
|
||||
/* Add New Comment / Msg */
|
||||
std::string p3Rank::newRankMsg(std::wstring link, std::wstring title, std::wstring comment)
|
||||
{
|
||||
return mRank->newRankMsg(link, title, comment);
|
||||
}
|
||||
|
||||
bool p3Rank::updateComment(std::string rid, std::wstring comment)
|
||||
{
|
||||
return mRank->updateComment(rid, comment);
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue