blob: 6df25927fb76f10fbb1f59242e5368cc9af5028a [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.
*/
#pragma once
#include <atomic>
#include <vector>
#include "Protocol.h"
#include "apache/rocketmq/v2/definition.pb.h"
ROCKETMQ_NAMESPACE_BEGIN
class TopicAssignment {
public:
explicit TopicAssignment(std::vector<rmq::Assignment>&& assignments) : assignment_list_(std::move(assignments)) {
std::sort(assignment_list_.begin(), assignment_list_.end(),
[](const rmq::Assignment& lhs, const rmq::Assignment& rhs) { return lhs < rhs; });
}
explicit TopicAssignment(const QueryAssignmentResponse& response);
~TopicAssignment() = default;
const std::vector<rmq::Assignment>& assignmentList() const {
return assignment_list_;
}
static unsigned int getAndIncreaseQueryWhichBroker() {
return ++query_which_broker_;
}
private:
/**
* Once it is set, it will be immutable.
*/
std::vector<rmq::Assignment> assignment_list_;
thread_local static uint32_t query_which_broker_;
};
bool operator==(const TopicAssignment& lhs, const TopicAssignment& rhs);
using TopicAssignmentPtr = std::shared_ptr<TopicAssignment>;
ROCKETMQ_NAMESPACE_END