You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2019/11/25 21:21:22 UTC

[celix] branch develop updated (e7d0b65 -> a2ca54a)

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

pnoltes pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/celix.git.


    from e7d0b65  Fixed coverity issues
     new 2a556ae  Avro Bin Serializer
     new 0e00a43  To get rid off warnings.
     new 1420216  Change for the Mac.
     new a2ca54a  Merge pull request #126 from rwalraven343/feature/serialization-test

The 1788 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/pubsub/CMakeLists.txt                      |    1 +
 .../pubsub_serializer_avrobin}/CMakeLists.txt      |   36 +-
 .../src/ps_avrobin_serializer_activator.c          |   58 +
 .../src/pubsub_avrobin_serializer_impl.c}          |  227 ++--
 .../src/pubsub_avrobin_serializer_impl.h           |   40 +
 libs/dfi/CMakeLists.txt                            |    2 +
 libs/dfi/include/avrobin_serializer.h              |   35 +
 libs/dfi/src/avrobin_serializer.c                  | 1394 ++++++++++++++++++++
 libs/dfi/test/avrobin_serialization_tests.cpp      |  604 +++++++++
 9 files changed, 2265 insertions(+), 132 deletions(-)
 copy {examples/celix-examples/http_example => bundles/pubsub/pubsub_serializer_avrobin}/CMakeLists.txt (50%)
 create mode 100644 bundles/pubsub/pubsub_serializer_avrobin/src/ps_avrobin_serializer_activator.c
 copy bundles/pubsub/{pubsub_serializer_json/src/pubsub_serializer_impl.c => pubsub_serializer_avrobin/src/pubsub_avrobin_serializer_impl.c} (63%)
 create mode 100644 bundles/pubsub/pubsub_serializer_avrobin/src/pubsub_avrobin_serializer_impl.h
 create mode 100644 libs/dfi/include/avrobin_serializer.h
 create mode 100644 libs/dfi/src/avrobin_serializer.c
 create mode 100644 libs/dfi/test/avrobin_serialization_tests.cpp