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 e63a287fe MINIFICPP-1997 Fix transiently failing
FileSystemRepositoryTests
new ce288b920 MINIFICPP-2035 NiFi flow json format support
new 5a9c1c334 MINIFICPP-2034 Cache SID lookups in CWEL
new 7e8c5c49c MINIFICPP-2045 Synchronous flow file reloading
new 2c7f989ae MINIFICPP-2007 Add rocksdb compression options
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:
CMakeLists.txt | 6 +
CONFIGURE.md | 10 +-
LICENSE | 102 +++++++--
NOTICE | 2 +
PROCESSORS.md | 1 +
cmake/BundledRocksDB.cmake | 35 +++-
cmake/BundledZLIB.cmake | 1 -
cmake/LZ4.cmake | 53 +++++
cmake/Zstd.cmake | 56 +++++
.../FindBZip2.cmake => lz4/dummy/Findlz4.cmake} | 24 +--
.../FindBZip2.cmake => zstd/dummy/Findzstd.cmake} | 24 +--
conf/minifi.properties | 3 +-
.../integration/MiNiFi_integration_test_driver.py | 3 +
docker/test/integration/cluster/ContainerStore.py | 3 +
.../test/integration/cluster/DockerTestCluster.py | 3 +
.../cluster/containers/MinifiContainer.py | 9 +-
docker/test/integration/features/s2s.feature | 7 +-
docker/test/integration/features/script.feature | 3 +-
docker/test/integration/features/sql.feature | 3 +-
.../Minifi_flow_json_serializer.py | 141 +++++++++++++
docker/test/integration/steps/steps.py | 5 +
extensions/http-curl/protocols/RESTSender.cpp | 1 +
extensions/libarchive/CMakeLists.txt | 6 -
.../rocksdb-repos/DatabaseContentRepository.cpp | 38 +++-
.../rocksdb-repos/DatabaseContentRepository.h | 2 +
extensions/rocksdb-repos/FlowFileRepository.cpp | 121 +++--------
extensions/rocksdb-repos/FlowFileRepository.h | 12 --
extensions/rocksdb-repos/database/RocksDbUtils.cpp | 54 +++++
extensions/rocksdb-repos/database/RocksDbUtils.h | 21 +-
.../rocksdb-repos/database/StringAppender.cpp | 2 +-
.../tests/unit/AdaptiveConfigurationTests.cpp | 66 ++++++
.../tests/unit/FlowJsonTests.cpp | 163 +++++++++++++++
.../standard-processors/tests/unit/PutTCPTests.cpp | 4 +-
.../tests/unit/YamlConfigurationTests.cpp | 153 +++-----------
.../windows-event-log/ConsumeWindowsEventLog.cpp | 25 ++-
.../windows-event-log/ConsumeWindowsEventLog.h | 7 +-
extensions/windows-event-log/tests/CMakeLists.txt | 6 +-
.../tests/ConsumeWindowsEventLogTests.cpp | 3 +-
.../windows-event-log/tests/LookupCacherTests.cpp | 77 +++++++
.../tests/MetadataWalkerTests.cpp | 24 +--
.../wel/LookupCacher.cpp} | 34 ++-
.../windows-event-log/wel/LookupCacher.h | 45 ++--
.../windows-event-log/wel/MetadataWalker.cpp | 5 +-
extensions/windows-event-log/wel/MetadataWalker.h | 10 +-
libminifi/CMakeLists.txt | 2 +-
libminifi/include/RemoteProcessorGroupPort.h | 4 +
libminifi/include/core/ContentRepository.h | 2 +
libminifi/include/core/ProcessGroup.h | 2 -
libminifi/include/core/ProcessorConfig.h | 6 +-
.../core/flow/AdaptiveConfiguration.h} | 15 +-
libminifi/include/core/flow/CheckRequiredField.h | 6 +-
libminifi/include/core/flow/FlowSchema.h | 88 ++++++++
libminifi/include/core/flow/Node.h | 59 +++++-
.../include/core/flow/StructuredConfiguration.h | 28 ++-
.../include/core/flow/StructuredConnectionParser.h | 10 +-
libminifi/include/core/json/JsonConfiguration.h | 51 -----
libminifi/include/core/json/JsonNode.h | 19 ++
.../include/core/repository/FileSystemRepository.h | 2 +
.../core/repository/VolatileContentRepository.h | 4 +
.../include/core/state/nodes/SchedulingNodes.h | 4 +-
libminifi/include/core/yaml/YamlConfiguration.h | 9 -
libminifi/include/core/yaml/YamlNode.h | 16 +-
libminifi/include/properties/Configuration.h | 3 +-
libminifi/src/Configuration.cpp | 3 +-
libminifi/src/core/ConfigurationFactory.cpp | 14 +-
libminifi/src/core/ProcessGroup.cpp | 6 +-
libminifi/src/core/flow/AdaptiveConfiguration.cpp | 67 ++++++
libminifi/src/core/flow/CheckRequiredField.cpp | 18 +-
libminifi/src/core/flow/FlowSchema.cpp | 144 +++++++++++++
libminifi/src/core/flow/Node.cpp | 10 +-
.../src/core/flow/StructuredConfiguration.cpp | 227 +++++++++++----------
.../src/core/flow/StructuredConnectionParser.cpp | 29 ++-
libminifi/src/core/json/JsonConfiguration.cpp | 89 --------
.../src/core/repository/FileSystemRepository.cpp | 13 ++
libminifi/src/core/yaml/YamlConfiguration.cpp | 24 +--
libminifi/test/ConfigurationTestController.h | 56 +++++
libminifi/test/flow-tests/SessionTests.cpp | 8 +-
.../test/persistence-tests/PersistenceTests.cpp | 10 +-
.../rocksdb-tests/DBContentRepositoryTests.cpp | 39 ++++
libminifi/test/rocksdb-tests/EncryptionTests.cpp | 9 +-
libminifi/test/rocksdb-tests/RepoTests.cpp | 120 ++++++++---
libminifi/test/unit/FileSystemRepositoryTests.cpp | 24 +++
minifi_main/MiNiFiMain.cpp | 2 +-
...e_gcc_clang_compiler_options_from_windows.patch | 37 ++++
84 files changed, 1861 insertions(+), 791 deletions(-)
create mode 100644 cmake/LZ4.cmake
create mode 100644 cmake/Zstd.cmake
copy cmake/{bzip2/dummy/FindBZip2.cmake => lz4/dummy/Findlz4.cmake} (56%)
copy cmake/{bzip2/dummy/FindBZip2.cmake => zstd/dummy/Findzstd.cmake} (56%)
create mode 100644
docker/test/integration/minifi/flow_serialization/Minifi_flow_json_serializer.py
create mode 100644 extensions/rocksdb-repos/database/RocksDbUtils.cpp
create mode 100644
extensions/standard-processors/tests/unit/AdaptiveConfigurationTests.cpp
create mode 100644 extensions/standard-processors/tests/unit/FlowJsonTests.cpp
create mode 100644 extensions/windows-event-log/tests/LookupCacherTests.cpp
copy extensions/{sql/data/SQLColumnIdentifier.cpp =>
windows-event-log/wel/LookupCacher.cpp} (58%)
copy libminifi/include/utils/crypto/ciphers/XSalsa20.h =>
extensions/windows-event-log/wel/LookupCacher.h (53%)
copy libminifi/{src/core/flow/Node.cpp =>
include/core/flow/AdaptiveConfiguration.h} (74%)
create mode 100644 libminifi/include/core/flow/FlowSchema.h
delete mode 100644 libminifi/include/core/json/JsonConfiguration.h
create mode 100644 libminifi/src/core/flow/AdaptiveConfiguration.cpp
create mode 100644 libminifi/src/core/flow/FlowSchema.cpp
delete mode 100644 libminifi/src/core/json/JsonConfiguration.cpp
create mode 100644 libminifi/test/ConfigurationTestController.h
create mode 100644
thirdparty/zstd/exclude_gcc_clang_compiler_options_from_windows.patch