forked from davidmoreno/rtpmidid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.cpp
58 lines (56 loc) · 2.08 KB
/
utils.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* Real Time Protocol Music Instrument Digital Interface Daemon
* Copyright (C) 2019-2023 David Moreno Montero <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "utils.hpp"
#include "json.hpp"
#include "rtpmidid/rtppeer.hpp"
namespace rtpmididns {
json_t peer_status(rtpmidid::rtppeer_t &peer) {
auto stats = peer.stats.average_and_stddev();
return json_t{
//
{"latency_ms",
{
{"last", peer.latency / 10.0},
{"average", stats.average.count() / 1000.0},
{"stddev", stats.stddev.count() / 1000.0},
}},
{"status", std::to_string(peer.status)},
{"local",
{
{"sequence_number", peer.seq_nr}, //
{"sequence_number_ack", peer.seq_nr_ack}, //
{"name", peer.local_name}, //
{"ssrc", peer.local_ssrc}, //
{"port", peer.local_address.port()}, //
{"hostname", peer.local_address.hostname()}, //
}}, //
{
"remote",
{
//
{"name", peer.remote_name}, //
{"sequence_number", peer.remote_seq_nr}, //
{"ssrc", peer.remote_ssrc}, //
{"port", peer.remote_address.port()}, //
{"hostname", peer.remote_address.hostname()}, //
} //
}
//
};
}
} // namespace rtpmididns