You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2019/08/22 08:07:32 UTC

[plc4x] branch featule/kafka-connect-refactoring updated (548d772 -> 639c5e8)

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

cdutz pushed a change to branch featule/kafka-connect-refactoring
in repository https://gitbox.apache.org/repos/asf/plc4x.git.


    from 548d772  - Got a first working scraper-based Kafka Connect Source working
     add 28ece01  - Fix some more versions to managed versions
     add f9163eb  - Fix dependencyVersion problems
     add 2055f26  - Fix dependencyVersion problems
     add 1983930  - Added a "rules" element to make the plugin happy on some maven versions.
     add a9669a0  Raw Socket works now reasonaly well, I think.
     add 91b4812  Cherry Picked some of the changes regarding Raw-Sockets: Raw Socket works now reasonaly well, I think.
     add e61badf  Cherry Picked some of the changes regarding Raw-Sockets: Raw Socket works now reasonaly well, I think.
     add 8ea7c12  Tried to make the test run on the nodes without "en0" device by going through the list of devices looking for the loopback device and using this.
     add 3f05250  - Continued fine-tuning the raw sockets.
     add aefbd4f  - Fixed things I broke :-}
     new 639c5e8  Merge branches 'develop' and 'featule/kafka-connect-refactoring' of https://gitbox.apache.org/repos/asf/plc4x into featule/kafka-connect-refactoring

The 1 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:
 plc4j/examples/hello-cloud-azure/pom.xml           |  16 ++
 plc4j/examples/hello-connectivity-kafka/pom.xml    |  32 ++-
 plc4j/examples/pom.xml                             |   8 +
 plc4j/integrations/apache-karaf/pom.xml            |  20 ++
 plc4j/protocols/delta-v/pom.xml                    |  15 ++
 plc4j/protocols/driver-bases/raw-socket/pom.xml    |  11 +-
 .../base/connection/RawSocketChannelFactory.java   |  61 +++--
 .../java/base/connection/SerialChannelFactory.java |   9 +-
 .../base/connection/TcpSocketChannelFactory.java   |   3 +-
 plc4j/utils/raw-sockets/pom.xml                    |   8 +
 .../rawsockets/{ => attic}/RawEthernetSocket.java  |   3 +-
 .../utils/rawsockets/{ => attic}/RawIpSocket.java  |  25 +-
 .../rawsockets/{ => attic}/RawSocketListener.java  |   2 +-
 .../utils/rawsockets/netty/RawSocketAddress.java   |  22 +-
 .../utils/rawsockets/netty/RawSocketChannel.java   | 276 +++++++++++++++++----
 ...wSocketAddress.java => RawSocketIpAddress.java} |  26 +-
 .../rawsockets/{ => attic}/RawIpSocketTest.java    |   5 +-
 .../rawsockets/netty/RawSocketChannelTest.java     | 104 ++++++++
 pom.xml                                            |  68 +++--
 19 files changed, 571 insertions(+), 143 deletions(-)
 rename plc4j/utils/raw-sockets/src/main/java/org/apache/plc4x/java/utils/rawsockets/{ => attic}/RawEthernetSocket.java (98%)
 rename plc4j/utils/raw-sockets/src/main/java/org/apache/plc4x/java/utils/rawsockets/{ => attic}/RawIpSocket.java (97%)
 rename plc4j/utils/raw-sockets/src/main/java/org/apache/plc4x/java/utils/rawsockets/{ => attic}/RawSocketListener.java (93%)
 copy plc4j/utils/raw-sockets/src/main/java/org/apache/plc4x/java/utils/rawsockets/netty/{RawSocketAddress.java => RawSocketIpAddress.java} (63%)
 rename plc4j/utils/raw-sockets/src/test/java/org/apache/plc4x/java/utils/rawsockets/{ => attic}/RawIpSocketTest.java (93%)
 create mode 100644 plc4j/utils/raw-sockets/src/test/java/org/apache/plc4x/java/utils/rawsockets/netty/RawSocketChannelTest.java


[plc4x] 01/01: Merge branches 'develop' and 'featule/kafka-connect-refactoring' of https://gitbox.apache.org/repos/asf/plc4x into featule/kafka-connect-refactoring

Posted by cd...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch featule/kafka-connect-refactoring
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 639c5e8090ceec4ac4d7024eed99e8c63f614868
Merge: 548d772 aefbd4f
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Thu Aug 22 09:49:08 2019 +0200

    Merge branches 'develop' and 'featule/kafka-connect-refactoring' of https://gitbox.apache.org/repos/asf/plc4x into featule/kafka-connect-refactoring

 plc4j/examples/hello-cloud-azure/pom.xml           |  16 ++
 plc4j/examples/hello-connectivity-kafka/pom.xml    |  32 ++-
 plc4j/examples/pom.xml                             |   8 +
 plc4j/integrations/apache-karaf/pom.xml            |  20 ++
 plc4j/protocols/delta-v/pom.xml                    |  15 ++
 plc4j/protocols/driver-bases/raw-socket/pom.xml    |  11 +-
 .../base/connection/RawSocketChannelFactory.java   |  61 +++--
 .../java/base/connection/SerialChannelFactory.java |   9 +-
 .../base/connection/TcpSocketChannelFactory.java   |   3 +-
 plc4j/utils/raw-sockets/pom.xml                    |   8 +
 .../rawsockets/{ => attic}/RawEthernetSocket.java  |   3 +-
 .../utils/rawsockets/{ => attic}/RawIpSocket.java  |  25 +-
 .../rawsockets/{ => attic}/RawSocketListener.java  |   2 +-
 .../utils/rawsockets/netty/RawSocketAddress.java   |  22 +-
 .../utils/rawsockets/netty/RawSocketChannel.java   | 276 +++++++++++++++++----
 ...wSocketAddress.java => RawSocketIpAddress.java} |  26 +-
 .../rawsockets/{ => attic}/RawIpSocketTest.java    |   5 +-
 .../rawsockets/netty/RawSocketChannelTest.java     | 104 ++++++++
 pom.xml                                            |  68 +++--
 19 files changed, 571 insertions(+), 143 deletions(-)