You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by is...@apache.org on 2022/09/30 09:18:35 UTC

[ignite-3] branch main updated (6aba85c0e5 -> 2449ad8c60)

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

isapego pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


    from 6aba85c0e5 IGNITE-17763 Use retry policy when connecting default channel (#1135)
     add 2449ad8c60 IGNITE-17696 Provide initial C++ style guide and clang-format (#1088)

No new revisions were added by this update.

Summary of changes:
 .../{client-test/CMakeLists.txt => .clang-format}  |  40 +-
 modules/platforms/cpp/CMakeLists.txt               |  39 +-
 modules/platforms/cpp/StyleGuide.md                | 145 ++++
 .../platforms/cpp/client-test/src/gtest_logger.h   |  21 +-
 .../cpp/client-test/src/ignite_client_test.cpp     |  56 +-
 modules/platforms/cpp/client-test/src/main.cpp     |  11 +-
 .../cpp/client/include/ignite/ignite_client.h      |  33 +-
 .../include/ignite/ignite_client_configuration.h   |  33 +-
 .../cpp/client/include/ignite/ignite_logger.h      |  14 +-
 .../cpp/client/include/ignite/table/table.h        |  33 +-
 .../cpp/client/include/ignite/table/tables.h       |  30 +-
 .../platforms/cpp/client/src/client_operation.h    |   9 +-
 .../cpp/client/src/cluster_connection.cpp          |  67 +-
 .../platforms/cpp/client/src/cluster_connection.h  |  63 +-
 modules/platforms/cpp/client/src/ignite_client.cpp |  34 +-
 .../platforms/cpp/client/src/ignite_client_impl.h  |  44 +-
 .../platforms/cpp/client/src/node_connection.cpp   |  61 +-
 modules/platforms/cpp/client/src/node_connection.h |  47 +-
 .../platforms/cpp/client/src/protocol_context.h    |  15 +-
 .../platforms/cpp/client/src/protocol_version.h    |  42 +-
 .../platforms/cpp/client/src/response_handler.h    |  66 +-
 modules/platforms/cpp/client/src/table/table.cpp   |   7 +-
 .../platforms/cpp/client/src/table/table_impl.h    |  26 +-
 modules/platforms/cpp/client/src/table/tables.cpp  |  14 +-
 .../platforms/cpp/client/src/table/tables_impl.cpp |  20 +-
 .../platforms/cpp/client/src/table/tables_impl.h   |  16 +-
 modules/platforms/cpp/common/CMakeLists.txt        |  13 +-
 modules/platforms/cpp/common/{Bits.h => bits.h}    |  42 +-
 modules/platforms/cpp/common/{Bytes.h => bytes.h}  |  70 +-
 .../platforms/cpp/common/{Config.h => config.h}    |   6 +-
 modules/platforms/cpp/common/factory.h             |  10 +-
 modules/platforms/cpp/common/guid.h                |  55 +-
 modules/platforms/cpp/common/ignite_error.h        |  63 +-
 modules/platforms/cpp/common/ignite_result.h       | 199 +++---
 .../cpp/common/{Platform.h => platform.h}          |   8 +-
 modules/platforms/cpp/common/{Types.h => types.h}  |  16 +-
 modules/platforms/cpp/common/utils.h               |  13 +-
 modules/platforms/cpp/common/{Uuid.h => uuid.h}    |  26 +-
 .../include/ignite/network/async_client_pool.h     |  10 +-
 .../network/include/ignite/network/async_handler.h |  16 +-
 .../cpp/network/include/ignite/network/codec.h     |  16 +-
 .../include/ignite/network/codec_data_filter.h     |  30 +-
 .../network/include/ignite/network/data_buffer.h   |  61 +-
 .../network/include/ignite/network/data_filter.h   |  33 +-
 .../include/ignite/network/data_filter_adapter.h   |  41 +-
 .../cpp/network/include/ignite/network/data_sink.h |  10 +-
 .../cpp/network/include/ignite/network/end_point.h |  32 +-
 .../include/ignite/network/length_prefix_codec.h   |  26 +-
 .../cpp/network/include/ignite/network/network.h   |   3 +-
 .../cpp/network/include/ignite/network/tcp_range.h |  41 +-
 .../os/linux/src/network/connecting_context.cpp    |  42 +-
 .../os/linux/src/network/connecting_context.h      |  16 +-
 .../os/linux/src/network/linux_async_client.cpp    |  71 +-
 .../os/linux/src/network/linux_async_client.h      |  52 +-
 .../linux/src/network/linux_async_client_pool.cpp  |  85 +--
 .../os/linux/src/network/linux_async_client_pool.h |  29 +-
 .../src/network/linux_async_worker_thread.cpp      | 155 ++---
 .../linux/src/network/linux_async_worker_thread.h  |  28 +-
 .../cpp/network/os/linux/src/network/sockets.cpp   |  47 +-
 .../cpp/network/os/linux/src/network/sockets.h     |   3 +-
 .../cpp/network/os/linux/src/network/utils.cpp     |  13 +-
 .../cpp/network/os/win/src/network/sockets.cpp     |  84 +--
 .../cpp/network/os/win/src/network/sockets.h       |   5 +-
 .../cpp/network/os/win/src/network/utils.cpp       |  16 +-
 .../os/win/src/network/win_async_client.cpp        |  66 +-
 .../network/os/win/src/network/win_async_client.h  |  59 +-
 .../os/win/src/network/win_async_client_pool.cpp   |  99 ++-
 .../os/win/src/network/win_async_client_pool.h     |  34 +-
 .../src/network/win_async_connecting_thread.cpp    | 103 ++-
 .../win/src/network/win_async_connecting_thread.h  |  18 +-
 .../os/win/src/network/win_async_worker_thread.cpp |  57 +-
 .../os/win/src/network/win_async_worker_thread.h   |  10 +-
 .../src/network/async_client_pool_adapter.cpp      |  33 +-
 .../src/network/async_client_pool_adapter.h        |  12 +-
 .../cpp/network/src/network/codec_data_filter.cpp  |  30 +-
 .../network/src/network/error_handling_filter.cpp  |  55 +-
 .../network/src/network/error_handling_filter.h    |  16 +-
 .../network/src/network/length_prefix_codec.cpp    |  32 +-
 .../platforms/cpp/network/src/network/network.cpp  |  18 +-
 .../cpp/network/src/network/tcp_range.cpp          |  18 +-
 modules/platforms/cpp/network/src/network/utils.h  |  30 +-
 .../include/ignite/protocol/buffer_adapter.h       |  25 +-
 .../include/ignite/protocol/extension_types.h      |   6 +-
 .../cpp/protocol/include/ignite/protocol/reader.h  |  52 +-
 .../cpp/protocol/include/ignite/protocol/utils.h   |  79 +--
 .../cpp/protocol/include/ignite/protocol/writer.h  |  58 +-
 .../platforms/cpp/protocol/src/buffer_adapter.cpp  |   5 +-
 modules/platforms/cpp/protocol/src/reader.cpp      |  31 +-
 modules/platforms/cpp/protocol/src/utils.cpp       |  11 +-
 modules/platforms/cpp/protocol/src/writer.cpp      |   9 +-
 .../platforms/cpp/schema/BinaryTupleBuilder.cpp    |  32 +-
 modules/platforms/cpp/schema/BinaryTupleBuilder.h  |  39 +-
 modules/platforms/cpp/schema/BinaryTupleHeader.h   |  12 +-
 modules/platforms/cpp/schema/BinaryTupleParser.cpp |  30 +-
 modules/platforms/cpp/schema/BinaryTupleParser.h   |  26 +-
 modules/platforms/cpp/schema/BinaryTupleSchema.h   |  10 +-
 modules/platforms/cpp/schema/DataType.h            |   2 +-
 .../cpp/test-common/include/cmd_process.h          |   9 +-
 .../cpp/test-common/include/ignite_runner.h        |   6 +-
 .../platforms/cpp/test-common/include/test_utils.h |   5 +-
 .../cpp/test-common/src/ignite_runner.cpp          |  31 +-
 .../cpp/test-common/src/linux/linux_process.h      |  40 +-
 modules/platforms/cpp/test-common/src/process.cpp  |  11 +-
 .../platforms/cpp/test-common/src/test_utils.cpp   |  27 +-
 .../cpp/test-common/src/win/win_process.h          |  49 +-
 modules/platforms/cpp/tests/testBits.cpp           | 772 ++++++++++-----------
 modules/platforms/cpp/tests/testBytes.cpp          |  78 +--
 modules/platforms/cpp/tests/testUuid.cpp           |  12 +-
 108 files changed, 2040 insertions(+), 2589 deletions(-)
 copy modules/platforms/cpp/{client-test/CMakeLists.txt => .clang-format} (60%)
 create mode 100644 modules/platforms/cpp/StyleGuide.md
 rename modules/platforms/cpp/common/{Bits.h => bits.h} (81%)
 rename modules/platforms/cpp/common/{Bytes.h => bytes.h} (85%)
 rename modules/platforms/cpp/common/{Config.h => config.h} (90%)
 rename modules/platforms/cpp/common/{Platform.h => platform.h} (90%)
 rename modules/platforms/cpp/common/{Types.h => types.h} (76%)
 rename modules/platforms/cpp/common/{Uuid.h => uuid.h} (90%)