This is an automated email from the ASF dual-hosted git repository.
pnoltes pushed a change to branch feature/pubsub-interceptor-fix
in repository https://gitbox.apache.org/repos/asf/celix.git.
from 6229f9e Updates the interceptor api so that metadata can be extended
in the preSend/Receive callbacks.
new 6bf1ef1 Adds interceptor support to the pubsub websocket
new 02a9627 Updates cmake configuration and fixes invalid pubsub cmake
aliases.
new 3f0014b Removes interceptor support from psa zmq/tcp v1 (the behavior
is different from v2)
new 0b04fde Fixes memleak in pubsub topology manager
new f0cf244 Adds some additional pubsub interceptor integration tests
The 5 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:
bundles/cxx_remote_services/CMakeLists.txt | 3 +-
.../discovery_configured/CMakeLists.txt | 1 +
.../cxx_remote_services/integration/CMakeLists.txt | 20 +-
.../integration/gtest/CMakeLists.txt | 16 +-
bundles/http_admin/http_admin/CMakeLists.txt | 1 +
bundles/logging/log_admin/CMakeLists.txt | 1 +
bundles/logging/log_service_v2/CMakeLists.txt | 2 +
.../log_writers/syslog_writer/CMakeLists.txt | 1 +
bundles/pubsub/CMakeLists.txt | 12 +-
bundles/pubsub/examples/CMakeLists.txt | 156 ++++++------
bundles/pubsub/integration/CMakeLists.txt | 262 ++++++++++++---------
.../gtest/PubSubInterceptorTestSuite.cc | 245 ++++++++++++++-----
bundles/pubsub/pubsub_admin_tcp/v1/CMakeLists.txt | 4 +-
.../v1/src/pubsub_tcp_topic_receiver.c | 54 ++---
.../v1/src/pubsub_tcp_topic_sender.c | 87 +++----
bundles/pubsub/pubsub_admin_tcp/v2/CMakeLists.txt | 2 +-
.../v2/src/pubsub_tcp_topic_receiver.c | 21 +-
.../v2/src/pubsub_tcp_topic_sender.c | 1 +
bundles/pubsub/pubsub_admin_udp_mc/CMakeLists.txt | 2 +-
.../pubsub_admin_websocket/v1/CMakeLists.txt | 4 +-
.../pubsub_admin_websocket/v2/CMakeLists.txt | 2 +-
.../v2/src/pubsub_websocket_common.h | 2 +-
.../v2/src/pubsub_websocket_topic_receiver.c | 210 +++++++++--------
.../v2/src/pubsub_websocket_topic_sender.c | 13 +
bundles/pubsub/pubsub_admin_zmq/v1/CMakeLists.txt | 2 +-
.../v1/src/pubsub_zmq_topic_receiver.c | 45 ++--
.../v1/src/pubsub_zmq_topic_sender.c | 232 +++++++++---------
bundles/pubsub/pubsub_admin_zmq/v2/CMakeLists.txt | 2 +-
.../v2/src/pubsub_zmq_topic_receiver.c | 22 +-
.../v2/src/pubsub_zmq_topic_sender.c | 7 +-
bundles/pubsub/pubsub_discovery/CMakeLists.txt | 2 +-
.../pubsub_protocol_wire_v1/CMakeLists.txt | 2 +-
.../pubsub_protocol_wire_v2/CMakeLists.txt | 2 +-
.../pubsub_serializer_avrobin/CMakeLists.txt | 2 +-
.../pubsub/pubsub_serializer_json/CMakeLists.txt | 2 +-
.../pubsub/pubsub_topology_manager/CMakeLists.txt | 2 +-
.../src/pubsub_topology_manager.c | 9 +-
bundles/shell/remote_shell/CMakeLists.txt | 1 +
bundles/shell/shell/CMakeLists.txt | 2 +
bundles/shell/shell_bonjour/CMakeLists.txt | 1 +
bundles/shell/shell_tui/CMakeLists.txt | 1 +
bundles/shell/shell_wui/CMakeLists.txt | 1 +
cmake/AddGTest.cmake | 2 +-
cmake/CelixConfig.cmake | 11 +
cmake/cmake_celix/BundlePackaging.cmake | 109 ++++-----
cmake/cmake_celix/Generic.cmake | 13 +-
documents/cmake_commands/README.md | 28 +++
47 files changed, 896 insertions(+), 726 deletions(-)