2014-01-30 07:28:07 +04:00
|
|
|
#ifndef UTIL_H
|
|
|
|
#define UTIL_H
|
|
|
|
|
|
|
|
#include <string>
|
2017-01-12 03:45:04 +03:00
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
2014-10-31 21:17:52 +03:00
|
|
|
#include <boost/asio.hpp>
|
2014-02-01 07:09:55 +04:00
|
|
|
|
2016-06-14 18:55:44 +03:00
|
|
|
#ifdef ANDROID
|
2016-10-26 03:00:00 +03:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2016-06-14 18:55:44 +03:00
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
template <typename T>
|
|
|
|
std::string to_string(T value)
|
|
|
|
{
|
|
|
|
return boost::lexical_cast<std::string>(value);
|
|
|
|
}
|
2016-10-26 23:19:32 +03:00
|
|
|
|
|
|
|
inline int stoi(const std::string& str)
|
|
|
|
{
|
|
|
|
return boost::lexical_cast<int>(str);
|
|
|
|
}
|
2016-06-14 18:55:44 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-30 07:28:07 +04:00
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace util
|
|
|
|
{
|
2017-01-11 00:14:18 +03:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
class MemoryPool
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
MemoryPool (): m_Head (nullptr) {};
|
|
|
|
~MemoryPool ()
|
|
|
|
{
|
|
|
|
while (m_Head)
|
|
|
|
{
|
|
|
|
auto tmp = m_Head;
|
|
|
|
m_Head = static_cast<T*>(*(void * *)m_Head); // next
|
|
|
|
delete tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename... TArgs>
|
2017-01-12 03:45:04 +03:00
|
|
|
T * Acquire (TArgs&&... args)
|
2017-01-11 00:14:18 +03:00
|
|
|
{
|
|
|
|
if (!m_Head) return new T(args...);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto tmp = m_Head;
|
|
|
|
m_Head = static_cast<T*>(*(void * *)m_Head); // next
|
|
|
|
return new (tmp)T(args...);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Release (T * t)
|
|
|
|
{
|
2017-01-11 05:31:52 +03:00
|
|
|
if (!t) return;
|
2017-01-11 00:14:18 +03:00
|
|
|
t->~T ();
|
2017-01-11 05:31:52 +03:00
|
|
|
*(void * *)t = m_Head; // next
|
2017-01-11 00:14:18 +03:00
|
|
|
m_Head = t;
|
|
|
|
}
|
|
|
|
|
2017-01-12 03:45:04 +03:00
|
|
|
template<typename... TArgs>
|
|
|
|
std::unique_ptr<T, std::function<void(T*)> > AcquireUnique (TArgs&&... args)
|
|
|
|
{
|
|
|
|
return std::unique_ptr<T, std::function<void(T*)> >(Acquire (args...),
|
|
|
|
std::bind (&MemoryPool<T>::Release, this, std::placeholders::_1));
|
|
|
|
}
|
|
|
|
|
2017-01-11 00:14:18 +03:00
|
|
|
private:
|
|
|
|
|
|
|
|
T * m_Head;
|
|
|
|
};
|
|
|
|
|
2014-10-31 21:17:52 +03:00
|
|
|
namespace net
|
|
|
|
{
|
|
|
|
int GetMTU (const boost::asio::ip::address& localAddress);
|
2016-06-29 18:06:51 +03:00
|
|
|
const boost::asio::ip::address GetInterfaceAddress(const std::string & ifname, bool ipv6=false);
|
2014-10-31 21:17:52 +03:00
|
|
|
}
|
2014-01-30 07:28:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|