-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: tcp client server handling for messages greater the 64k fix: corrected sample namespaces fix: used third party simpleini in eCAL core fix: QStableSortFilterProxyModel that leads to monitor crash when closing multiple tasks optimization: data reader performance optimization add: samples latency_snd / latency_rec added to measure pub/sub latency and throughput add: NPCap status dialog for ecal monitor adapt: different static code analysis fixes adapt: make eCAL compile on current Arch Linux. adapt: improved windows cpack wix setup author Rex Schilasky <[email protected]> 1559562280 +0200 Co-authored-by: Florian Reimold <[email protected]> committer Rex Schilasky <[email protected]> 1560499303 +0200
- Loading branch information
1 parent
eb4d0d8
commit 1584e17
Showing
50 changed files
with
1,158 additions
and
3,839 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
app/mon/eCALMon/src/Widgets/NpcapStatusDialog/NpcapStatusDialog.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* ========================= eCAL LICENSE ================================= | ||
* | ||
* Copyright (C) 2016 - 2019 Continental Corporation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* ========================= eCAL LICENSE ================================= | ||
*/ | ||
|
||
#include "NpcapStatusDialog.h" | ||
|
||
#include <QPushButton> | ||
#include <udpcap/npcap_helpers.h> | ||
|
||
NpcapStatusDialog::NpcapStatusDialog(QWidget *parent) | ||
: QDialog(parent) | ||
{ | ||
ui_.setupUi(this); | ||
Udpcap::Initialize(); | ||
ui_.status_textedit->setPlainText(QString::fromStdString(Udpcap::GetHumanReadibleErrorText())); | ||
connect(ui_.button_box->button(QDialogButtonBox::StandardButton::Close), SIGNAL(clicked()), this, SLOT(close())); | ||
} | ||
|
||
NpcapStatusDialog::~NpcapStatusDialog() | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
app/mon/eCALMon/src/Widgets/NpcapStatusDialog/NpcapStatusDialog.ui
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>NpcapStatusDialog</class> | ||
<widget class="QDialog" name="NpcapStatusDialog"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>326</width> | ||
<height>228</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Npcap Status</string> | ||
</property> | ||
<property name="sizeGripEnabled"> | ||
<bool>false</bool> | ||
</property> | ||
<property name="modal"> | ||
<bool>false</bool> | ||
</property> | ||
<layout class="QVBoxLayout" name="verticalLayout"> | ||
<item> | ||
<widget class="QPlainTextEdit" name="status_textedit"> | ||
<property name="font"> | ||
<font> | ||
<family>Courier New</family> | ||
</font> | ||
</property> | ||
<property name="readOnly"> | ||
<bool>true</bool> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QDialogButtonBox" name="button_box"> | ||
<property name="standardButtons"> | ||
<set>QDialogButtonBox::Close</set> | ||
</property> | ||
<property name="centerButtons"> | ||
<bool>true</bool> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources/> | ||
<connections/> | ||
</ui> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,8 @@ set(CPACK_PACKAGE_VERSION_PATCH ${GIT_REVISION_PATCH}) | |
set(CPACK_PACKAGE_INSTALL_DIRECTORY ${PROJECT_NAME}) | ||
set(CPACK_PACKAGE_CONTACT "[email protected]") | ||
set(CPACK_SOURCE_STRIP_FILES "") | ||
set(CPACK_WIX_PATCH_FILE ${CMAKE_SOURCE_DIR}/cpack/ecal_path.xml) | ||
#set(CPACK_WIX_EXTRA_SOURCES ${CMAKE_SOURCE_DIR}/cpack/settings.wxs) | ||
|
||
if(WIN32) | ||
set(CPACK_GENERATOR "WIX") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<CPackWiXPatch> | ||
<CPackWiXFragment Id="CM_SHORTCUT_app"> | ||
<Environment Id="SystemEnvironment" Action="set" System="yes" Part="all" Name="ECAL_HOME" Value="[INSTALL_ROOT]"/> | ||
<Environment Id="PATH" Name="PATH" Value="[INSTALL_ROOT]bin" Permanent="yes" Part="last" Action="set" System="yes" /> | ||
</CPackWiXFragment> | ||
</CPackWiXPatch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.