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 eaedb80 MINIFICPP-1626: Upgrade PCAP++ to a more recent release
new 8d53f6f MINIFICPP-1646 Exclude CLion generated build directories from
flake8 scan
new 7a377c7 MINIFICPP-1647 Remove unused bsdiff lib
new 4876781 MINIFICPP-1616 Add Azure DataLake storage lib to minifi
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 | 2 +-
CMakeLists.txt | 3 -
LICENSE | 52 ---
NOTICE | 1 -
PROCESSORS.md | 26 ++
README.md | 2 +-
cmake/BuildTests.cmake | 4 -
cmake/BundledAzureSdkCpp.cmake | 57 +--
cmake/NlohmannJson.cmake | 35 --
cmake/nlohmann_json/dummy/Findnlohmann_json.cmake | 27 --
extensions/aws/processors/DeleteS3Object.cpp | 5 +-
extensions/aws/processors/FetchS3Object.cpp | 5 +-
extensions/aws/processors/ListS3.cpp | 6 +-
extensions/aws/processors/PutS3Object.cpp | 7 +-
extensions/aws/processors/S3Processor.cpp | 14 +-
extensions/azure/CMakeLists.txt | 2 +-
.../AzureStorageCredentialsService.h | 11 +-
.../azure/processors/AzureStorageProcessorBase.cpp | 56 +++
.../processors/AzureStorageProcessorBase.h} | 50 +--
.../azure/processors/PutAzureBlobStorage.cpp | 48 +--
extensions/azure/processors/PutAzureBlobStorage.h | 38 +-
.../azure/processors/PutAzureDataLakeStorage.cpp | 177 ++++++++
.../azure/processors/PutAzureDataLakeStorage.h | 103 +++++
extensions/azure/storage/AzureBlobStorage.cpp | 9 +-
extensions/azure/storage/AzureDataLakeStorage.cpp | 54 +++
.../{AzureBlobStorage.h => AzureDataLakeStorage.h} | 50 +--
.../azure/storage/AzureDataLakeStorageClient.cpp | 55 +++
.../azure/storage/AzureDataLakeStorageClient.h | 59 +++
.../azure/storage/DataLakeStorageClient.h | 31 +-
libminifi/include/utils/file/DiffUtils.h | 79 ----
libminifi/src/c2/C2Agent.cpp | 1 -
.../azure-tests/PutAzureDataLakeStorageTests.cpp | 271 ++++++++++++
run_flake8.sh | 2 +-
.../azure-sdk-for-cpp-old-compiler.patch | 42 --
.../fix-illegal-qualified-name-in-member.patch | 14 -
.../azure-sdk-cpp-remove-samples.patch | 23 +
thirdparty/bsdiff/CMakeLists.txt | 27 --
thirdparty/bsdiff/LICENSE | 24 --
thirdparty/bsdiff/bsdiff.c | 477 ---------------------
thirdparty/bsdiff/bsdiff.h | 47 --
thirdparty/bsdiff/bspatch.c | 200 ---------
thirdparty/bsdiff/bspatch.h | 47 --
42 files changed, 957 insertions(+), 1286 deletions(-)
delete mode 100644 cmake/NlohmannJson.cmake
delete mode 100644 cmake/nlohmann_json/dummy/Findnlohmann_json.cmake
create mode 100644 extensions/azure/processors/AzureStorageProcessorBase.cpp
copy extensions/{sftp/tests/tools/SFTPTestServer.h =>
azure/processors/AzureStorageProcessorBase.h} (53%)
create mode 100644 extensions/azure/processors/PutAzureDataLakeStorage.cpp
create mode 100644 extensions/azure/processors/PutAzureDataLakeStorage.h
create mode 100644 extensions/azure/storage/AzureDataLakeStorage.cpp
copy extensions/azure/storage/{AzureBlobStorage.h => AzureDataLakeStorage.h}
(54%)
create mode 100644 extensions/azure/storage/AzureDataLakeStorageClient.cpp
create mode 100644 extensions/azure/storage/AzureDataLakeStorageClient.h
copy libminifi/test/RandomServerSocket.h =>
extensions/azure/storage/DataLakeStorageClient.h (55%)
delete mode 100644 libminifi/include/utils/file/DiffUtils.h
create mode 100644 libminifi/test/azure-tests/PutAzureDataLakeStorageTests.cpp
delete mode 100644
thirdparty/azure-sdk-cpp-for-cpp/azure-sdk-for-cpp-old-compiler.patch
delete mode 100644
thirdparty/azure-sdk-cpp-for-cpp/fix-illegal-qualified-name-in-member.patch
create mode 100644 thirdparty/azure-sdk-cpp/azure-sdk-cpp-remove-samples.patch
delete mode 100644 thirdparty/bsdiff/CMakeLists.txt
delete mode 100644 thirdparty/bsdiff/LICENSE
delete mode 100644 thirdparty/bsdiff/bsdiff.c
delete mode 100644 thirdparty/bsdiff/bsdiff.h
delete mode 100644 thirdparty/bsdiff/bspatch.c
delete mode 100644 thirdparty/bsdiff/bspatch.h