This is an automated email from the ASF dual-hosted git repository.
lordgamez pushed a change to branch MINIFICPP-2587
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
omit e216a53d8 Review update
omit 2b4dee274 Check if record reader and writer are valid controller
services
omit 4e30e55eb MINIFICPP-2587 Add Sparkplug support for ConsumeMQTT
processor
omit 7b4a57189 MINIFICPP-2601 Separate protobuf library from grpc
add 61a9e1684 MINIFICPP-2594 Add XMLReader controller service
add 27903b953 MINIFICPP-2596 Add XMLRecordSetWriter controller service
add 70d0b7f97 MINIFICPP-2603 Add Record Reader and Record Writer
properties to MQTT processors
add 1a35ef802 MINIFICPP-2601 Separate protobuf library from grpc
add 153ef73f5 MINIFICPP-2587 Add Sparkplug support for ConsumeMQTT
processor
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (e216a53d8)
\
N -- N -- N refs/heads/MINIFICPP-2587 (153ef73f5)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
CMakeLists.txt | 4 +
CONTROLLERS.md | 40 +++
PROCESSORS.md | 2 +
cmake/BundledPugiXml.cmake | 59 ----
cmake/{Catch2.cmake => PugiXml.cmake} | 13 +-
.../test/integration/cluster/DockerTestCluster.py | 3 +
.../integration/cluster/checkers/MqttHelper.py | 5 +
.../cluster/containers/FlowContainer.py | 6 +
.../features/MiNiFi_integration_test_driver.py | 3 +
docker/test/integration/features/mqtt.feature | 56 +++-
docker/test/integration/features/steps/steps.py | 48 ++-
.../{JsonTreeReader.py => XMLReader.py} | 6 +-
.../{JsonTreeReader.py => XMLRecordSetWriter.py} | 6 +-
.../integration/minifi/core/ControllerService.py | 3 +
.../include/utils/ProcessorConfigUtils.h | 14 +
extensions/mqtt/processors/AbstractMQTTProcessor.h | 5 +
extensions/mqtt/processors/ConsumeMQTT.cpp | 23 +-
extensions/mqtt/processors/ConsumeMQTT.h | 4 -
extensions/mqtt/processors/PublishMQTT.cpp | 69 ++++-
extensions/mqtt/processors/PublishMQTT.h | 26 +-
extensions/mqtt/tests/ConsumeMQTTTests.cpp | 125 +++++++-
extensions/mqtt/tests/PublishMQTTTests.cpp | 141 ++++++---
extensions/standard-processors/CMakeLists.txt | 2 +-
.../standard-processors/controllers/XMLReader.cpp | 200 ++++++++++++
.../standard-processors/controllers/XMLReader.h | 97 ++++++
.../controllers/XMLRecordSetWriter.cpp | 145 +++++++++
.../controllers/XMLRecordSetWriter.h | 129 ++++++++
.../standard-processors/processors/SplitRecord.cpp | 18 +-
.../tests/unit/XMLReaderTests.cpp | 250 +++++++++++++++
.../tests/unit/XMLRecordSetWriterTests.cpp | 339 +++++++++++++++++++++
extensions/windows-event-log/CMakeLists.txt | 5 +-
minifi-api/include/minifi-cpp/core/Record.h | 4 +
32 files changed, 1648 insertions(+), 202 deletions(-)
delete mode 100644 cmake/BundledPugiXml.cmake
copy cmake/{Catch2.cmake => PugiXml.cmake} (76%)
copy docker/test/integration/minifi/controllers/{JsonTreeReader.py =>
XMLReader.py} (85%)
copy docker/test/integration/minifi/controllers/{JsonTreeReader.py =>
XMLRecordSetWriter.py} (84%)
create mode 100644 extensions/standard-processors/controllers/XMLReader.cpp
create mode 100644 extensions/standard-processors/controllers/XMLReader.h
create mode 100644
extensions/standard-processors/controllers/XMLRecordSetWriter.cpp
create mode 100644
extensions/standard-processors/controllers/XMLRecordSetWriter.h
create mode 100644 extensions/standard-processors/tests/unit/XMLReaderTests.cpp
create mode 100644
extensions/standard-processors/tests/unit/XMLRecordSetWriterTests.cpp