|
1 | | -/** |
2 | | - * \file topPorts.cpp |
3 | | - * \brief TopPorts class implementation. |
4 | | - * \author Damir Zainullin <[email protected]> |
5 | | - * \date 2024 |
6 | | - */ |
7 | | - |
8 | | -#include "topPorts.hpp" |
9 | | - |
10 | | -#include <algorithm> |
11 | | -#include <array> |
12 | | -#include <cstdint> |
13 | | -#include <functional> |
14 | | -#include <limits> |
15 | | -#include <string> |
16 | | -#include <vector> |
17 | | - |
18 | | -namespace ipxp { |
19 | | - |
20 | | -TopPorts::TopPorts(size_t top_ports_count) noexcept |
21 | | - : m_top_ports_count(top_ports_count) |
22 | | -{ |
23 | | -} |
24 | | - |
25 | | -std::string TopPorts::PortStats::to_string() const noexcept |
26 | | -{ |
27 | | - return std::to_string(port) + "[" + (protocol == Protocol::TCP ? "TCP" : "UDP") + "] - " |
28 | | - + std::to_string(frequency); |
29 | | -} |
30 | | - |
31 | | -bool update_port_buffer( |
32 | | - std::vector<TopPorts::PortStats>& port_buffer, |
33 | | - TopPorts::PortStats port_stats) noexcept |
34 | | -{ |
35 | | - auto port_pos = std::lower_bound( |
36 | | - port_buffer.begin(), |
37 | | - port_buffer.end(), |
38 | | - port_stats.frequency, |
39 | | - [](const TopPorts::PortStats& port_frequency, size_t count) { |
40 | | - return port_frequency.frequency >= count; |
41 | | - }); |
42 | | - |
43 | | - if (port_pos != port_buffer.end()) { |
44 | | - std::copy_backward(port_pos, std::prev(port_buffer.end()), port_buffer.end()); |
45 | | - *port_pos = port_stats; |
46 | | - return true; |
47 | | - } |
48 | | - return false; |
49 | | -}; |
50 | | - |
51 | | -std::vector<TopPorts::PortStats> TopPorts::get_top_ports() const noexcept |
52 | | -{ |
53 | | - std::vector<PortStats> port_buffer(m_top_ports_count); |
54 | | - size_t ports_inserted = 0; |
55 | | - |
56 | | - std::for_each( |
57 | | - m_tcp_port_frequencies.begin(), |
58 | | - m_tcp_port_frequencies.end(), |
59 | | - [&, port = uint16_t {0}](size_t frequency) mutable { |
60 | | - ports_inserted |
61 | | - += update_port_buffer(port_buffer, {port++, frequency, PortStats::Protocol::TCP}); |
62 | | - }); |
63 | | - std::for_each( |
64 | | - m_udp_port_frequencies.begin(), |
65 | | - m_udp_port_frequencies.end(), |
66 | | - [&, port = uint16_t {0}](size_t frequency) mutable { |
67 | | - ports_inserted |
68 | | - += update_port_buffer(port_buffer, {port++, frequency, PortStats::Protocol::UDP}); |
69 | | - }); |
70 | | - |
71 | | - port_buffer.resize(std::min(m_top_ports_count, ports_inserted)); |
72 | | - return port_buffer; |
73 | | -} |
74 | | - |
75 | | -} // namespace ipxp |
| 1 | +/** |
| 2 | + * \file topPorts.cpp |
| 3 | + * \brief TopPorts class implementation. |
| 4 | + * \author Damir Zainullin <[email protected]> |
| 5 | + * \date 2024 |
| 6 | + */ |
| 7 | + |
| 8 | +#include "topPorts.hpp" |
| 9 | + |
| 10 | +#include <algorithm> |
| 11 | +#include <array> |
| 12 | +#include <cstdint> |
| 13 | +#include <functional> |
| 14 | +#include <limits> |
| 15 | +#include <string> |
| 16 | +#include <vector> |
| 17 | + |
| 18 | +namespace ipxp { |
| 19 | + |
| 20 | +TopPorts::TopPorts(size_t top_ports_count) noexcept |
| 21 | + : m_top_ports_count(top_ports_count) |
| 22 | +{ |
| 23 | +} |
| 24 | + |
| 25 | +std::string TopPorts::PortStats::to_string() const noexcept |
| 26 | +{ |
| 27 | + return std::to_string(port) + "[" + (protocol == Protocol::TCP ? "TCP" : "UDP") + "] - " |
| 28 | + + std::to_string(frequency); |
| 29 | +} |
| 30 | + |
| 31 | +bool update_port_buffer( |
| 32 | + std::vector<TopPorts::PortStats>& port_buffer, |
| 33 | + TopPorts::PortStats port_stats) noexcept |
| 34 | +{ |
| 35 | + auto port_pos = std::lower_bound( |
| 36 | + port_buffer.begin(), |
| 37 | + port_buffer.end(), |
| 38 | + port_stats.frequency, |
| 39 | + [](const TopPorts::PortStats& port_frequency, size_t count) { |
| 40 | + return port_frequency.frequency >= count; |
| 41 | + }); |
| 42 | + |
| 43 | + if (port_pos != port_buffer.end()) { |
| 44 | + std::copy_backward(port_pos, std::prev(port_buffer.end()), port_buffer.end()); |
| 45 | + *port_pos = port_stats; |
| 46 | + return true; |
| 47 | + } |
| 48 | + return false; |
| 49 | +}; |
| 50 | + |
| 51 | +std::vector<TopPorts::PortStats> TopPorts::get_top_ports() const noexcept |
| 52 | +{ |
| 53 | + std::vector<PortStats> port_buffer(m_top_ports_count); |
| 54 | + size_t ports_inserted = 0; |
| 55 | + |
| 56 | + std::for_each( |
| 57 | + m_tcp_port_frequencies.begin(), |
| 58 | + m_tcp_port_frequencies.end(), |
| 59 | + [&, port = uint16_t {0}](size_t frequency) mutable { |
| 60 | + ports_inserted |
| 61 | + += update_port_buffer(port_buffer, {port++, frequency, PortStats::Protocol::TCP}); |
| 62 | + }); |
| 63 | + std::for_each( |
| 64 | + m_udp_port_frequencies.begin(), |
| 65 | + m_udp_port_frequencies.end(), |
| 66 | + [&, port = uint16_t {0}](size_t frequency) mutable { |
| 67 | + ports_inserted |
| 68 | + += update_port_buffer(port_buffer, {port++, frequency, PortStats::Protocol::UDP}); |
| 69 | + }); |
| 70 | + |
| 71 | + port_buffer.resize(std::min(m_top_ports_count, ports_inserted)); |
| 72 | + return port_buffer; |
| 73 | +} |
| 74 | + |
| 75 | +} // namespace ipxp |
0 commit comments