i2pd/api.cpp

113 lines
2.7 KiB
C++
Raw Normal View History

2014-11-17 22:42:45 +03:00
#include <string>
#include <map>
#include "Log.h"
#include "NetDb.h"
#include "Transports.h"
#include "Tunnel.h"
#include "RouterContext.h"
#include "Identity.h"
#include "Destination.h"
#include "util.h"
2014-11-17 20:37:40 +03:00
#include "api.h"
namespace i2p
{
namespace api
{
2014-11-18 17:33:58 +03:00
void InitI2P (int argc, char* argv[], const char * appName)
2014-11-17 22:42:45 +03:00
{
2014-11-18 17:33:58 +03:00
i2p::util::filesystem::SetAppName (appName);
2014-11-17 22:42:45 +03:00
i2p::util::config::OptionParser(argc, argv);
i2p::context.Init ();
}
void StartI2P (std::ostream * logStream)
2014-11-17 22:42:45 +03:00
{
if (logStream)
StartLog (logStream);
else
StartLog (i2p::util::filesystem::GetAppName () + ".log");
2014-11-17 22:42:45 +03:00
i2p::data::netdb.Start();
LogPrint("NetDB started");
i2p::transport::transports.Start();
LogPrint("Transports started");
i2p::tunnel::tunnels.Start();
LogPrint("Tunnels started");
}
void StopI2P ()
{
LogPrint("Shutdown started.");
i2p::tunnel::tunnels.Stop();
2015-02-12 05:06:52 +03:00
LogPrint("Tunnels stopped");
2014-11-17 22:42:45 +03:00
i2p::transport::transports.Stop();
2015-02-12 05:06:52 +03:00
LogPrint("Transports stopped");
2014-11-17 22:42:45 +03:00
i2p::data::netdb.Stop();
2015-02-12 05:06:52 +03:00
LogPrint("NetDB stopped");
2014-11-17 22:42:45 +03:00
StopLog ();
}
2014-11-18 01:00:30 +03:00
2014-12-11 21:28:37 +03:00
i2p::client::ClientDestination * CreateLocalDestination (const i2p::data::PrivateKeys& keys, bool isPublic,
const std::map<std::string, std::string> * params)
2014-11-18 01:00:30 +03:00
{
2014-12-11 21:28:37 +03:00
auto localDestination = new i2p::client::ClientDestination (keys, isPublic, params);
2014-11-18 01:00:30 +03:00
localDestination->Start ();
return localDestination;
}
2014-12-11 21:28:37 +03:00
i2p::client::ClientDestination * CreateLocalDestination (bool isPublic, i2p::data::SigningKeyType sigType,
const std::map<std::string, std::string> * params)
2014-11-18 01:00:30 +03:00
{
2014-11-29 00:46:26 +03:00
i2p::data::PrivateKeys keys = i2p::data::PrivateKeys::CreateRandomKeys (sigType);
2014-12-11 21:28:37 +03:00
auto localDestination = new i2p::client::ClientDestination (keys, isPublic, params);
2014-11-18 01:00:30 +03:00
localDestination->Start ();
return localDestination;
}
void DestroyLocalDestination (i2p::client::ClientDestination * dest)
{
if (dest)
{
dest->Stop ();
delete dest;
}
}
2014-11-18 17:33:58 +03:00
void RequestLeaseSet (i2p::client::ClientDestination * dest, const i2p::data::IdentHash& remote)
{
if (dest)
dest->RequestDestination (remote);
2014-11-18 17:33:58 +03:00
}
2014-11-23 19:33:58 +03:00
std::shared_ptr<i2p::stream::Stream> CreateStream (i2p::client::ClientDestination * dest, const i2p::data::IdentHash& remote)
2014-11-18 17:33:58 +03:00
{
2014-12-09 22:59:19 +03:00
if (!dest) return nullptr;
auto leaseSet = dest->FindLeaseSet (remote);
2014-11-18 17:33:58 +03:00
if (leaseSet)
{
2015-01-27 19:27:58 +03:00
auto stream = dest->CreateStream (leaseSet);
2014-11-18 17:33:58 +03:00
stream->Send (nullptr, 0); // connect
return stream;
}
else
{
RequestLeaseSet (dest, remote);
return nullptr;
}
}
void AcceptStream (i2p::client::ClientDestination * dest, const i2p::stream::StreamingDestination::Acceptor& acceptor)
{
if (dest)
dest->AcceptStreams (acceptor);
}
2014-11-23 19:33:58 +03:00
void DestroyStream (std::shared_ptr<i2p::stream::Stream> stream)
2014-11-18 17:33:58 +03:00
{
if (stream)
stream->Close ();
}
2014-11-17 20:37:40 +03:00
}
}