You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by fg...@apache.org on 2021/08/17 14:00:53 UTC

[nifi-minifi-cpp] branch main updated (e8e3eed -> b37d398)

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

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


    from e8e3eed  MINIFICPP-1627 Do not build OpenCV in the Windows CI job and increase the timeout to 3 hours.
     add b37d398  MINIFICPP-1607 Implement AttributesToJson processor

No new revisions were added by this update.

Summary of changes:
 PROCESSORS.md                                      |  22 ++
 .../integration/MiNiFi_integration_test_driver.py  |   6 +
 .../features/attributes_to_json.feature            |  15 ++
 .../minifi/processors/AttributesToJSON.py          |   6 +
 .../validators/SingleJSONFileOutputValidator.py    |  36 +++
 docker/test/integration/steps/steps.py             |   6 +
 .../processors/AttributesToJSON.cpp                | 178 +++++++++++++
 .../processors/AttributesToJSON.h                  | 104 ++++++++
 .../tests/unit/AttributesToJSONTests.cpp           | 292 +++++++++++++++++++++
 libminifi/include/core/FlowFile.h                  |   8 +
 libminifi/test/TestBase.h                          |  28 +-
 11 files changed, 700 insertions(+), 1 deletion(-)
 create mode 100644 docker/test/integration/features/attributes_to_json.feature
 create mode 100644 docker/test/integration/minifi/processors/AttributesToJSON.py
 create mode 100644 docker/test/integration/minifi/validators/SingleJSONFileOutputValidator.py
 create mode 100644 extensions/standard-processors/processors/AttributesToJSON.cpp
 create mode 100644 extensions/standard-processors/processors/AttributesToJSON.h
 create mode 100644 extensions/standard-processors/tests/unit/AttributesToJSONTests.cpp