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

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


    omit f8b918548 Fix clang tidy
    omit db70db56b MINIFICPP-2629 Clean up minifi-api includes
     add f28961cfb MINIFICPP-2594 Add XMLReader controller service
     add ef7dbcb97 MINIFICPP-2595 Create ConvertRecord processor
     add 8f83e3d66 MINIFICPP-2596 Add XMLRecordSetWriter controller service
     add d9205afdb MINIFICPP-2628 CMake4 compatibility
     add e25a247a4 MINIFICPP-2458 Create EvaluateJsonPath processor
     add 107598b95 MINIFICPP-2577 Create SplitJson processor
     add 5406747f7 MINIFICPP-2305 Fix various C2 integration test issues
     add 857ed5bf2 MINIFICPP-2627 Fix ${MINIFI_HOME} in config files
     add be873d380 MINIFICPP-2631 Fix various Windows build issues
     add 59d6705c1 MINIFICPP-2632 Make RPM creation in rockylinux docker build 
optional
     add d3aa81c97 MINIFICPP-2633 Improve logging for python initialization 
when no dependencies are installed
     add 9b76620f1 MINIFICPP-2634 Turn on building stable extensions by default
     add 6f545de4e MINIFICPP-2636 update ExecutePythonProcessor description
     add 8c44196b3 MINIFICPP-2629 Clean up minifi-api includes
     add 7af13883c Fix clang tidy
     add f23021393 Review update
     add 58d872953 Fix after rebase

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   (f8b918548)
            \
             N -- N -- N   refs/heads/MINIFICPP-2629 (58d872953)

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:
 .clang-tidy                                        |   1 -
 CMakeLists.txt                                     |   7 +
 CONFIGURE.md                                       |   2 +-
 CONTROLLERS.md                                     |  41 +++
 LICENSE                                            |  57 ++--
 NOTICE                                             |   3 +-
 PROCESSORS.md                                      | 101 +++++-
 bin/CMakeLists.txt                                 |   4 +-
 bin/minifi.service.in                              |   1 +
 bootstrap/minifi_option.py                         |   2 +-
 cmake/BundledOpenCV.cmake                          |   8 +-
 cmake/BundledPugiXml.cmake                         |  59 ----
 cmake/DockerConfig.cmake                           |   1 +
 cmake/{Sol2.cmake => Jsoncons.cmake}               |  11 +-
 cmake/MiNiFiOptions.cmake                          |   9 +-
 cmake/{ArgParse.cmake => PugiXml.cmake}            |  13 +-
 cmake/Zstd.cmake                                   |   9 +-
 conf/CMakeLists.txt                                |   6 +-
 controller/MiNiFiController.cpp                    |   2 +-
 controller/tests/CMakeLists.txt                    |  20 +-
 core-framework/include/Defaults.h                  |   4 +-
 core-framework/include/utils/Locations.h           |  14 +-
 core-framework/src/utils/SystemCpuUsageTracker.cpp |   3 +-
 docker/DockerBuild.sh                              |   8 +-
 docker/Dockerfile                                  |  16 +-
 docker/compiler-test/gcc.Dockerfile                |   2 +-
 docker/installed/installed.Dockerfile              |   8 +-
 docker/installed/rpm.Dockerfile                    |   4 +-
 docker/rockylinux/Dockerfile                       |   5 +-
 .../features/core_functionality.feature            |  15 +
 .../features/evaluate_json_path.feature            |  50 +++
 .../test/integration/features/split_json.feature   |  42 +++
 docker/test/integration/features/steps/steps.py    |   8 +
 .../{JsonTreeReader.py => XMLReader.py}            |   8 +-
 .../{ExecuteScript.py => ConvertRecord.py}         |   8 +-
 .../{AttributesToJSON.py => EvaluateJsonPath.py}   |   4 +-
 .../processors/{SplitText.py => SplitJson.py}      |  10 +-
 extensions/civetweb/tests/C2VerifyServeResults.cpp |   7 +-
 extensions/civetweb/tests/CMakeLists.txt           |  19 +-
 .../civetweb/tests/HttpPostIntegrationTest.cpp     |  14 +-
 .../integration/UpdateAttributeIntegrationTest.cpp |   7 +-
 extensions/python/ExecutePythonProcessor.h         |   7 +-
 .../utils/dependency_installer.py                  |   4 +-
 extensions/sftp/processors/ListSFTP.cpp            |   2 +-
 extensions/standard-processors/CMakeLists.txt      |   3 +-
 .../standard-processors/controllers/XMLReader.cpp  | 207 +++++++++++++
 .../standard-processors/controllers/XMLReader.h    |  96 ++++++
 .../controllers/XMLRecordSetWriter.cpp             | 164 ++++++++++
 .../controllers/XMLRecordSetWriter.h               | 133 ++++++++
 .../processors/AttributeRollingWindow.cpp          |   2 +-
 .../processors/ConvertRecord.cpp                   |  65 ++++
 .../standard-processors/processors/ConvertRecord.h |  85 ++++++
 .../processors/EvaluateJsonPath.cpp                | 174 +++++++++++
 .../processors/EvaluateJsonPath.h                  | 194 ++++++++++++
 .../standard-processors/processors/SplitJson.cpp   | 133 ++++++++
 .../standard-processors/processors/SplitJson.h     | 123 ++++++++
 .../standard-processors/processors/SplitText.cpp   |   2 +-
 .../tests/integration/ProcessGroupTest.cpp         |   7 +-
 .../tests/integration/TailFileIntegrationTest.cpp  |   7 +-
 .../tests/integration/VerifyInvokeHTTP.h           |  19 +-
 .../tests/integration/VerifyInvokeHTTPGetTest.cpp  |  10 +-
 .../tests/integration/VerifyInvokeHTTPPostTest.cpp |  74 +++--
 .../tests/unit/ConvertRecordTests.cpp              | 103 +++++++
 .../tests/unit/EvaluateJsonPathTests.cpp           | 325 ++++++++++++++++++++
 .../tests/unit/JsonRecordTests.cpp                 |   8 +-
 .../tests/unit/RecordSetTests.cpp                  |   2 +-
 .../tests/unit/SplitJsonTests.cpp                  | 150 +++++++++
 .../tests/unit/SplitTextTests.cpp                  |   2 +-
 .../tests/unit/XMLReaderTests.cpp                  | 252 +++++++++++++++
 .../tests/unit/XMLRecordSetWriterTests.cpp         | 339 +++++++++++++++++++++
 extensions/standard-processors/utils/JoltUtils.h   |   2 +-
 extensions/windows-event-log/CMakeLists.txt        |   5 +-
 libminifi/test/integration/AlertTests.cpp          |   5 +-
 libminifi/test/integration/C2AssetSyncTest.cpp     |   1 +
 .../integration/C2ClearCoreComponentStateTest.cpp  |   9 +-
 libminifi/test/integration/C2CompressTest.cpp      |   1 +
 libminifi/test/integration/C2ConfigEncryption.cpp  |  15 +-
 .../integration/C2ControllerEnableFailureTest.cpp  |   8 +-
 libminifi/test/integration/C2DebugBundleTest.cpp   |   7 +-
 .../C2DescribeCoreComponentStateTest.cpp           |   9 +-
 .../test/integration/C2DescribeManifestTest.cpp    |   5 +-
 .../test/integration/C2DescribeMetricsTest.cpp     |   7 +-
 libminifi/test/integration/C2EmptyMetricTest.cpp   |   7 +-
 libminifi/test/integration/C2FailedUpdateTest.cpp  |   5 +-
 .../test/integration/C2FetchFlowIfMissingTest.cpp  |   5 +-
 libminifi/test/integration/C2JstackTest.cpp        |   5 +-
 libminifi/test/integration/C2LogHeartbeatTest.cpp  |   1 +
 libminifi/test/integration/C2MetricsTest.cpp       |  10 +-
 .../test/integration/C2MultipleCommandsTest.cpp    |  10 +-
 libminifi/test/integration/C2NullConfiguration.cpp |  10 +-
 libminifi/test/integration/C2PauseResumeTest.cpp   |  10 +-
 .../test/integration/C2PropertiesUpdateTests.cpp   |  10 +-
 .../test/integration/C2SameProcessorMetrics.cpp    |   7 +-
 libminifi/test/integration/C2UpdateTest.cpp        |   4 +-
 .../test/integration/C2VerifyHeartbeatAndStop.cpp  |   6 +-
 .../C2VerifyLightweightHeartbeatAndStop.cpp        |   6 +-
 .../C2VerifyResourceConsumptionInHeartbeat.cpp     |   6 +-
 libminifi/test/integration/HTTPSiteToSiteTests.cpp |  13 +-
 .../integration/OnScheduleErrorHandlingTests.cpp   |  14 +-
 libminifi/test/integration/SiteToSiteRestTest.cpp  |  10 +-
 .../integration/StateTransactionalityTests.cpp     |  16 +-
 .../integration/TimeoutHTTPSiteToSiteTests.cpp     |  13 +-
 .../test/libtest/integration/HTTPIntegrationBase.h |  18 +-
 .../test/libtest/integration/IntegrationBase.cpp   |  33 +-
 .../test/libtest/integration/IntegrationBase.h     |  37 ++-
 libminifi/test/unit/ResponseNodeLoaderTests.cpp    |   2 +-
 minifi-api/include/minifi-cpp/core/Record.h        |   1 +
 minifi_main/MainHelper.cpp                         |  10 +-
 minifi_main/MiNiFiMain.cpp                         |   2 +-
 thirdparty/opencv/windows-install-path.patch       |  34 +++
 110 files changed, 3281 insertions(+), 403 deletions(-)
 delete mode 100644 cmake/BundledPugiXml.cmake
 copy cmake/{Sol2.cmake => Jsoncons.cmake} (73%)
 copy cmake/{ArgParse.cmake => PugiXml.cmake} (76%)
 create mode 100644 docker/test/integration/features/evaluate_json_path.feature
 create mode 100644 docker/test/integration/features/split_json.feature
 copy docker/test/integration/minifi/controllers/{JsonTreeReader.py => 
XMLReader.py} (85%)
 copy docker/test/integration/minifi/processors/{ExecuteScript.py => 
ConvertRecord.py} (89%)
 copy docker/test/integration/minifi/processors/{AttributesToJSON.py => 
EvaluateJsonPath.py} (87%)
 copy docker/test/integration/minifi/processors/{SplitText.py => SplitJson.py} 
(85%)
 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/processors/ConvertRecord.cpp
 create mode 100644 extensions/standard-processors/processors/ConvertRecord.h
 create mode 100644 
extensions/standard-processors/processors/EvaluateJsonPath.cpp
 create mode 100644 extensions/standard-processors/processors/EvaluateJsonPath.h
 create mode 100644 extensions/standard-processors/processors/SplitJson.cpp
 create mode 100644 extensions/standard-processors/processors/SplitJson.h
 create mode 100644 
extensions/standard-processors/tests/unit/ConvertRecordTests.cpp
 create mode 100644 
extensions/standard-processors/tests/unit/EvaluateJsonPathTests.cpp
 create mode 100644 extensions/standard-processors/tests/unit/SplitJsonTests.cpp
 create mode 100644 extensions/standard-processors/tests/unit/XMLReaderTests.cpp
 create mode 100644 
extensions/standard-processors/tests/unit/XMLRecordSetWriterTests.cpp
 create mode 100644 thirdparty/opencv/windows-install-path.patch

Reply via email to