You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2023/06/14 18:07:34 UTC

[plc4x] branch develop updated (16b47a45fa -> 3297f63ffb)

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

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


    from 16b47a45fa feat(plc4go): always pass context to static helpers
     add 22dbc15944 fix(plc4go): add missing context passing
     add 9cc2445a62 fix(plc4go): Made the Tracer synchronized
     add 3297f63ffb fix(plc4go): fixed several race conditions

No new revisions were added by this update.

Summary of changes:
 plc4go/internal/cbus/Browser_test.go               |   1 +
 plc4go/internal/cbus/Connection.go                 |  14 +-
 plc4go/internal/cbus/Connection_test.go            | 210 +++++++--------
 plc4go/internal/cbus/MessageCodec.go               |  36 +--
 plc4go/internal/cbus/MessageCodec_plc4xgen.go      |  16 +-
 plc4go/internal/cbus/MessageCodec_test.go          | 288 ++++++++++-----------
 plc4go/internal/cbus/Reader.go                     |   1 +
 plc4go/internal/cbus/Reader_test.go                | 119 ++++-----
 plc4go/internal/simulated/Reader_test.go           |   3 +-
 plc4go/internal/simulated/Writer_test.go           |   3 +-
 plc4go/pkg/api/cache/PlcConnectionCache_test.go    |   8 +-
 plc4go/pom.xml                                     |   1 +
 .../protocols/cbus/readwrite/model/StaticHelper.go |   2 +-
 plc4go/spi/default/DefaultCodec.go                 |  94 ++++---
 plc4go/spi/default/DefaultCodec_test.go            | 100 ++++---
 plc4go/spi/default/DefaultConnection.go            |   8 +-
 plc4go/spi/default/DefaultConnection_test.go       |  66 ++---
 plc4go/spi/default/defaultCodec_plc4xgen.go        |  12 +-
 plc4go/spi/default/defaultConnection_plc4xgen.go   |   2 +-
 plc4go/spi/tracer/Tracer.go                        |  34 ++-
 plc4go/spi/tracer/Tracer_test.go                   |  62 +++--
 plc4go/spi/transactions/RequestTransaction.go      |   2 +
 .../spi/transactions/RequestTransactionManager.go  |  66 +++--
 plc4go/spi/transactions/RequestTransaction_test.go |  32 +--
 plc4go/spi/transports/pcap/Transport.go            |  43 +--
 plc4go/spi/transports/pcap/Transport_test.go       |  28 +-
 plc4go/spi/transports/test/Transport.go            |  44 +++-
 plc4go/spi/transports/test/Transport_test.go       |   3 +-
 plc4go/tools/plc4xgenerator/gen.go                 |  14 +
 29 files changed, 697 insertions(+), 615 deletions(-)