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

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


    omit f2d0a6c  CompressContent/archive_read: restore archive_set_error call
    omit c7706ef  fix PutS3Object error
    omit e8ed857  review feedback
    omit acc245b  MINIFICPP-1507 convert InputStream::read to size_t (squashed)
     add fb04567  MINIFICPP-1557 Fix CPU usage percentage calculation
     add 186f163  MINIFICPP-1567 enable linter checks in extensions (part 1)
     add 922b6e7  MINIFICPP-1567 enable linter checks in extensions (part 2)
     add 6805ac3  MINIFICPP-1507 convert InputStream::read to size_t (squashed)
     add 4e5d9ed  review feedback
     add 4f36688  fix PutS3Object error
     add a4b5d1c  CompressContent/archive_read: restore archive_set_error call

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f2d0a6c)
            \
             N -- N -- N   refs/heads/MINIFICPP-1507 (a4b5d1c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 extensions/bustache/ApplyTemplate.cpp              |   4 +-
 extensions/bustache/ApplyTemplate.h                |   8 +-
 extensions/bustache/CMakeLists.txt                 |   1 +
 extensions/bustache/TemplateLoader.h               |   8 +-
 extensions/civetweb/CMakeLists.txt                 |   2 +-
 extensions/civetweb/processors/ListenHTTP.cpp      |   5 +
 extensions/civetweb/processors/ListenHTTP.h        |   9 +-
 extensions/coap/CMakeLists.txt                     |   2 +-
 extensions/coap/COAPLoader.h                       |   8 +-
 .../coap/controllerservice/CoapConnector.cpp       |   6 +-
 extensions/coap/controllerservice/CoapConnector.h  |  17 +-
 extensions/coap/controllerservice/CoapMessaging.h  |  14 +-
 extensions/coap/controllerservice/CoapResponse.h   |  11 +-
 extensions/coap/nanofi/coap_functions.h            |   2 -
 extensions/coap/nanofi/coap_message.h              |   5 +-
 extensions/coap/nanofi/coap_server.h               |   5 +-
 extensions/coap/protocols/CoapC2Protocol.cpp       |   2 +-
 extensions/coap/protocols/CoapC2Protocol.h         |  11 +-
 extensions/coap/server/CoapServer.cpp              |   2 +
 extensions/coap/server/CoapServer.h                |  28 +-
 extensions/coap/tests/CoapC2VerifyHeartbeat.cpp    |   6 +-
 extensions/coap/tests/CoapIntegrationBase.h        |  11 +-
 extensions/expression-language/CMakeLists.txt      |   1 +
 extensions/expression-language/Driver.h            |   8 +-
 extensions/expression-language/Expression.cpp      |  19 +-
 .../ExpressionContextBuilder.cpp                   |   5 +
 .../expression-language/ExpressionContextBuilder.h |   6 +-
 extensions/expression-language/ExpressionLoader.h  |   9 +-
 .../expression-language/ProcessContextExpr.cpp     |   2 +
 .../expression-language/ProcessContextExpr.h       |   9 +-
 extensions/expression-language/common/Value.h      |  11 +-
 .../impl/expression/Expression.h                   |  20 +-
 .../tests/ExpressionLanguageTests.cpp              | 719 ++++++++++-----------
 .../tests/RouteOnAttributeTests.cpp                |   1 -
 .../integration/UpdateAttributeIntegrationTest.cpp |   7 -
 extensions/gps/CMakeLists.txt                      |   1 +
 extensions/gps/GetGPS.cpp                          |  28 +-
 extensions/gps/GetGPS.h                            |  21 +-
 extensions/gps/GetGPSLoader.h                      |   9 +-
 extensions/http-curl/CMakeLists.txt                |   1 +
 extensions/http-curl/HTTPCurlLoader.h              |  10 +-
 extensions/http-curl/client/HTTPCallback.h         |  10 +-
 extensions/http-curl/client/HTTPClient.cpp         |  18 +-
 extensions/http-curl/client/HTTPClient.h           |  13 +-
 extensions/http-curl/client/HTTPStream.cpp         |   4 -
 extensions/http-curl/client/HTTPStream.h           |   7 +-
 extensions/http-curl/processors/InvokeHTTP.cpp     |   9 -
 extensions/http-curl/processors/InvokeHTTP.h       |   9 +-
 extensions/http-curl/protocols/AgentPrinter.cpp    |   6 -
 extensions/http-curl/protocols/AgentPrinter.h      |  13 +-
 extensions/http-curl/protocols/RESTReceiver.h      |  12 +-
 extensions/http-curl/protocols/RESTSender.cpp      |   5 -
 extensions/http-curl/protocols/RESTSender.h        |  11 +-
 extensions/http-curl/sitetosite/HTTPProtocol.h     |  28 +-
 extensions/http-curl/sitetosite/HTTPTransaction.h  |   4 +
 extensions/http-curl/sitetosite/PeersEntity.h      |  10 +-
 .../http-curl/tests/C2DescribeManifestTest.cpp     |   2 +-
 extensions/http-curl/tests/C2NullConfiguration.cpp |   2 +-
 .../C2VerifyResourceConsumptionInHeartbeat.cpp     |   7 +-
 .../http-curl/tests/C2VerifyServeResults.cpp       |   4 +-
 extensions/http-curl/tests/CivetStream.h           |  12 +-
 extensions/http-curl/tests/HTTPHandlers.h          |  64 +-
 extensions/http-curl/tests/HTTPIntegrationBase.h   |  13 +-
 extensions/http-curl/tests/HTTPSiteToSiteTests.cpp |   2 +-
 .../http-curl/tests/HttpGetIntegrationTest.cpp     |   1 -
 .../http-curl/tests/HttpPostIntegrationTest.cpp    |   2 +-
 extensions/http-curl/tests/ServerAwareHandler.h    |   9 +-
 extensions/http-curl/tests/SiteToSiteRestTest.cpp  |   2 +-
 extensions/http-curl/tests/TestServer.h            |  11 +-
 .../http-curl/tests/TimeoutHTTPSiteToSiteTests.cpp |   4 +-
 .../http-curl/tests/unit/HTTPClientTests.cpp       |   9 +-
 .../http-curl/tests/unit/InvokeHTTPTests.cpp       |   5 -
 extensions/usb-camera/CMakeLists.txt               |   1 +
 extensions/usb-camera/GetUSBCamera.cpp             |   3 +
 extensions/usb-camera/GetUSBCamera.h               |  10 +-
 extensions/windows-event-log/Bookmark.cpp          |  17 +-
 extensions/windows-event-log/Bookmark.h            |  16 +-
 extensions/windows-event-log/CMakeLists.txt        |   1 +
 .../CollectorInitiatedSubscription.cpp             |  26 +-
 .../CollectorInitiatedSubscription.h               |  21 +-
 .../windows-event-log/ConsumeWindowsEventLog.cpp   |  33 +-
 .../windows-event-log/ConsumeWindowsEventLog.h     |  35 +-
 extensions/windows-event-log/SupportedProperty.h   |  12 +-
 extensions/windows-event-log/TailEventLog.cpp      |  24 +-
 extensions/windows-event-log/TailEventLog.h        |  23 +-
 .../tests/CWELCustomProviderTests.cpp              |   3 +-
 extensions/windows-event-log/tests/CWELTestUtils.h |   6 +
 .../tests/MetadataWalkerTests.cpp                  | 100 +--
 .../tests/custom-provider/CPPLINT.cfg              |   1 +
 extensions/windows-event-log/wel/JSONUtils.h       |   6 +-
 .../windows-event-log/wel/MetadataWalker.cpp       |  34 +-
 extensions/windows-event-log/wel/MetadataWalker.h  |  25 +-
 .../windows-event-log/wel/UnicodeConversion.h      |  36 +-
 .../windows-event-log/wel/WindowsEventLog.cpp      |  33 +-
 extensions/windows-event-log/wel/WindowsEventLog.h |  49 +-
 extensions/windows-event-log/wel/XMLString.h       |  31 +-
 libminifi/include/io/ClientSocket.h                |   4 +-
 libminifi/src/utils/ProcessCpuUsageTracker.cpp     |  11 +-
 libminifi/src/utils/SystemCpuUsageTracker.cpp      |  16 +-
 libminifi/test/unit/CpuUsageTest.cpp               |   2 +-
 100 files changed, 954 insertions(+), 987 deletions(-)
 create mode 100644 
extensions/windows-event-log/tests/custom-provider/CPPLINT.cfg

Reply via email to