Wireshark 4.5.0
The Wireshark network protocol analyzer
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
rtp_player_dialog.h
Go to the documentation of this file.
1
10#ifndef RTP_PLAYER_DIALOG_H
11#define RTP_PLAYER_DIALOG_H
12
13#include "config.h"
14
15#include <mutex>
16
17#include "ui/rtp_stream.h"
18
19#include "wireshark_dialog.h"
20#include "rtp_audio_stream.h"
21
22#include <QWidget>
23#include <QMap>
24#include <QMultiHash>
25#include <QTreeWidgetItem>
26#include <QMetaType>
27#include <ui/qt/widgets/qcustomplot.h>
28
29#ifdef QT_MULTIMEDIA_LIB
30# if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
31# include <QAudioDevice>
32# else
33# include <QAudioDeviceInfo>
34# endif
35#endif
36
37namespace Ui {
38class RtpPlayerDialog;
39}
40
41class QCPItemStraightLine;
42class QDialogButtonBox;
43class QMenu;
44class RtpAudioStream;
45class QCPAxisTicker;
46class QCPAxisTickerDateTime;
47
48typedef enum {
49 save_audio_none,
50 save_audio_au,
51 save_audio_wav
52} save_audio_t;
53
54typedef enum {
55 save_payload_none,
56 save_payload_data
57} save_payload_t;
58
59typedef enum {
60 save_mode_from_cursor,
61 save_mode_sync_stream,
62 save_mode_sync_file
63} save_mode_t;
64
66{
67 Q_OBJECT
68protected:
69 explicit RtpBaseDialog(QWidget &parent, CaptureFile &cf) : WiresharkDialog(parent, cf) {}
70
71#ifdef QT_MULTIMEDIA_LIB
72public slots:
73 virtual void rtpAnalysisReplace() = 0;
74 virtual void rtpAnalysisAdd() = 0;
75 virtual void rtpAnalysisRemove() = 0;
76#endif // QT_MULTIMEDIA_LIB
77};
78
79// Singleton by https://refactoring.guru/design-patterns/singleton/cpp/example#example-1
81{
82 Q_OBJECT
83#ifdef QT_MULTIMEDIA_LIB
84 Q_PROPERTY(QString currentOutputDeviceName READ currentOutputDeviceName)
85#endif
86
87public:
91 static RtpPlayerDialog *openRtpPlayerDialog(QWidget &parent, CaptureFile &cf, QObject *packet_list, bool capture_running);
92
97 void operator=(const RtpPlayerDialog &) = delete;
98
104 static QToolButton *addPlayerButton(QDialogButtonBox *button_box, QDialog *dialog);
105
106#ifdef QT_MULTIMEDIA_LIB
107 void accept();
108 void reject();
109
110 void setMarkers();
111
119 void replaceRtpStreams(QVector<rtpstream_id_t *> stream_ids);
120 void addRtpStreams(QVector<rtpstream_id_t *> stream_ids);
121 void removeRtpStreams(QVector<rtpstream_id_t *> stream_ids);
122
123signals:
124 // Tells the packet list to redraw. An alternative might be to add a
125 // cf_packet_marked callback to file.[ch] but that's synchronous and
126 // might incur too much overhead.
127 void packetsMarked();
128 void updateFilter(QString filter, bool force = false);
129 void goToPacket(int packet_num);
130 void rtpAnalysisDialogReplaceRtpStreams(QVector<rtpstream_id_t *> stream_infos);
131 void rtpAnalysisDialogAddRtpStreams(QVector<rtpstream_id_t *> stream_infos);
132 void rtpAnalysisDialogRemoveRtpStreams(QVector<rtpstream_id_t *> stream_infos);
133
134public slots:
135 void rtpAnalysisReplace();
136 void rtpAnalysisAdd();
137 void rtpAnalysisRemove();
138
139#endif
140protected:
141 explicit RtpPlayerDialog(QWidget &parent, CaptureFile &cf, bool capture_running);
142#ifdef QT_MULTIMEDIA_LIB
144
145 virtual void showEvent(QShowEvent *);
146 void contextMenuEvent(QContextMenuEvent *event);
147 bool eventFilter(QObject *obj, QEvent *event);
148
149private slots:
153 void retapPackets();
154 void captureEvent(CaptureEvent e);
157 void rescanPackets(bool rescale_axes = false);
158 void createPlot(bool rescale_axes = false);
159 void updateWidgets();
160 void itemEntered(QTreeWidgetItem *item, int column);
161 void mouseMovePlot(QMouseEvent *event);
162 void mouseMoveUpdate();
163 void showGraphContextMenu(const QPoint &pos);
164 void graphClicked(QMouseEvent *event);
165 void graphDoubleClicked(QMouseEvent *event);
166 void plotClicked(QCPAbstractPlottable *plottable, int dataIndex, QMouseEvent *event);
167 void updateHintLabel();
168 void resetXAxis();
169 void updateGraphs();
170 void playFinished(RtpAudioStream *stream, QAudio::Error error);
171
172 void setPlayPosition(double secs);
173 void setPlaybackError(const QString playback_error);
174 void changeAudioRoutingOnItem(QTreeWidgetItem *ti, AudioRouting new_audio_routing);
175 void changeAudioRouting(AudioRouting new_audio_routing);
176 void invertAudioMutingOnItem(QTreeWidgetItem *ti);
177 void on_playButton_clicked();
178 void on_pauseButton_clicked();
179 void on_stopButton_clicked();
180 void on_actionReset_triggered();
181 void on_actionZoomIn_triggered();
182 void on_actionZoomOut_triggered();
183 void on_actionMoveLeft10_triggered();
184 void on_actionMoveRight10_triggered();
185 void on_actionMoveLeft1_triggered();
186 void on_actionMoveRight1_triggered();
187 void on_actionGoToPacket_triggered();
188 void on_actionGoToSetupPacketPlot_triggered();
189 void on_actionGoToSetupPacketTree_triggered();
190 void on_actionRemoveStream_triggered();
191 void on_actionAudioRoutingP_triggered();
192 void on_actionAudioRoutingL_triggered();
193 void on_actionAudioRoutingLR_triggered();
194 void on_actionAudioRoutingR_triggered();
195 void on_actionAudioRoutingMute_triggered();
196 void on_actionAudioRoutingUnmute_triggered();
197 void on_actionAudioRoutingMuteInvert_triggered();
198 void on_streamTreeWidget_itemSelectionChanged();
199 void on_streamTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, const int column);
200 void on_outputDeviceComboBox_currentTextChanged(const QString &);
201 void on_outputAudioRate_currentTextChanged(const QString &);
202 void on_jitterSpinBox_valueChanged(double);
203 void on_timingComboBox_currentIndexChanged(int);
204 void on_todCheckBox_toggled(bool checked);
205 void on_buttonBox_helpRequested();
206 void on_actionSelectAll_triggered();
207 void on_actionSelectInvert_triggered();
208 void on_actionSelectNone_triggered();
209 void outputNotify();
210 void on_actionPlay_triggered();
211 void on_actionStop_triggered();
212 void on_actionSaveAudioFromCursor_triggered();
213 void on_actionSaveAudioSyncStream_triggered();
214 void on_actionSaveAudioSyncFile_triggered();
215 void on_actionSavePayload_triggered();
216 void on_actionSelectInaudible_triggered();
217 void on_actionDeselectInaudible_triggered();
218 void on_actionPrepareFilter_triggered();
219 void on_actionReadCapture_triggered();
220
221#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
222 void sinkStateChanged();
223#endif
224
225#endif
226private:
227 static RtpPlayerDialog *pinstance_;
228 static std::mutex init_mutex_;
229 static std::mutex run_mutex_;
230
231#ifdef QT_MULTIMEDIA_LIB
232 Ui::RtpPlayerDialog *ui;
233 QMenu *graph_ctx_menu_;
234 QMenu *list_ctx_menu_;
235 double first_stream_rel_start_time_; // Relative start time of first stream
236 double first_stream_abs_start_time_; // Absolute start time of first stream
237 double first_stream_rel_stop_time_; // Relative end time of first stream (ued for streams_length_ calculation
238 double streams_length_; // Difference between start of first stream and end of last stream
239 double start_marker_time_; // Always relative time to start of the capture
240 double start_marker_time_play_; // Copy when play started
241 QCPItemStraightLine *cur_play_pos_;
242 QCPItemStraightLine *start_marker_pos_;
243 QString playback_error_;
244 QSharedPointer<QCPAxisTicker> number_ticker_;
245 QSharedPointer<QCPAxisTickerDateTime> datetime_ticker_;
246 bool stereo_available_;
247 QList<RtpAudioStream *> playing_streams_;
248#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
249 QAudioSink *marker_stream_;
250 QTimer notify_timer_;
251 qint64 notify_timer_start_diff_; // Used to shift play cursor to correct place
252#else
253 QAudioOutput *marker_stream_;
254#endif
255 quint32 marker_stream_requested_out_rate_;
256 QTreeWidgetItem *last_ti_;
257 bool listener_removed_;
258 QPushButton *read_btn_;
259 QToolButton *inaudible_btn_;
260 QToolButton *analyze_btn_;
261 QPushButton *prepare_btn_;
262 QPushButton *export_btn_;
263 QMultiHash<unsigned, RtpAudioStream *> stream_hash_;
264 bool block_redraw_;
265 int lock_ui_;
266 bool read_capture_enabled_;
267 double silence_skipped_time_;
268 QTimer *mouse_update_timer_;
269 QPoint mouse_pos_;
270
271// const QString streamKey(const rtpstream_info_t *rtpstream);
272// const QString streamKey(const packet_info *pinfo, const struct _rtp_info *rtpinfo);
273
274 // Tap callbacks
275// static void tapReset(void *tapinfo_ptr);
276 static tap_packet_status tapPacket(void *tapinfo_ptr, packet_info *pinfo, epan_dissect_t *, const void *rtpinfo_ptr, tap_flags_t flags);
277 static void tapDraw(void *tapinfo_ptr);
278
279 void addPacket(packet_info *pinfo, const struct _rtp_info *rtpinfo);
280 void zoomXAxis(bool in);
281 void panXAxis(int x_pixels);
282 const QString getFormatedTime(double f_time);
283 const QString getFormatedHoveredTime();
284 int getHoveredPacket();
285 QString currentOutputDeviceName();
286 double getStartPlayMarker();
287 void drawStartPlayMarker();
288 void setStartPlayMarker(double new_time);
289 void updateStartStopTime(rtpstream_info_t *rtpstream, bool is_first);
290 void formatAudioRouting(QTreeWidgetItem *ti, AudioRouting audio_routing);
291 bool isStereoAvailable();
292#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
293 QAudioSink *getSilenceAudioOutput();
294 QAudioDevice getCurrentDeviceInfo();
295#else
296 QAudioOutput *getSilenceAudioOutput();
297 QAudioDeviceInfo getCurrentDeviceInfo();
298#endif
299 QTreeWidgetItem *findItemByCoords(QPoint point);
300 QTreeWidgetItem *findItem(QCPAbstractPlottable *plottable);
301 void handleItemHighlight(QTreeWidgetItem *ti, bool scroll);
302 void highlightItem(QTreeWidgetItem *ti, bool highlight);
303 void invertSelection();
304 void handleGoToSetupPacket(QTreeWidgetItem *ti);
305 void addSingleRtpStream(rtpstream_id_t *id);
306 void removeRow(QTreeWidgetItem *ti);
307 void fillAudioRateMenu();
308 void cleanupMarkerStream();
309
310 qint64 saveAudioHeaderAU(QFile *save_file, quint32 channels, unsigned audio_rate);
311 qint64 saveAudioHeaderWAV(QFile *save_file, quint32 channels, unsigned audio_rate, qint64 samples);
312 bool writeAudioSilenceSamples(QFile *out_file, qint64 samples, int stream_count);
313 bool writeAudioStreamsSamples(QFile *out_file, QVector<RtpAudioStream *> streams, bool swap_bytes);
314 save_audio_t selectFileAudioFormatAndName(QString *file_path);
315 save_payload_t selectFilePayloadFormatAndName(QString *file_path);
316 QVector<RtpAudioStream *>getSelectedAudibleNonmutedAudioStreams();
317 void saveAudio(save_mode_t save_mode);
318 void savePayload();
319 void lockUI();
320 void unlockUI();
321 void selectInaudible(bool select);
322 QVector<rtpstream_id_t *>getSelectedRtpStreamIDs();
323 void fillTappedColumns();
324
325#else // QT_MULTIMEDIA_LIB
326private:
327 Ui::RtpPlayerDialog *ui;
328#endif // QT_MULTIMEDIA_LIB
329};
330
331#endif // RTP_PLAYER_DIALOG_H
Definition rtp_audio_routing.h:28
Definition capture_event.h:21
Definition capture_file.h:21
Definition rtp_player_dialog.h:66
Definition rtp_player_dialog.h:81
static RtpPlayerDialog * openRtpPlayerDialog(QWidget &parent, CaptureFile &cf, QObject *packet_list, bool capture_running)
Definition rtp_player_dialog.cpp:145
RtpPlayerDialog(RtpPlayerDialog &other)=delete
static QToolButton * addPlayerButton(QDialogButtonBox *button_box, QDialog *dialog)
Common routine to add a "Play call" button to a QDialogButtonBox.
Definition rtp_player_dialog.cpp:358
Definition wireshark_dialog.h:35
Definition packet_info.h:43
Definition packet-rtp.h:29
Definition rtp_stream_id.h:33
Definition rtp_stream.h:40
Definition epan_dissect.h:28
Definition stream.c:41
tap_packet_status
Definition tap.h:25