This is an automated email from the ASF dual-hosted git repository.

szaszm pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


    from e9ca206f9 MINIFICPP-1840 - Add support for MQTT 5 Closes #1432
     new f2f561ce2 MINIFICPP-1979 Use Coroutines with asio
     new d25cd5d89 MINIFICPP-1975 Volatile and persistent combination of 
repositories should be avoided
     new 3c44ebaff MINIFICPP-2009 CWEL should add resolved attributes with json 
output as well
     new 650f7c28b MINIFICPP-2043 Reset flowfile repo checkpoint during 
initialization

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/ci.yml                           |   6 +-
 CMakeLists.txt                                     |   3 +
 cmake/BuildTests.cmake                             |   1 +
 run_shellcheck.sh => cmake/Coroutines.cmake        |  10 +-
 controller/Controller.h                            |  15 +-
 extensions/rocksdb-repos/FlowFileRepository.cpp    |   1 +
 extensions/standard-processors/CMakeLists.txt      |   3 +
 .../processors/ListenSyslog.cpp                    |   5 +-
 .../standard-processors/processors/ListenTCP.cpp   |   5 +-
 .../processors/NetworkListenerProcessor.cpp        |   8 +-
 .../processors/NetworkListenerProcessor.h          |   7 +-
 .../standard-processors/processors/PutTCP.cpp      | 484 +++++++--------------
 extensions/standard-processors/processors/PutTCP.h |  32 +-
 .../standard-processors/processors/PutUDP.cpp      |   2 +-
 .../standard-processors/tests/CMakeLists.txt       |   2 +
 .../tests/unit/ListenSyslogTests.cpp               | 204 +++++----
 .../tests/unit/ListenTcpTests.cpp                  | 187 +++++---
 .../tests/unit/ListenUDPTests.cpp                  |  53 +--
 .../standard-processors/tests/unit/PutTCPTests.cpp | 162 +++----
 .../standard-processors/tests/unit/PutUDPTests.cpp |  13 +-
 .../windows-event-log/ConsumeWindowsEventLog.cpp   |  54 ++-
 .../windows-event-log/ConsumeWindowsEventLog.h     |   9 +-
 .../tests/ConsumeWindowsEventLogTests.cpp          |  12 +
 libminifi/include/controllers/SSLContextService.h  |  13 +-
 libminifi/include/utils/net/AsioCoro.h             |  75 ++++
 libminifi/include/utils/net/Server.h               |  15 +-
 .../include/utils/net/SessionHandlingServer.h      |  67 ---
 libminifi/include/utils/net/Ssl.h                  |  16 +
 libminifi/include/utils/net/SslServer.h            |  65 ---
 libminifi/include/utils/net/TcpServer.h            |  38 +-
 libminifi/include/utils/net/UdpServer.h            |  12 +-
 libminifi/src/controllers/SSLContextService.cpp    |  10 +-
 libminifi/src/core/RepositoryFactory.cpp           |  32 +-
 libminifi/src/utils/net/SslServer.cpp              |  90 ----
 libminifi/src/utils/net/TcpServer.cpp              |  90 ++--
 libminifi/src/utils/net/UdpServer.cpp              |  41 +-
 libminifi/test/Catch.h                             |  46 +-
 libminifi/test/Utils.h                             |  75 ++--
 minifi_main/MiNiFiMain.cpp                         |   8 +
 39 files changed, 941 insertions(+), 1030 deletions(-)
 copy run_shellcheck.sh => cmake/Coroutines.cmake (77%)
 mode change 100755 => 100644
 create mode 100644 libminifi/include/utils/net/AsioCoro.h
 delete mode 100644 libminifi/include/utils/net/SessionHandlingServer.h
 delete mode 100644 libminifi/include/utils/net/SslServer.h
 delete mode 100644 libminifi/src/utils/net/SslServer.cpp

Reply via email to