
org.apache.rocketmq.remoting.protocol.route.TopicRouteData Maven / Gradle / Ivy
/*
* 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.
*/
/**
* $Id: TopicRouteData.java 1835 2013-05-16 02:00:50Z [email protected] $
*/
package org.apache.rocketmq.remoting.protocol.route;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import org.apache.rocketmq.remoting.protocol.RemotingSerializable;
import org.apache.rocketmq.remoting.protocol.statictopic.TopicQueueMappingInfo;
public class TopicRouteData extends RemotingSerializable {
private String orderTopicConf;
private List queueDatas;
private List brokerDatas;
private HashMap/* Filter Server */> filterServerTable;
//It could be null or empty
private Map topicQueueMappingByBroker;
public TopicRouteData() {
queueDatas = new ArrayList<>();
brokerDatas = new ArrayList<>();
filterServerTable = new HashMap<>();
}
public TopicRouteData(TopicRouteData topicRouteData) {
this.queueDatas = new ArrayList<>();
this.brokerDatas = new ArrayList<>();
this.filterServerTable = new HashMap<>();
this.orderTopicConf = topicRouteData.orderTopicConf;
if (topicRouteData.queueDatas != null) {
this.queueDatas.addAll(topicRouteData.queueDatas);
}
if (topicRouteData.brokerDatas != null) {
this.brokerDatas.addAll(topicRouteData.brokerDatas);
}
if (topicRouteData.filterServerTable != null) {
this.filterServerTable.putAll(topicRouteData.filterServerTable);
}
if (topicRouteData.topicQueueMappingByBroker != null) {
this.topicQueueMappingByBroker = new HashMap<>(topicRouteData.topicQueueMappingByBroker);
}
}
public TopicRouteData cloneTopicRouteData() {
TopicRouteData topicRouteData = new TopicRouteData();
topicRouteData.setQueueDatas(new ArrayList<>());
topicRouteData.setBrokerDatas(new ArrayList<>());
topicRouteData.setFilterServerTable(new HashMap<>());
topicRouteData.setOrderTopicConf(this.orderTopicConf);
topicRouteData.getQueueDatas().addAll(this.queueDatas);
topicRouteData.getBrokerDatas().addAll(this.brokerDatas);
topicRouteData.getFilterServerTable().putAll(this.filterServerTable);
if (this.topicQueueMappingByBroker != null) {
Map cloneMap = new HashMap<>(this.topicQueueMappingByBroker);
topicRouteData.setTopicQueueMappingByBroker(cloneMap);
}
return topicRouteData;
}
public TopicRouteData deepCloneTopicRouteData() {
TopicRouteData topicRouteData = new TopicRouteData();
topicRouteData.setOrderTopicConf(this.orderTopicConf);
for (final QueueData queueData : this.queueDatas) {
topicRouteData.getQueueDatas().add(new QueueData(queueData));
}
for (final BrokerData brokerData : this.brokerDatas) {
topicRouteData.getBrokerDatas().add(new BrokerData(brokerData));
}
for (final Map.Entry> listEntry : this.filterServerTable.entrySet()) {
topicRouteData.getFilterServerTable().put(listEntry.getKey(),
new ArrayList<>(listEntry.getValue()));
}
if (this.topicQueueMappingByBroker != null) {
Map cloneMap = new HashMap<>(this.topicQueueMappingByBroker.size());
for (final Map.Entry entry : this.getTopicQueueMappingByBroker().entrySet()) {
TopicQueueMappingInfo topicQueueMappingInfo = new TopicQueueMappingInfo(entry.getValue().getTopic(), entry.getValue().getTotalQueues(), entry.getValue().getBname(), entry.getValue().getEpoch());
topicQueueMappingInfo.setDirty(entry.getValue().isDirty());
topicQueueMappingInfo.setScope(entry.getValue().getScope());
ConcurrentMap concurrentMap = new ConcurrentHashMap<>(entry.getValue().getCurrIdMap());
topicQueueMappingInfo.setCurrIdMap(concurrentMap);
cloneMap.put(entry.getKey(), topicQueueMappingInfo);
}
topicRouteData.setTopicQueueMappingByBroker(cloneMap);
}
return topicRouteData;
}
public boolean topicRouteDataChanged(TopicRouteData oldData) {
if (oldData == null)
return true;
TopicRouteData old = new TopicRouteData(oldData);
TopicRouteData now = new TopicRouteData(this);
Collections.sort(old.getQueueDatas());
Collections.sort(old.getBrokerDatas());
Collections.sort(now.getQueueDatas());
Collections.sort(now.getBrokerDatas());
return !old.equals(now);
}
public List getQueueDatas() {
return queueDatas;
}
public void setQueueDatas(List queueDatas) {
this.queueDatas = queueDatas;
}
public List getBrokerDatas() {
return brokerDatas;
}
public void setBrokerDatas(List brokerDatas) {
this.brokerDatas = brokerDatas;
}
public HashMap> getFilterServerTable() {
return filterServerTable;
}
public void setFilterServerTable(HashMap> filterServerTable) {
this.filterServerTable = filterServerTable;
}
public String getOrderTopicConf() {
return orderTopicConf;
}
public void setOrderTopicConf(String orderTopicConf) {
this.orderTopicConf = orderTopicConf;
}
public Map getTopicQueueMappingByBroker() {
return topicQueueMappingByBroker;
}
public void setTopicQueueMappingByBroker(Map topicQueueMappingByBroker) {
this.topicQueueMappingByBroker = topicQueueMappingByBroker;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((brokerDatas == null) ? 0 : brokerDatas.hashCode());
result = prime * result + ((orderTopicConf == null) ? 0 : orderTopicConf.hashCode());
result = prime * result + ((queueDatas == null) ? 0 : queueDatas.hashCode());
result = prime * result + ((filterServerTable == null) ? 0 : filterServerTable.hashCode());
result = prime * result + ((topicQueueMappingByBroker == null) ? 0 : topicQueueMappingByBroker.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
TopicRouteData other = (TopicRouteData) obj;
if (brokerDatas == null) {
if (other.brokerDatas != null)
return false;
} else if (!brokerDatas.equals(other.brokerDatas))
return false;
if (orderTopicConf == null) {
if (other.orderTopicConf != null)
return false;
} else if (!orderTopicConf.equals(other.orderTopicConf))
return false;
if (queueDatas == null) {
if (other.queueDatas != null)
return false;
} else if (!queueDatas.equals(other.queueDatas))
return false;
if (filterServerTable == null) {
if (other.filterServerTable != null)
return false;
} else if (!filterServerTable.equals(other.filterServerTable))
return false;
if (topicQueueMappingByBroker == null) {
if (other.topicQueueMappingByBroker != null)
return false;
} else if (!topicQueueMappingByBroker.equals(other.topicQueueMappingByBroker))
return false;
return true;
}
@Override
public String toString() {
return "TopicRouteData [orderTopicConf=" + orderTopicConf + ", queueDatas=" + queueDatas
+ ", brokerDatas=" + brokerDatas + ", filterServerTable=" + filterServerTable + ", topicQueueMappingInfoTable=" + topicQueueMappingByBroker + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy