This is an automated email from the ASF dual-hosted git repository.
lizhanhui pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-cpp.git.
from 4bc0e35 Update main.yml
new 6984b94 Add utility to fix file header copyright comment
new a0db0cb BugFix: Add copyright file header comment
The 2 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:
BUILD | 0
BUILD.bazel | 16 ++++++
api/BUILD.bazel | 16 ++++++
api/rocketmq/AdminServer.h | 16 ++++++
api/rocketmq/AsyncCallback.h | 16 ++++++
api/rocketmq/ConsumeType.h | 16 ++++++
api/rocketmq/Credentials.h | 16 ++++++
api/rocketmq/CredentialsProvider.h | 16 ++++++
api/rocketmq/DefaultMQProducer.h | 16 ++++++
api/rocketmq/DefaultMQPullConsumer.h | 16 ++++++
api/rocketmq/DefaultMQPushConsumer.h | 16 ++++++
api/rocketmq/ErrorCategory.h | 16 ++++++
api/rocketmq/ErrorCode.h | 16 ++++++
api/rocketmq/Executor.h | 16 ++++++
api/rocketmq/ExpressionType.h | 16 ++++++
api/rocketmq/LocalTransactionStateChecker.h | 16 ++++++
api/rocketmq/Logger.h | 16 ++++++
api/rocketmq/MQClientException.h | 16 ++++++
api/rocketmq/MQMessage.h | 16 ++++++
api/rocketmq/MQMessageExt.h | 16 ++++++
api/rocketmq/MQMessageQueue.h | 16 ++++++
api/rocketmq/MQSelector.h | 16 ++++++
api/rocketmq/MessageListener.h | 16 ++++++
api/rocketmq/MessageModel.h | 16 ++++++
api/rocketmq/MessageType.h | 16 ++++++
api/rocketmq/OffsetStore.h | 16 ++++++
api/rocketmq/PullResult.h | 16 ++++++
api/rocketmq/RocketMQ.h | 16 ++++++
api/rocketmq/SendResult.h | 16 ++++++
api/rocketmq/State.h | 16 ++++++
api/rocketmq/Transaction.h | 16 ++++++
bazel/BUILD | 0
bazel/BUILD.bazel | 16 ++++++
example/rocketmq/BUILD.bazel | 16 ++++++
example/rocketmq/BenchmarkPushConsumer.cpp | 17 ++++++-
example/rocketmq/ExampleAsyncProducer.cpp | 17 ++++++-
example/rocketmq/ExampleBroadcastPushConsumer.cpp | 17 ++++++-
example/rocketmq/ExampleProducer.cpp | 17 ++++++-
example/rocketmq/ExamplePullConsumer.cpp | 17 ++++++-
example/rocketmq/ExamplePushConsumer.cpp | 17 ++++++-
example/rocketmq/ExampleTransactionProducer.cpp | 17 ++++++-
.../rocketmq/PushConsumerWithCustomExecutor.cpp | 17 ++++++-
example/rocketmq/PushConsumerWithThrottle.cpp | 17 ++++++-
example/rocketmq/SqlConsumer.cpp | 17 ++++++-
example/rocketmq/SqlProducer.cpp | 17 ++++++-
proto/BUILD.bazel | 16 ++++++
src/main/cpp/admin/AdminClient.cpp | 16 ++++++
src/main/cpp/admin/AdminFacade.cpp | 16 ++++++
src/main/cpp/admin/AdminServerImpl.cpp | 16 ++++++
src/main/cpp/admin/AdminServiceImpl.cpp | 16 ++++++
src/main/cpp/admin/BUILD.bazel | 16 ++++++
src/main/cpp/admin/include/AdminClient.h | 16 ++++++
src/main/cpp/admin/include/AdminServerImpl.h | 16 ++++++
src/main/cpp/admin/include/AdminServiceImpl.h | 16 ++++++
src/main/cpp/admin/include/ServerCall.h | 16 ++++++
src/main/cpp/base/BUILD.bazel | 16 ++++++
src/main/cpp/base/ErrorCategory.cpp | 16 ++++++
src/main/cpp/base/ErrorCode.cpp | 16 ++++++
src/main/cpp/base/HostInfo.cpp | 16 ++++++
src/main/cpp/base/HttpClientImpl.cpp | 16 ++++++
src/main/cpp/base/MQMessage.cpp | 16 ++++++
src/main/cpp/base/MQMessageExt.cpp | 16 ++++++
src/main/cpp/base/MessageAccessor.cpp | 16 ++++++
src/main/cpp/base/MetadataConstants.cpp | 16 ++++++
src/main/cpp/base/MixAll.cpp | 16 ++++++
src/main/cpp/base/Protocol.cpp | 16 ++++++
src/main/cpp/base/RateLimiter.cpp | 16 ++++++
src/main/cpp/base/ThreadPoolImpl.cpp | 16 ++++++
src/main/cpp/base/TopAddressing.cpp | 16 ++++++
src/main/cpp/base/UniqueIdGenerator.cpp | 16 ++++++
src/main/cpp/base/UtilAll.cpp | 16 ++++++
src/main/cpp/base/include/DigestType.h | 16 ++++++
src/main/cpp/base/include/Encoding.h | 16 ++++++
src/main/cpp/base/include/Histogram.h | 16 ++++++
src/main/cpp/base/include/HostInfo.h | 16 ++++++
src/main/cpp/base/include/HttpClient.h | 16 ++++++
src/main/cpp/base/include/HttpClientImpl.h | 16 ++++++
src/main/cpp/base/include/InvocationContext.h | 16 ++++++
src/main/cpp/base/include/MessageAccessor.h | 16 ++++++
src/main/cpp/base/include/MessageImpl.h | 16 ++++++
src/main/cpp/base/include/MetadataConstants.h | 16 ++++++
src/main/cpp/base/include/MixAll.h | 16 ++++++
src/main/cpp/base/include/Protocol.h | 16 ++++++
src/main/cpp/base/include/RateLimiter.h | 16 ++++++
src/main/cpp/base/include/ThreadPool.h | 16 ++++++
src/main/cpp/base/include/ThreadPoolImpl.h | 16 ++++++
src/main/cpp/base/include/TopAddressing.h | 16 ++++++
src/main/cpp/base/include/UniqueIdGenerator.h | 16 ++++++
src/main/cpp/base/include/UtilAll.h | 16 ++++++
src/main/cpp/base/mocks/BUILD.bazel | 16 ++++++
src/main/cpp/base/mocks/include/HttpClientMock.h | 16 ++++++
.../cpp/base/mocks/include/MessageListenerMock.h | 16 ++++++
src/main/cpp/client/BUILD.bazel | 16 ++++++
src/main/cpp/client/ClientConfigImpl.cpp | 16 ++++++
src/main/cpp/client/ClientManagerFactory.cpp | 16 ++++++
src/main/cpp/client/ClientManagerImpl.cpp | 16 ++++++
src/main/cpp/client/LogInterceptor.cpp | 16 ++++++
src/main/cpp/client/LogInterceptorFactory.cpp | 16 ++++++
src/main/cpp/client/RpcClientImpl.cpp | 16 ++++++
src/main/cpp/client/Signature.cpp | 16 ++++++
src/main/cpp/client/TlsHelper.cpp | 16 ++++++
src/main/cpp/client/TopicAssignmentInfo.cpp | 16 ++++++
src/main/cpp/client/TopicPublishInfo.cpp | 16 ++++++
src/main/cpp/client/TracingUtility.cpp | 16 ++++++
src/main/cpp/client/include/Assignment.h | 16 ++++++
src/main/cpp/client/include/Broker.h | 16 ++++++
src/main/cpp/client/include/Client.h | 16 ++++++
src/main/cpp/client/include/ClientConfig.h | 16 ++++++
src/main/cpp/client/include/ClientConfigImpl.h | 16 ++++++
src/main/cpp/client/include/ClientManager.h | 16 ++++++
src/main/cpp/client/include/ClientManagerFactory.h | 16 ++++++
src/main/cpp/client/include/ClientManagerImpl.h | 16 ++++++
src/main/cpp/client/include/ConsumeMessageType.h | 16 ++++++
.../cpp/client/include/HeartbeatDataCallback.h | 16 ++++++
.../cpp/client/include/InterceptorContinuation.h | 16 ++++++
src/main/cpp/client/include/LogInterceptor.h | 16 ++++++
.../cpp/client/include/LogInterceptorFactory.h | 16 ++++++
src/main/cpp/client/include/OpenSSLCompatible.h | 16 ++++++
.../cpp/client/include/OrphanTransactionCallback.h | 16 ++++++
src/main/cpp/client/include/Partition.h | 16 ++++++
.../cpp/client/include/ReceiveMessageCallback.h | 16 ++++++
src/main/cpp/client/include/ReceiveMessageResult.h | 16 ++++++
src/main/cpp/client/include/RpcClient.h | 16 ++++++
src/main/cpp/client/include/RpcClientImpl.h | 16 ++++++
src/main/cpp/client/include/SendMessageContext.h | 16 ++++++
src/main/cpp/client/include/ServiceAddress.h | 16 ++++++
src/main/cpp/client/include/Signature.h | 16 ++++++
src/main/cpp/client/include/TlsHelper.h | 16 ++++++
src/main/cpp/client/include/Topic.h | 16 ++++++
src/main/cpp/client/include/TopicAssignmentInfo.h | 16 ++++++
src/main/cpp/client/include/TopicPublishInfo.h | 16 ++++++
.../cpp/client/include/TopicRouteChangeCallback.h | 16 ++++++
src/main/cpp/client/include/TopicRouteData.h | 16 ++++++
src/main/cpp/client/mocks/BUILD.bazel | 16 ++++++
src/main/cpp/client/mocks/RpcClientMock.cpp | 16 ++++++
.../cpp/client/mocks/include/ClientConfigMock.h | 16 ++++++
.../cpp/client/mocks/include/ClientManagerMock.h | 16 ++++++
src/main/cpp/client/mocks/include/ClientMock.h | 16 ++++++
.../mocks/include/ReceiveMessageCallbackMock.h | 16 ++++++
src/main/cpp/client/mocks/include/RpcClientMock.h | 16 ++++++
src/main/cpp/concurrent/BUILD.bazel | 16 ++++++
src/main/cpp/concurrent/CountdownLatch.cpp | 16 ++++++
src/main/cpp/concurrent/include/CountdownLatch.h | 16 ++++++
src/main/cpp/log/BUILD.bazel | 16 ++++++
src/main/cpp/log/LoggerImpl.cpp | 16 ++++++
src/main/cpp/log/include/LoggerImpl.h | 16 ++++++
src/main/cpp/remoting/BUILD.bazel | 16 ++++++
src/main/cpp/remoting/BrokerData.cpp | 16 ++++++
src/main/cpp/remoting/QueryRouteRequestHeader.cpp | 16 ++++++
src/main/cpp/remoting/QueueData.cpp | 16 ++++++
src/main/cpp/remoting/RemotingCommand.cpp | 16 ++++++
src/main/cpp/remoting/TopicRouteData.cpp | 16 ++++++
src/main/cpp/remoting/include/BrokerData.h | 16 ++++++
.../cpp/remoting/include/CommandCustomHeader.h | 16 ++++++
src/main/cpp/remoting/include/LanguageCode.h | 16 ++++++
.../cpp/remoting/include/QueryRouteRequestHeader.h | 16 ++++++
src/main/cpp/remoting/include/QueueData.h | 16 ++++++
src/main/cpp/remoting/include/RemotingCommand.h | 16 ++++++
.../cpp/remoting/include/RemotingCommandType.h | 16 ++++++
src/main/cpp/remoting/include/RequestCode.h | 16 ++++++
src/main/cpp/remoting/include/ResponseCode.h | 16 ++++++
src/main/cpp/remoting/include/TopicRouteData.h | 16 ++++++
src/main/cpp/remoting/include/Version.h | 16 ++++++
.../cpp/rocketmq/AsyncReceiveMessageCallback.cpp | 16 ++++++
src/main/cpp/rocketmq/AwaitPullCallback.cpp | 16 ++++++
src/main/cpp/rocketmq/BUILD.bazel | 16 ++++++
src/main/cpp/rocketmq/ClientImpl.cpp | 16 ++++++
.../cpp/rocketmq/ConsumeFifoMessageService.cpp | 16 ++++++
.../cpp/rocketmq/ConsumeMessageServiceBase.cpp | 16 ++++++
.../cpp/rocketmq/ConsumeStandardMessageService.cpp | 16 ++++++
src/main/cpp/rocketmq/CredentialsProvider.cpp | 16 ++++++
src/main/cpp/rocketmq/DefaultMQProducer.cpp | 16 ++++++
src/main/cpp/rocketmq/DefaultMQPullConsumer.cpp | 16 ++++++
src/main/cpp/rocketmq/DefaultMQPushConsumer.cpp | 16 ++++++
.../cpp/rocketmq/DynamicNameServerResolver.cpp | 16 ++++++
src/main/cpp/rocketmq/FilterExpression.cpp | 16 ++++++
.../cpp/rocketmq/MessageGroupQueueSelector.cpp | 16 ++++++
src/main/cpp/rocketmq/ProcessQueueImpl.cpp | 16 ++++++
src/main/cpp/rocketmq/ProducerImpl.cpp | 16 ++++++
src/main/cpp/rocketmq/PullConsumerImpl.cpp | 16 ++++++
src/main/cpp/rocketmq/PushConsumerImpl.cpp | 16 ++++++
src/main/cpp/rocketmq/SendCallbacks.cpp | 16 ++++++
src/main/cpp/rocketmq/StaticNameServerResolver.cpp | 16 ++++++
src/main/cpp/rocketmq/TransactionImpl.cpp | 16 ++++++
.../rocketmq/include/AsyncReceiveMessageCallback.h | 16 ++++++
src/main/cpp/rocketmq/include/AwaitPullCallback.h | 16 ++++++
src/main/cpp/rocketmq/include/ClientImpl.h | 16 ++++++
.../cpp/rocketmq/include/ClientResourceBundle.h | 16 ++++++
.../rocketmq/include/ConsumeFifoMessageService.h | 16 ++++++
.../cpp/rocketmq/include/ConsumeMessageService.h | 16 ++++++
.../rocketmq/include/ConsumeMessageServiceBase.h | 16 ++++++
.../include/ConsumeStandardMessageService.h | 16 ++++++
src/main/cpp/rocketmq/include/Consumer.h | 16 ++++++
.../rocketmq/include/DynamicNameServerResolver.h | 16 ++++++
src/main/cpp/rocketmq/include/FilterExpression.h | 16 ++++++
.../rocketmq/include/MessageGroupQueueSelector.h | 16 ++++++
src/main/cpp/rocketmq/include/NameServerResolver.h | 16 ++++++
src/main/cpp/rocketmq/include/ProcessQueue.h | 16 ++++++
src/main/cpp/rocketmq/include/ProcessQueueImpl.h | 16 ++++++
src/main/cpp/rocketmq/include/ProducerImpl.h | 16 ++++++
src/main/cpp/rocketmq/include/PullConsumerImpl.h | 16 ++++++
src/main/cpp/rocketmq/include/PushConsumer.h | 16 ++++++
src/main/cpp/rocketmq/include/PushConsumerImpl.h | 16 ++++++
src/main/cpp/rocketmq/include/SendCallbacks.h | 16 ++++++
.../rocketmq/include/StaticNameServerResolver.h | 16 ++++++
.../rocketmq/include/StsCredentialsProviderImpl.h | 16 ++++++
src/main/cpp/rocketmq/include/TransactionImpl.h | 16 ++++++
src/main/cpp/rocketmq/mocks/BUILD.bazel | 16 ++++++
.../mocks/include/ConsumeMessageServiceMock.h | 16 ++++++
src/main/cpp/rocketmq/mocks/include/ConsumerMock.h | 16 ++++++
.../mocks/include/NameServerResolverMock.h | 16 ++++++
.../cpp/rocketmq/mocks/include/ProcessQueueMock.h | 16 ++++++
.../cpp/rocketmq/mocks/include/PushConsumerMock.h | 16 ++++++
src/main/cpp/scheduler/BUILD.bazel | 16 ++++++
src/main/cpp/scheduler/SchedulerImpl.cpp | 16 ++++++
src/main/cpp/scheduler/include/Scheduler.h | 16 ++++++
src/main/cpp/scheduler/include/SchedulerImpl.h | 16 ++++++
src/main/cpp/tracing/exporters/BUILD.bazel | 16 ++++++
src/main/cpp/tracing/exporters/OtlpExporter.cpp | 16 ++++++
.../cpp/tracing/exporters/include/OtlpExporter.h | 16 ++++++
src/test/cpp/benchmark/BUILD.bazel | 16 ++++++
src/test/cpp/benchmark/BenchmarkTest.cpp | 16 ++++++
src/test/cpp/it/BUILD.bazel | 16 ++++++
src/test/cpp/it/RpcClientTest.cpp | 16 ++++++
src/test/cpp/it/TopAddressingTest.cpp | 16 ++++++
src/test/cpp/it/TopicPublishInfoTest.cpp | 16 ++++++
src/test/cpp/ut/BUILD.bazel | 17 +++++++
src/test/cpp/ut/admin/AdminServerTest.cpp | 16 ++++++
src/test/cpp/ut/admin/BUILD.bazel | 16 ++++++
src/test/cpp/ut/api/BUILD.bazel | 16 ++++++
src/test/cpp/ut/api/ErrorCodeTest.cpp | 16 ++++++
src/test/cpp/ut/base/BUILD.bazel | 16 ++++++
src/test/cpp/ut/base/HistogramTest.cpp | 16 ++++++
src/test/cpp/ut/base/HostInfoTest.cpp | 16 ++++++
src/test/cpp/ut/base/HttpClientTest.cpp | 16 ++++++
src/test/cpp/ut/base/InvocationContextTest.cpp | 16 ++++++
src/test/cpp/ut/base/MQMessageExtTest.cpp | 16 ++++++
src/test/cpp/ut/base/MQMessageTest.cpp | 16 ++++++
src/test/cpp/ut/base/MixAllTest.cpp | 16 ++++++
src/test/cpp/ut/base/RateLimiterTest.cpp | 16 ++++++
src/test/cpp/ut/base/ThreadPoolTest.cpp | 16 ++++++
src/test/cpp/ut/base/TopAddressingTest.cpp | 16 ++++++
src/test/cpp/ut/base/UniqueIdGeneratorTest.cpp | 16 ++++++
src/test/cpp/ut/base/UtilAllTest.cpp | 16 ++++++
src/test/cpp/ut/client/BUILD.bazel | 16 ++++++
.../cpp/ut/client/ClientManagerFactoryTest.cpp | 16 ++++++
src/test/cpp/ut/client/ClientManagerTest.cpp | 16 ++++++
src/test/cpp/ut/client/ClientTest.cpp | 16 ++++++
src/test/cpp/ut/client/RpcClientTest.cpp | 16 ++++++
src/test/cpp/ut/client/TlsHelperTest.cpp | 16 ++++++
src/test/cpp/ut/client/TopicAssignmentInfoTest.cpp | 16 ++++++
src/test/cpp/ut/client/TracingUtilityTest.cpp | 16 ++++++
src/test/cpp/ut/concurrent/BUILD.bazel | 16 ++++++
src/test/cpp/ut/concurrent/CountdownLatchTest.cpp | 16 ++++++
src/test/cpp/ut/grpc/BUILD.bazel | 16 ++++++
src/test/cpp/ut/grpc/GrpcThreadPoolTest.cpp | 16 ++++++
src/test/cpp/ut/grpc/GrpcTimer.cpp | 16 ++++++
src/test/cpp/ut/logger/BUILD.bazel | 16 ++++++
src/test/cpp/ut/logger/LoggerTest.cpp | 16 ++++++
src/test/cpp/ut/remoting/BUILD.bazel | 16 ++++++
src/test/cpp/ut/remoting/BrokerDataTest.cpp | 16 ++++++
.../ut/remoting/QueryRouteRequestHeaderTest.cpp | 16 ++++++
src/test/cpp/ut/remoting/QueueDataTest.cpp | 16 ++++++
src/test/cpp/ut/remoting/RemotingCommandTest.cpp | 16 ++++++
src/test/cpp/ut/remoting/TopicRouteDataTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/AwaitPullCallbackTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/BUILD.bazel | 16 ++++++
src/test/cpp/ut/rocketmq/ClientImplTest.cpp | 16 ++++++
.../rocketmq/ConsumeStandardMessageServiceTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/ConsumerTest.cpp | 16 ++++++
.../cpp/ut/rocketmq/CredentialsProviderTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/DefaultMQProducerTest.cpp | 16 ++++++
.../cpp/ut/rocketmq/DefaultMQPushConsumerTest.cpp | 16 ++++++
.../ut/rocketmq/DynamicNameServerResolverTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/ExecutorTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/FilterExpressionTest.cpp | 16 ++++++
.../ut/rocketmq/MessageGroupQueueSelectorTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/MessageTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/ProcessQueueTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/ProducerImplTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/PullConsumerImplTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/PushConsumerImplTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/SendCallbacksTest.cpp | 16 ++++++
.../ut/rocketmq/StaticNameServerResolverTest.cpp | 16 ++++++
.../ut/rocketmq/StsCredentialsProviderImplTest.cpp | 16 ++++++
src/test/cpp/ut/rocketmq/include/MQClientTest.h | 16 ++++++
src/test/cpp/ut/scheduler/BUILD.bazel | 16 ++++++
src/test/cpp/ut/scheduler/SchedulerTest.cpp | 16 ++++++
src/test/cpp/ut/tracing/exporters/BUILD.bazel | 16 ++++++
.../cpp/ut/tracing/exporters/OtlpExportersTest.cpp | 16 ++++++
.../cpp/ut/tracing/exporters/SpanContextTest.cpp | 16 ++++++
third_party/BUILD | 0
third_party/BUILD.bazel | 16 ++++++
tools/copyright.txt | 14 +++++
tools/fix_copyright.py | 59 ++++++++++++++++++++++
295 files changed, 4714 insertions(+), 11 deletions(-)
delete mode 100644 BUILD
create mode 100644 BUILD.bazel
delete mode 100644 bazel/BUILD
create mode 100644 bazel/BUILD.bazel
create mode 100644 src/test/cpp/ut/BUILD.bazel
delete mode 100644 third_party/BUILD
create mode 100644 third_party/BUILD.bazel
create mode 100644 tools/copyright.txt
create mode 100755 tools/fix_copyright.py