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 271ac906d MINIFICPP-2509 Add option to reload parameter contexts from
parameter providers on restart
new 1cc6d35dd MINIFICPP-2539 Implement python NiFi API state manager
new 54a643c72 MINIFICPP-2541 - Simplify VolatileContentRepository
new 61d347da7 MINIFICPP-2562 Readd setting current working directory at
startup
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:
.github/workflows/ci.yml | 15 +-
LICENSE | 1 +
NOTICE | 1 +
README.md | 14 ++
cmake/{FetchUvc.cmake => FetchBenchmark.cmake} | 12 +-
cmake/MiNiFiOptions.cmake | 1 +
docker/test/integration/cluster/ContainerStore.py | 3 +
.../test/integration/cluster/DockerTestCluster.py | 3 +
docker/test/integration/cluster/ImageStore.py | 57 +++--
.../cluster/containers/MinifiContainer.py | 5 +-
.../features/MiNiFi_integration_test_driver.py | 3 +
docker/test/integration/features/python.feature | 32 ++-
docker/test/integration/features/steps/steps.py | 7 +-
.../{CreateNothing.py => TestStateManager.py} | 6 +-
.../{CreateNothing.py => TestStateManager.py} | 29 ++-
extensions/python/PYTHON.md | 1 +
.../pythonprocessors/nifiapi/componentstate.py | 79 +++++++
.../python/pythonprocessors/nifiapi/properties.py | 5 +-
extensions/python/types/PyStateManager.cpp | 51 ++++
extensions/python/types/PyStateManager.h | 2 +
extensions/rocksdb-repos/tests/RepoTests.cpp | 4 +-
...ository.h => LegacyVolatileContentRepository.h} | 30 +--
.../core/repository/VolatileContentRepository.h | 107 ++-------
...ory.cpp => LegacyVolatileContentRepository.cpp} | 14 +-
.../core/repository/VolatileContentRepository.cpp | 207 ++++++++---------
libminifi/test/unit/CMakeLists.txt | 2 +
.../test/unit/{ => performance}/CMakeLists.txt | 27 +--
.../performance/VolatileRepositoryPerfTests.cpp | 258 +++++++++++++++++++++
minifi_main/MiNiFiMain.cpp | 1 +
win_build_vs.bat | 5 +-
30 files changed, 682 insertions(+), 300 deletions(-)
copy cmake/{FetchUvc.cmake => FetchBenchmark.cmake} (72%)
copy docker/test/integration/minifi/processors/{CreateNothing.py =>
TestStateManager.py} (89%)
copy docker/test/integration/resources/python/{CreateNothing.py =>
TestStateManager.py} (52%)
create mode 100644 extensions/python/pythonprocessors/nifiapi/componentstate.py
copy libminifi/include/core/repository/{VolatileContentRepository.h =>
LegacyVolatileContentRepository.h} (77%)
copy libminifi/src/core/repository/{VolatileContentRepository.cpp =>
LegacyVolatileContentRepository.cpp} (89%)
copy libminifi/test/unit/{ => performance}/CMakeLists.txt (58%)
create mode 100644
libminifi/test/unit/performance/VolatileRepositoryPerfTests.cpp