Skip to content

Commit 5f507f4

Browse files
authored
Initialize monitor in a Discovery Server network (#91)
* Initialize discovery server dialog Signed-off-by: RaulSanchez <[email protected]> * Update init a Discovery Server monitor API Signed-off-by: RaulSanchez <[email protected]> * Add IPv6 support Signed-off-by: RaulSanchez <[email protected]> * Regex for matching any string Signed-off-by: RaulSanchez <[email protected]> * Separate initialize monitor dialogs Signed-off-by: RaulSanchez <[email protected]> * Uncrustify Signed-off-by: RaulSanchez <[email protected]> * Applied suggested changes Signed-off-by: RaulSanchez <[email protected]> * Added discovery server monitor error type Signed-off-by: RaulSanchez <[email protected]> * Handle dialog errors Signed-off-by: RaulSanchez <[email protected]> * Supported transports retrieved from backend Signed-off-by: RaulSanchez <[email protected]> * Handle duplicated locators Signed-off-by: RaulSanchez <[email protected]> * Uncrustify Signed-off-by: RaulSanchez <[email protected]> * Remove windows warning Signed-off-by: RaulSanchez <[email protected]> * Uncrustify 2 Signed-off-by: RaulSanchez <[email protected]> * Fix find duplicated locators Signed-off-by: RaulSanchez <[email protected]> * Applied suggested changes Signed-off-by: RaulSanchez <[email protected]> * Fixed discovery server guid regex Signed-off-by: RaulSanchez <[email protected]>
1 parent 6dd9572 commit 5f507f4

15 files changed

+573
-104
lines changed

include/fastdds_monitor/Controller.h

+9-4
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ class Engine;
2727

2828
enum class ErrorType : int
2929
{
30-
GENERIC = 0, //! Generic error, just show the message
31-
INIT_MONITOR = 1 //! Error in @c init_monitor. Reopen the @c init_monitor dialog
30+
GENERIC = 0, //! Generic error, just show the message
31+
INIT_MONITOR = 1, //! Error in @c init_monitor. Reopen the @c init dds monitor dialog
32+
INIT_DS_MONITOR = 2 //! Error in @c init_monitor. Reopen the @c init discovery server monitor dialog
3233
};
3334

3435
/**
@@ -63,9 +64,10 @@ public slots:
6364
void init_monitor(
6465
int domain);
6566

66-
//! Slot called by init a monitor with a list of locators
67+
//! Slot called when initializing a monitor for a Discovery Server network
6768
void init_monitor(
68-
QString locators);
69+
QString discovery_server_guid_prefix,
70+
QString discovery_server_locators);
6971

7072
//! Slot called when a Host entity is pressed
7173
void host_click(
@@ -188,6 +190,9 @@ public slots:
188190
QStringList chartbox_names,
189191
QStringList label_names);
190192

193+
//! Retrive a string list containing the transport protocols supported by the Statistics Backend Discovery Server.
194+
QStringList ds_supported_transports();
195+
191196
signals:
192197

193198
//! Signal to show the Error Dialog

include/fastdds_monitor/Engine.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ class Engine : public QQmlApplicationEngine
9696
* @param domain number of the domain
9797
*/
9898
void init_monitor(
99-
QString locators);
99+
QString discovery_server_guid_prefix,
100+
QString discovery_server_locators);
100101

101102
/////
102103
// PHYSICAL PARTITION
@@ -377,6 +378,9 @@ class Engine : public QQmlApplicationEngine
377378
const QStringList& chartbox_names,
378379
const QStringList& label_names);
379380

381+
//! Retrive a string vector containing the transport protocols supported by the Statistics Backend Discovery Server.
382+
std::vector<std::string> ds_supported_transports();
383+
380384
signals:
381385

382386
/**

include/fastdds_monitor/backend/SyncBackendConnection.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ class SyncBackendConnection
9191
* @return EntityId of the new Domain Entity created
9292
*/
9393
EntityId init_monitor(
94-
QString locators);
94+
std::string discovery_server_guid_prefix,
95+
std::string discovery_server_locators);
9596

9697
/////
9798
// Information query functions
@@ -196,6 +197,9 @@ class SyncBackendConnection
196197
std::string get_data_kind_units(
197198
const DataKind data_kind);
198199

200+
//! Retrive a string vector containing the transport protocols supported by the Statistics Backend Discovery Server.
201+
std::vector<std::string> ds_supported_transports();
202+
199203
protected:
200204

201205
void change_unit_magnitude(

include/fastdds_monitor/utils.h

+4
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ std::string now(
6262
std::string double_to_string(
6363
const double& d);
6464

65+
//! Cast a std::vector<std::string> to QStringList
66+
QStringList to_QStringList(
67+
const std::vector<std::string>& vector);
68+
6569
} //namespace utils
6670

6771
#endif // _EPROSIMA_FASTDDS_MONITOR_UTILS_H

qml.qrc

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<file>imports/Theme/Theme.qml</file>
1616
<file>qml/AboutDialog.qml</file>
1717
<file>qml/AdaptiveComboBox.qml</file>
18+
<file>qml/AdaptiveMenu.qml</file>
1819
<file>qml/ChangeAliasDialog.qml</file>
1920
<file>qml/ChartsLayout.qml</file>
2021
<file>qml/CustomLegend.qml</file>
@@ -33,6 +34,7 @@
3334
<file>qml/IconsVBar.qml</file>
3435
<file>qml/IconSVG.qml</file>
3536
<file>qml/InfoToolTip.qml</file>
37+
<file>qml/InitDSMonitorDialog.qml</file>
3638
<file>qml/InitMonitorDialog.qml</file>
3739
<file>qml/IssuesPanel.qml</file>
3840
<file>qml/IssueView.qml</file>

qml/AdaptiveMenu.qml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import QtQuick 2.15
2+
import QtQuick.Controls 2.15
3+
4+
Menu {
5+
id: adaptiveMenu
6+
width: {
7+
var result = 0;
8+
var padding = 0;
9+
for (var i = 0; i < count; ++i) {
10+
var item = itemAt(i);
11+
result = Math.max(item.contentItem.implicitWidth, result);
12+
padding = Math.max(item.padding, padding);
13+
}
14+
return result + padding * 2;
15+
}
16+
}

qml/ErrorDialog.qml

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ MessageDialog {
2626
onAccepted: {
2727
if (errorType == 1) { // INIT_MONITOR
2828
dialogInitMonitor.open()
29+
} else if (errorType == 2) { // INIT_DS_MONITOR
30+
dialogDSInitMonitor.open()
2931
}
3032
}
3133
}

0 commit comments

Comments
 (0)