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

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


    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
     new 1a35ef802 MINIFICPP-2601 Separate protobuf library from grpc

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   (7b4a57189)
            \
             N -- N -- N   refs/heads/sparkplug_base (1a35ef802)

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.

The 1 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:
 CMakeLists.txt                                     |   4 +
 CONTROLLERS.md                                     |  40 +++
 LICENSE                                            |   2 +-
 PROCESSORS.md                                      |  20 +-
 cmake/BundledPugiXml.cmake                         |  59 ----
 cmake/{Catch2.cmake => PugiXml.cmake}              |  13 +-
 docker/requirements.txt                            |   1 +
 .../test/integration/cluster/DockerTestCluster.py  |   5 +
 .../{FeatureContext.py => checkers/MqttHelper.py}  |  12 +-
 .../cluster/containers/FlowContainer.py            |   6 +
 .../cluster/containers/MqttBrokerContainer.py      |   1 +
 .../features/MiNiFi_integration_test_driver.py     |   3 +
 docker/test/integration/features/mqtt.feature      |  53 +++
 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 |   7 +-
 extensions/mqtt/processors/ConsumeMQTT.cpp         |  83 ++++-
 extensions/mqtt/processors/ConsumeMQTT.h           |  52 ++-
 extensions/mqtt/processors/PublishMQTT.cpp         |  69 +++-
 extensions/mqtt/processors/PublishMQTT.h           |  26 +-
 extensions/mqtt/tests/ConsumeMQTTTests.cpp         | 392 +++++++++++++++------
 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        |   5 +
 35 files changed, 1972 insertions(+), 284 deletions(-)
 delete mode 100644 cmake/BundledPugiXml.cmake
 copy cmake/{Catch2.cmake => PugiXml.cmake} (76%)
 copy docker/test/integration/cluster/{FeatureContext.py => 
checkers/MqttHelper.py} (71%)
 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

Reply via email to