/* Copyright (C) 2023 Srivats P. This file is part of "Ostinato" This 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 */ #ifndef _STREAM_TIMING #define _STREAM_TIMING #include "../common/sign.h" #include #include #include #include #include class StreamTiming : public QObject { Q_OBJECT public: bool recordTxTime(uint portId, uint guid, uint ttagId, const struct timespec ×tamp); bool recordRxTime(uint portId, uint guid, uint ttagId, const struct timespec ×tamp); bool recordTxTime(uint portId, uint guid, uint ttagId, const struct timeval ×tamp); bool recordRxTime(uint portId, uint guid, uint ttagId, const struct timeval ×tamp); quint64 delay(uint portId, uint guid); void clear(uint portId, uint guid = SignProtocol::kInvalidGuid); static StreamTiming* instance(); public slots: void start(uint portId); void stop(uint portId); private: StreamTiming(QObject *parent=nullptr); int processRecords(); int deleteStaleRecords(); quint32 makeKey(uint guid, uint ttagId) { return guid << 8 | (ttagId & 0xFF); } // XXX: use only time intervals, not absolute time quint64 timespecToNsecs(const struct timespec &interval) { return interval.tv_nsec + interval.tv_sec*1e9; } struct TtagData { struct timespec timeStamp; // nanosec resolution uint portId; }; struct Timing { struct timespec sumDelays; // nanosec resolution uint countDelays; }; QSet activePortSet_; // XXX: TxRxKey = guid (24 bit MSB) + ttagid (8 bit LSB) // TODO: encode tx port in in packet and use as part of key typedef quint32 TxRxKey; QHash txHash_; QHash rxHash_; QMutex txHashLock_; QMutex rxHashLock_; typedef uint PortIdKey; typedef uint GuidKey; typedef QHash PortTiming; QHash timing_; QMutex timingLock_; QTimer *timer_; // Periodic timer to process tx/rx records QTimer *gcTimer_; // Garbage collection for stale tx records }; #endif