blob: e6682cb903ffe1d2cd177eceb2837270a09908b0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "TopicAssignmentInfo.h"
#include "rocketmq/RocketMQ.h"
#include "spdlog/spdlog.h"
#include "google/rpc/code.pb.h"
ROCKETMQ_NAMESPACE_BEGIN
thread_local uint32_t TopicAssignment::query_which_broker_ = 0;
TopicAssignment::TopicAssignment(const QueryAssignmentResponse& response) : debug_string_(response.DebugString()) {
if (response.common().status().code() != google::rpc::Code::OK) {
SPDLOG_WARN("QueryAssignmentResponse#code is not SUCCESS. Keep assignment info intact. QueryAssignmentResponse: {}",
response.DebugString());
return;
}
for (const auto& item : response.assignments()) {
const rmq::Partition& partition = item.partition();
if (rmq::Permission::READ != partition.permission() && rmq::Permission::READ_WRITE != partition.permission()) {
continue;
}
assert(partition.has_broker());
const auto& broker = partition.broker();
if (broker.endpoints().addresses().empty()) {
SPDLOG_WARN("Broker[{}] is not addressable", broker.DebugString());
continue;
}
MQMessageQueue message_queue(partition.topic().name(), partition.broker().name(), partition.id());
std::string service_address;
for (const auto& address : broker.endpoints().addresses()) {
if (service_address.empty()) {
switch (broker.endpoints().scheme()) {
case rmq::AddressScheme::IPv4:
service_address.append("ipv4:");
break;
case rmq::AddressScheme::IPv6:
service_address.append("ipv6:");
break;
case rmq::AddressScheme::DOMAIN_NAME:
service_address.append("dns:");
break;
default:
SPDLOG_WARN("Unsupported gRPC naming scheme");
break;
}
} else {
service_address.append(",");
}
service_address.append(address.host()).append(":").append(std::to_string(address.port()));
if (rmq::AddressScheme::DOMAIN_NAME == broker.endpoints().scheme()) {
break;
}
}
message_queue.serviceAddress(service_address);
assignment_list_.emplace_back(Assignment(message_queue));
}
std::sort(assignment_list_.begin(), assignment_list_.end());
}
ROCKETMQ_NAMESPACE_END