2018-05-28 22:28:51 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* libretroshare/src/retroshare: rsturtle.h *
|
|
|
|
* *
|
|
|
|
* libretroshare: retroshare core library *
|
|
|
|
* *
|
|
|
|
* Copyright 2009-2018 by Cyril Soler <csoler@users.sourceforge.net> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Lesser General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 Lesser General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2011-05-23 21:45:25 +00:00
|
|
|
#pragma once
|
|
|
|
|
2009-03-13 21:14:30 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string>
|
|
|
|
#include <list>
|
2009-08-16 20:10:53 +00:00
|
|
|
#include <vector>
|
2009-03-13 21:14:30 +00:00
|
|
|
|
2018-05-05 18:41:41 +02:00
|
|
|
#include "serialiser/rstlvbinary.h"
|
2014-03-17 20:56:06 +00:00
|
|
|
#include "retroshare/rstypes.h"
|
2018-05-05 18:41:41 +02:00
|
|
|
#include "retroshare/rsgxsifacetypes.h"
|
2018-06-29 16:03:09 +02:00
|
|
|
#include "serialiser/rsserializable.h"
|
2014-03-17 20:56:06 +00:00
|
|
|
|
2016-09-13 12:05:22 +02:00
|
|
|
namespace RsRegularExpression { class LinearizedExpression ; }
|
2013-04-01 21:18:58 +00:00
|
|
|
class RsTurtleClientService ;
|
2009-08-25 12:04:43 +00:00
|
|
|
|
2009-03-13 21:14:30 +00:00
|
|
|
class RsTurtle;
|
2018-06-29 16:03:09 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pointer to global instance of RsTurtle service implementation
|
|
|
|
*/
|
|
|
|
extern RsTurtle* rsTurtle;
|
2009-03-13 21:14:30 +00:00
|
|
|
|
|
|
|
typedef uint32_t TurtleRequestId ;
|
2018-07-15 19:09:12 +02:00
|
|
|
typedef RsPeerId TurtleVirtualPeerId;
|
2009-03-13 21:14:30 +00:00
|
|
|
|
2018-08-25 17:58:04 +02:00
|
|
|
struct TurtleFileInfo : RsSerializable
|
2009-03-15 22:45:40 +00:00
|
|
|
{
|
2019-06-20 17:24:18 +02:00
|
|
|
TurtleFileInfo() : size(0) {}
|
|
|
|
|
2018-08-25 17:58:04 +02:00
|
|
|
uint64_t size; /// File size
|
|
|
|
RsFileHash hash; /// File hash
|
|
|
|
std::string name; /// File name
|
|
|
|
|
2018-06-29 16:03:09 +02:00
|
|
|
/// @see RsSerializable::serial_process
|
|
|
|
void serial_process( RsGenericSerializer::SerializeJob j,
|
|
|
|
RsGenericSerializer::SerializeContext& ctx )
|
|
|
|
{
|
|
|
|
RS_SERIAL_PROCESS(size);
|
2018-08-25 17:58:04 +02:00
|
|
|
RS_SERIAL_PROCESS(hash);
|
|
|
|
|
|
|
|
// Use String TLV serial process for retrocompatibility
|
|
|
|
RsTypeSerializer::serial_process(
|
|
|
|
j, ctx, TLV_TYPE_STR_NAME, name, "name" );
|
|
|
|
}
|
2019-06-20 17:24:18 +02:00
|
|
|
} RS_DEPRECATED_FOR(TurtleFileInfoV2);
|
2018-06-06 23:15:29 +02:00
|
|
|
|
2018-02-17 23:37:25 +01:00
|
|
|
struct TurtleTunnelRequestDisplayInfo
|
|
|
|
{
|
|
|
|
uint32_t request_id ; // Id of the request
|
|
|
|
RsPeerId source_peer_id ; // Peer that relayed the request
|
|
|
|
uint32_t age ; // Age in seconds
|
|
|
|
uint32_t depth ; // Depth of the request. Might be altered.
|
|
|
|
};
|
|
|
|
struct TurtleSearchRequestDisplayInfo
|
2011-05-23 21:45:25 +00:00
|
|
|
{
|
2018-02-17 23:37:25 +01:00
|
|
|
uint32_t request_id ; // Id of the request
|
|
|
|
RsPeerId source_peer_id ; // Peer that relayed the request
|
|
|
|
uint32_t age ; // Age in seconds
|
|
|
|
uint32_t depth ; // Depth of the request. Might be altered.
|
|
|
|
uint32_t hits ;
|
2017-09-15 15:16:36 +03:00
|
|
|
std::string keywords;
|
2011-05-23 21:45:25 +00:00
|
|
|
};
|
|
|
|
|
2011-05-26 22:11:06 +00:00
|
|
|
class TurtleTrafficStatisticsInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
float unknown_updn_Bps ; // unknown data transit bitrate (in Bytes per sec.)
|
|
|
|
float data_up_Bps ; // upload (in Bytes per sec.)
|
|
|
|
float data_dn_Bps ; // download (in Bytes per sec.)
|
|
|
|
float tr_up_Bps ; // tunnel requests upload bitrate (in Bytes per sec.)
|
|
|
|
float tr_dn_Bps ; // tunnel requests dnload bitrate (in Bytes per sec.)
|
|
|
|
float total_up_Bps ; // turtle network management bitrate (in Bytes per sec.)
|
|
|
|
float total_dn_Bps ; // turtle network management bitrate (in Bytes per sec.)
|
2011-10-01 11:46:00 +00:00
|
|
|
|
|
|
|
std::vector<float> forward_probabilities ; // probability to forward a TR as a function of depth.
|
2011-05-26 22:11:06 +00:00
|
|
|
};
|
|
|
|
|
2009-03-13 21:14:30 +00:00
|
|
|
// Interface class for turtle hopping.
|
|
|
|
//
|
|
|
|
// This class mainly interacts with the turtle router, that is responsible
|
|
|
|
// for routing turtle packets between peers, accepting/forwarding search
|
|
|
|
// requests and dowloading files.
|
|
|
|
//
|
|
|
|
// As seen from here, the interface is really simple.
|
|
|
|
//
|
|
|
|
class RsTurtle
|
|
|
|
{
|
2018-06-29 16:03:09 +02:00
|
|
|
public:
|
2011-05-23 21:45:25 +00:00
|
|
|
RsTurtle() {}
|
2009-03-13 21:14:30 +00:00
|
|
|
virtual ~RsTurtle() {}
|
|
|
|
|
2012-11-25 22:49:00 +00:00
|
|
|
// This is saved permanently.
|
2012-11-25 14:26:32 +00:00
|
|
|
virtual void setEnabled(bool) = 0 ;
|
|
|
|
virtual bool enabled() const = 0 ;
|
2012-11-25 22:49:00 +00:00
|
|
|
|
|
|
|
// This is temporary, used by Operating Mode.
|
|
|
|
virtual void setSessionEnabled(bool) = 0 ;
|
|
|
|
virtual bool sessionEnabled() const = 0 ;
|
2012-11-25 14:26:32 +00:00
|
|
|
|
2019-06-20 17:24:18 +02:00
|
|
|
/** Lauches a search request through the pipes, and immediately returns
|
|
|
|
* the request id, which will be further used by client services to
|
|
|
|
* handle results as they come back. */
|
2018-06-29 16:03:09 +02:00
|
|
|
virtual TurtleRequestId turtleSearch(
|
|
|
|
unsigned char *search_bin_data, uint32_t search_bin_data_len,
|
|
|
|
RsTurtleClientService* client_service ) = 0;
|
2009-03-13 21:14:30 +00:00
|
|
|
|
2009-06-03 18:47:14 +00:00
|
|
|
// Initiates tunnel handling for the given file hash. tunnels. Launches
|
|
|
|
// an exception if an error occurs during the initialization process. The
|
|
|
|
// turtle router itself does not initiate downloads, it only maintains
|
|
|
|
// tunnels for the given hash. The download should be driven by the file
|
2015-01-31 18:04:23 +00:00
|
|
|
// transfer module by calling ftServer::FileRequest().
|
|
|
|
// Aggressive mode causes the turtle router to regularly re-ask tunnels in addition to the ones already
|
|
|
|
// available without replacing them. In non aggressive mode, we wait for all tunnels to die before asking
|
|
|
|
// for new tunnels.
|
2009-03-13 21:14:30 +00:00
|
|
|
//
|
2015-01-22 20:25:39 +00:00
|
|
|
virtual void monitorTunnels(const RsFileHash& file_hash,RsTurtleClientService *client_service,bool use_aggressive_mode) = 0 ;
|
2009-06-03 18:47:14 +00:00
|
|
|
|
|
|
|
// Tells the turtle router to stop handling tunnels for the given file hash. Traditionally this should
|
|
|
|
// be called after calling ftServer::fileCancel().
|
|
|
|
//
|
2014-03-17 20:56:06 +00:00
|
|
|
virtual void stopMonitoringTunnels(const RsFileHash& file_hash) = 0 ;
|
2013-04-01 21:18:58 +00:00
|
|
|
|
|
|
|
/// Adds a client tunnel service. This means that the service will be added
|
|
|
|
/// to the list of services that might respond to tunnel requests.
|
|
|
|
/// Example tunnel services include:
|
|
|
|
///
|
|
|
|
/// p3ChatService: tunnels correspond to private distant chatting
|
|
|
|
/// ftServer : tunnels correspond to file data transfer
|
|
|
|
///
|
|
|
|
virtual void registerTunnelService(RsTurtleClientService *service) = 0;
|
2009-03-22 14:08:02 +00:00
|
|
|
|
2017-03-10 09:27:46 +03:00
|
|
|
virtual std::string getPeerNameForVirtualPeerId(const RsPeerId& virtual_peer_id) = 0;
|
|
|
|
|
2009-08-16 20:10:53 +00:00
|
|
|
// Get info from the turtle router. I use std strings to hide the internal structs.
|
2011-05-26 22:11:06 +00:00
|
|
|
//
|
2009-08-16 20:10:53 +00:00
|
|
|
virtual void getInfo(std::vector<std::vector<std::string> >&,std::vector<std::vector<std::string> >&,
|
2018-02-17 23:37:25 +01:00
|
|
|
std::vector<TurtleSearchRequestDisplayInfo>&,std::vector<TurtleTunnelRequestDisplayInfo>&) const = 0;
|
2010-01-26 20:40:21 +00:00
|
|
|
|
2011-05-26 22:11:06 +00:00
|
|
|
// Get info about turtle traffic. See TurtleTrafficStatisticsInfo members for details.
|
|
|
|
//
|
|
|
|
virtual void getTrafficStatistics(TurtleTrafficStatisticsInfo& info) const = 0;
|
|
|
|
|
2010-01-26 20:40:21 +00:00
|
|
|
// Convenience function.
|
2014-03-17 20:56:06 +00:00
|
|
|
virtual bool isTurtlePeer(const RsPeerId& peer_id) const = 0 ;
|
2011-05-23 21:45:25 +00:00
|
|
|
|
2012-02-10 22:23:06 +00:00
|
|
|
// Hardcore handles
|
|
|
|
virtual void setMaxTRForwardRate(int max_tr_up_rate) = 0 ;
|
|
|
|
virtual int getMaxTRForwardRate() const = 0 ;
|
2009-03-13 21:14:30 +00:00
|
|
|
};
|