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 113a92970 MINIFICPP-1805 Remove unused bootstrap extension
new 1a521323e MINIFICPP-1802 Do not make EC2 HTTP calls when AWS extension
is not used
new b0f0873d7 MINIFICPP-1675 Use regex.h instead of std::regex when using
libstdc++
new fbf2a349b MINIFICPP-1810 Provide logs to be read from docker logs
The 3 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:
.dockerignore | 3 +-
bin/minifi.sh | 5 +-
docker/.dockerignore | 17 --
docker/Dockerfile | 1 +
{conf => docker/conf}/minifi-log.properties | 14 +-
docker/test/integration/minifi/core/Container.py | 3 -
.../integration/minifi/core/DockerTestCluster.py | 22 +-
.../integration/minifi/core/MinifiContainer.py | 3 -
.../test/integration/minifi/core/NifiContainer.py | 3 -
encrypt-config/tests/ConfigFileEncryptorTests.cpp | 6 +-
extensions/aws/processors/DeleteS3Object.cpp | 3 +-
extensions/aws/processors/FetchS3Object.cpp | 3 +-
extensions/aws/processors/ListS3.cpp | 4 +-
extensions/aws/processors/PutS3Object.cpp | 3 +-
extensions/aws/processors/S3Processor.cpp | 7 +-
extensions/aws/processors/S3Processor.h | 2 +-
extensions/aws/s3/S3Wrapper.cpp | 8 +-
.../azure/processors/ListAzureDataLakeStorage.cpp | 6 +-
extensions/azure/storage/AzureDataLakeStorage.cpp | 10 +-
extensions/azure/storage/DataLakeStorageClient.h | 6 +-
extensions/civetweb/processors/ListenHTTP.cpp | 4 +-
extensions/civetweb/processors/ListenHTTP.h | 6 +-
extensions/expression-language/Expression.cpp | 17 +-
extensions/http-curl/client/HTTPClient.cpp | 8 +-
.../KubernetesControllerService.cpp | 10 +-
.../KubernetesControllerService.h | 7 +-
extensions/librdkafka/PublishKafka.cpp | 8 +-
extensions/librdkafka/PublishKafka.h | 4 +-
extensions/pcap/CapturePacket.cpp | 8 +-
extensions/sftp/processors/ListSFTP.cpp | 13 +-
extensions/sftp/processors/ListSFTP.h | 6 +-
.../processors/AttributesToJSON.cpp | 4 +-
.../processors/AttributesToJSON.h | 4 +-
.../processors/DefragmentText.cpp | 6 +-
.../processors/DefragmentText.h | 4 +-
.../standard-processors/processors/ExtractText.cpp | 14 +-
.../standard-processors/processors/GetFile.cpp | 6 +-
.../standard-processors/processors/ListenSyslog.h | 1 +
.../standard-processors/processors/RouteText.cpp | 25 +-
.../standard-processors/processors/RouteText.h | 4 +-
.../standard-processors/processors/TailFile.cpp | 18 +-
.../tests/unit/ExtractTextTests.cpp | 32 +++
.../tests/unit/RouteTextTests.cpp | 6 +-
.../tests/unit/TailFileTests.cpp | 10 +-
.../windows-event-log/wel/MetadataWalker.cpp | 4 +-
extensions/windows-event-log/wel/MetadataWalker.h | 4 +-
libminifi/include/utils/HTTPUtils.h | 8 +-
libminifi/include/utils/RegexUtils.h | 173 ++++++++++++
libminifi/include/utils/StringUtils.h | 9 -
libminifi/src/core/yaml/YamlConfiguration.cpp | 10 +-
libminifi/src/utils/RegexUtils.cpp | 295 +++++++++++++++++++++
libminifi/src/utils/StringUtils.cpp | 10 -
libminifi/test/unit/RegexUtilsTests.cpp | 129 +++++++++
libminifi/test/unit/StringUtilsTests.cpp | 23 --
54 files changed, 787 insertions(+), 232 deletions(-)
delete mode 100644 docker/.dockerignore
copy {conf => docker/conf}/minifi-log.properties (89%)
create mode 100644 libminifi/include/utils/RegexUtils.h
create mode 100644 libminifi/src/utils/RegexUtils.cpp
create mode 100644 libminifi/test/unit/RegexUtilsTests.cpp