lokinet/llarp/link/factory.cpp
Jason Rhinelander 1697bf90fe C++17
Compiles with C++17, replaces ghc::filesystem with std::filesystem,
nonstd::optional with std::optional, and llarp::string_view with
std::string_view.
2020-05-01 17:43:27 -03:00

44 lines
900 B
C++

#include <link/factory.hpp>
#include <iwp/iwp.hpp>
namespace llarp
{
LinkFactory::LinkType
LinkFactory::TypeFromName(std::string_view str)
{
if (str == "iwp")
return LinkType::eLinkIWP;
if (str == "mempipe")
return LinkType::eLinkMempipe;
return LinkType::eLinkUnknown;
}
std::string
LinkFactory::NameFromType(LinkFactory::LinkType tp)
{
switch (tp)
{
case LinkType::eLinkIWP:
return "iwp";
case LinkType::eLinkMempipe:
return "mempipe";
default:
return "unspec";
}
}
LinkFactory::Factory
LinkFactory::Obtain(LinkFactory::LinkType tp, bool permitInbound)
{
switch (tp)
{
case LinkType::eLinkIWP:
if (permitInbound)
return llarp::iwp::NewInboundLink;
return llarp::iwp::NewOutboundLink;
default:
return nullptr;
}
}
} // namespace llarp