mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 04:04:16 +00:00
Merge pull request #16 from meeh420/master
Adding lightweight option parser
This commit is contained in:
commit
3ad76e2833
2
Makefile
2
Makefile
@ -3,7 +3,7 @@ CC = g++
|
|||||||
CFLAGS = -g -Wall -std=c++0x
|
CFLAGS = -g -Wall -std=c++0x
|
||||||
OBJECTS = i2p.o base64.o NTCPSession.o RouterInfo.o Transports.o RouterContext.o \
|
OBJECTS = i2p.o base64.o NTCPSession.o RouterInfo.o Transports.o RouterContext.o \
|
||||||
NetDb.o LeaseSet.o Tunnel.o TunnelEndpoint.o TunnelGateway.o TransitTunnel.o \
|
NetDb.o LeaseSet.o Tunnel.o TunnelEndpoint.o TunnelGateway.o TransitTunnel.o \
|
||||||
I2NPProtocol.o Log.o Garlic.o HTTPServer.o Streaming.o Identity.o SSU.o
|
I2NPProtocol.o Log.o Garlic.o HTTPServer.o Streaming.o Identity.o SSU.o util.o
|
||||||
INCFLAGS =
|
INCFLAGS =
|
||||||
LDFLAGS = -Wl,-rpath,/usr/local/lib -lcryptopp -lboost_system -lboost_filesystem -lpthread
|
LDFLAGS = -Wl,-rpath,/usr/local/lib -lcryptopp -lboost_system -lboost_filesystem -lpthread
|
||||||
LIBS =
|
LIBS =
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
#include <cryptopp/dsa.h>
|
#include <cryptopp/dsa.h>
|
||||||
#include "CryptoConst.h"
|
#include "CryptoConst.h"
|
||||||
#include "RouterContext.h"
|
#include "RouterContext.h"
|
||||||
|
#include "util.h"
|
||||||
|
|
||||||
namespace i2p
|
namespace i2p
|
||||||
{
|
{
|
||||||
|
9
i2p.cpp
9
i2p.cpp
@ -10,10 +10,11 @@
|
|||||||
#include "Tunnel.h"
|
#include "Tunnel.h"
|
||||||
#include "NetDb.h"
|
#include "NetDb.h"
|
||||||
#include "HTTPServer.h"
|
#include "HTTPServer.h"
|
||||||
|
#include "util.h"
|
||||||
|
|
||||||
int main( int, char** )
|
int main( int argc, char* argv[] )
|
||||||
{
|
{
|
||||||
|
i2p::util::ParseArguments(argc,argv);
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
setlocale(LC_CTYPE, "");
|
setlocale(LC_CTYPE, "");
|
||||||
SetConsoleCP(1251);
|
SetConsoleCP(1251);
|
||||||
@ -21,7 +22,9 @@ int main( int, char** )
|
|||||||
setlocale(LC_ALL, "Russian");
|
setlocale(LC_ALL, "Russian");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
i2p::util::HTTPServer httpServer (7070);
|
int httpport = i2p::util::GetIntArg("--httpport", 7070);
|
||||||
|
|
||||||
|
i2p::util::HTTPServer httpServer (httpport);
|
||||||
|
|
||||||
httpServer.Start ();
|
httpServer.Start ();
|
||||||
i2p::data::netdb.Start ();
|
i2p::data::netdb.Start ();
|
||||||
|
45
util.cpp
Normal file
45
util.cpp
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
#include "util.h"
|
||||||
|
|
||||||
|
namespace i2p
|
||||||
|
{
|
||||||
|
namespace util
|
||||||
|
{
|
||||||
|
std::map<std::string, std::string> mapArgs;
|
||||||
|
|
||||||
|
void ParseArguments(int argc, const char* const argv[])
|
||||||
|
{
|
||||||
|
mapArgs.clear();
|
||||||
|
for (int i = 1; i < argc; i++)
|
||||||
|
{
|
||||||
|
std::string strKey (argv[i]);
|
||||||
|
std::string strValue;
|
||||||
|
size_t has_data = strKey.find('=');
|
||||||
|
if (has_data != std::string::npos)
|
||||||
|
{
|
||||||
|
strValue = strKey.substr(has_data+1);
|
||||||
|
strKey = strKey.substr(0, has_data);
|
||||||
|
}
|
||||||
|
if (strKey[0] != '-')
|
||||||
|
break;
|
||||||
|
|
||||||
|
mapArgs[strKey] = strValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int GetIntArg(const std::string& strArg, int nDefault)
|
||||||
|
{
|
||||||
|
if (mapArgs.count(strArg))
|
||||||
|
return atoi(mapArgs[strArg].c_str());
|
||||||
|
return nDefault;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string GetStringArg(const std::string& strArg, std::string nDefault)
|
||||||
|
{
|
||||||
|
if (mapArgs.count(strArg))
|
||||||
|
return mapArgs[strArg];
|
||||||
|
return nDefault;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
} // Namespace end
|
||||||
|
}
|
19
util.h
Normal file
19
util.h
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#ifndef UTIL_H
|
||||||
|
#define UTIL_H
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
namespace i2p
|
||||||
|
{
|
||||||
|
namespace util
|
||||||
|
{
|
||||||
|
extern std::map<std::string, std::string> mapArgs;
|
||||||
|
void ParseArguments(int argc, const char* const argv[]);
|
||||||
|
int GetIntArg(const std::string& strArg, int nDefault);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
Loading…
x
Reference in New Issue
Block a user