Commit 2f4752be authored by aligungr's avatar aligungr

Performance improvements

parent 50bce8fc
......@@ -25,8 +25,8 @@ RlsUdpLayer::RlsUdpLayer(UeTask *ue)
m_simPos = Vector3{};
m_ue->fdBase->allocate(FdBase::RLS_IP4, Socket::CreateUdp4().getFd(), true);
m_ue->fdBase->allocate(FdBase::RLS_IP6, Socket::CreateUdp6().getFd(), true);
m_ue->fdBase->allocate(FdBase::RLS_IP4, Socket::CreateUdp4().getFd());
m_ue->fdBase->allocate(FdBase::RLS_IP6, Socket::CreateUdp6().getFd());
}
RlsUdpLayer::~RlsUdpLayer() = default;
......@@ -49,7 +49,8 @@ void RlsUdpLayer::sendRlsPdu(const InetAddress &address, const rls::RlsMessage &
if (version != 4 && version != 6)
throw std::runtime_error{"UdpServer::Send failure: Invalid IP version"};
m_ue->fdBase->write(version == 4 ? FdBase::RLS_IP4 : FdBase::RLS_IP6, m_sendBuffer.get(), static_cast<size_t>(n));
m_ue->fdBase->sendTo(version == 4 ? FdBase::RLS_IP4 : FdBase::RLS_IP6, m_sendBuffer.get(), static_cast<size_t>(n),
address);
}
void RlsUdpLayer::send(int cellId, const rls::RlsMessage &msg)
......
......@@ -83,18 +83,18 @@ void UeTask::onLoop()
return;
}
int fdId;
InetAddress peer;
size_t n = fdBase->read(m_buffer.get(), BUFFER_SIZE, RECEIVE_TIMEOUT, fdId, peer);
if (n > 0)
int fdId = fdBase->performSelect(RECEIVE_TIMEOUT);
if (fdId >= 0)
{
if (fdId >= FdBase::PS_START && fdId <= FdBase::PS_END)
{
size_t n = fdBase->read(fdId, m_buffer.get(), BUFFER_SIZE);
nas->handleUplinkDataRequest(fdId - FdBase::PS_START, OctetString::FromArray(m_buffer.get(), n));
}
else if (fdId == FdBase::RLS_IP4 || fdId == FdBase::RLS_IP6)
{
InetAddress peer;
size_t n = fdBase->receive(fdId, m_buffer.get(), BUFFER_SIZE, peer);
rlsUdp->receiveRlsPdu(peer, OctetString::FromArray(m_buffer.get(), n));
}
}
......
......@@ -58,7 +58,7 @@ std::string TunLayer::allocate(int psi, const std::string &ipAddress, bool confi
return {};
}
m_ue->fdBase->allocate(FdBase::PS_START + psi, fd, false);
m_ue->fdBase->allocate(FdBase::PS_START + psi, fd);
return allocatedName;
}
......
......@@ -23,100 +23,86 @@ static std::string GetErrorMessage(const std::string &cause)
return what;
}
FdBase::FdBase() : m_ids{}, m_fds{}, m_isSocket(), m_dice{}
FdBase::FdBase() : m_entries{}, m_dice{}
{
for (auto &fd : m_fds)
for (auto &fd : m_entries)
fd = -1;
}
FdBase::~FdBase()
{
for (int fd : m_fds)
for (auto &fd : m_entries)
{
if (fd >= 0)
::close(fd);
fd = -1;
}
}
void FdBase::allocate(int id, int fd, bool isSocket)
void FdBase::allocate(int id, int fd)
{
if (id < 0)
throw std::runtime_error{"FdBase bad id"};
for (size_t i = 0; i < m_ids.size(); i++)
{
if (m_fds[i] < 0)
{
m_ids[i] = id;
m_fds[i] = fd;
m_isSocket[i] = isSocket;
return;
}
}
if (m_entries[id] >= 0)
throw std::runtime_error{"FdBase existing id"};
throw std::runtime_error{"FdBase allocation failure"};
m_entries[id] = fd;
}
void FdBase::release(int id)
{
for (size_t i = 0; i < m_ids.size(); i++)
{
if (m_ids[i] == id)
{
::close(m_fds[i]);
m_ids[i] = -1;
m_fds[i] = -1;
m_isSocket[i] = false;
}
}
if (m_entries[id] >= 0)
::close(m_entries[id]);
m_entries[id] = -1;
}
void FdBase::write(int id, uint8_t *buffer, size_t size)
{
for (size_t i = 0; i < m_ids.size(); i++)
{
if (m_ids[i] == id)
ssize_t rc = ::write(m_entries[id], buffer, size);
if (rc == -1)
{
::write(m_fds[i], buffer, size);
break;
}
int err = errno;
if (err != EAGAIN)
throw std::runtime_error(GetErrorMessage("FD could not send"));
}
}
size_t FdBase::read(uint8_t *buffer, size_t size, int timeout, int &outId, InetAddress &outAddress)
void FdBase::sendTo(int id, uint8_t *buffer, size_t size, const InetAddress &address)
{
int index = performSelect(timeout);
if (index < 0)
return 0;
ssize_t rc = sendto(m_entries[id], buffer, size, MSG_DONTWAIT, address.getSockAddr(), address.getSockLen());
if (rc == -1)
{
int err = errno;
if (err != EAGAIN)
throw std::runtime_error(GetErrorMessage("FD could not send"));
}
}
outId = m_ids[index];
size_t FdBase::read(int id, uint8_t *buffer, size_t size)
{
auto n = ::read(m_entries[id], buffer, size);
if (n < 0)
throw std::runtime_error(GetErrorMessage("FD could not read"));
return static_cast<size_t>(n);
}
if (m_isSocket[index])
{
size_t FdBase::receive(int id, uint8_t *buffer, size_t size, InetAddress &outAddress)
{
sockaddr_storage peerAddr{};
socklen_t peerAddrLen = sizeof(struct sockaddr_storage);
auto n = ::recvfrom(m_fds[index], buffer, size, 0, (struct sockaddr *)&peerAddr, &peerAddrLen);
auto n = ::recvfrom(m_entries[id], buffer, size, 0, (struct sockaddr *)&peerAddr, &peerAddrLen);
if (n < 0)
throw std::runtime_error(GetErrorMessage("FD could not receive"));
outAddress = InetAddress{peerAddr, peerAddrLen};
return static_cast<size_t>(n);
}
else
{
outAddress = {};
auto n = ::read(m_fds[index], buffer, size);
if (n < 0)
throw std::runtime_error(GetErrorMessage("FD could not read"));
return static_cast<size_t>(n);
}
}
bool FdBase::contains(int id) const
{
for (int m_id : m_ids)
if (m_id == id)
return true;
return false;
return m_entries[id] >= 0;
}
int FdBase::performSelect(int timeout)
......@@ -128,9 +114,9 @@ int FdBase::performSelect(int timeout)
fd_set fdSet;
FD_ZERO(&fdSet);
for (size_t i = 0; i < m_ids.size(); i++)
for (size_t i = 0; i < SIZE; i++)
{
int fd = m_fds[i];
int fd = m_entries[i];
if (fd >= 0)
{
FD_SET(fd, &fdSet);
......@@ -146,10 +132,10 @@ int FdBase::performSelect(int timeout)
if (ret < 0)
return -1;
for (size_t i = 0; i < m_ids.size(); i++)
for (size_t i = 0; i < SIZE; i++)
{
size_t j = (dice + i) % m_ids.size();
int fd = m_fds[j];
size_t j = (dice + i) % SIZE;
int fd = m_entries[j];
if (fd >= 0 && FD_ISSET(fd, &fdSet))
return static_cast<int>(j);
}
......
......@@ -24,9 +24,7 @@ class FdBase
static constexpr const int SIZE = 18;
private:
std::array<int, SIZE> m_ids;
std::array<int, SIZE> m_fds;
std::array<bool, SIZE> m_isSocket;
std::array<int, SIZE> m_entries;
size_t m_dice;
public:
......@@ -34,12 +32,15 @@ class FdBase
~FdBase();
public:
void allocate(int id, int fd, bool isSocket);
void allocate(int id, int fd);
void release(int id);
[[nodiscard]] bool contains(int id) const;
size_t read(uint8_t *buffer, size_t size, int timeout, int &outId, InetAddress& outAddress);
void write(int id, uint8_t *buffer, size_t size);
private:
int performSelect(int timeout);
size_t read(int id, uint8_t *buffer, size_t size);
void write(int id, uint8_t *buffer, size_t size);
size_t receive(int id, uint8_t *buffer, size_t size, InetAddress &outAddress);
void sendTo(int id, uint8_t *buffer, size_t size, const InetAddress &address);
};
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment