blob: f2017a923e067dfc718859556199e143557b58d1 [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.
*/
package org.apache.servicecomb.router.model;
import java.util.Map;
/**
* @Author GuoYl123
* @Date 2019/10/17
**/
public class RouteItem implements Comparable<RouteItem> {
private Integer weight;
/**
* for load balance
*/
private Integer currentWeight = 0;
private Map<String, String> tags;
private TagItem tagitem;
public void initTagItem() {
if (tags != null) {
tagitem = new TagItem(tags);
}
}
public void addCurrentWeight() {
currentWeight += weight;
}
public void reduceCurrentWeight(int total) {
currentWeight -= total;
}
public RouteItem() {
}
public RouteItem(Integer weight, TagItem tags) {
this.weight = weight;
this.tagitem = tags;
}
public Integer getWeight() {
return weight;
}
public void setWeight(Integer weight) {
this.weight = weight;
}
public Integer getCurrentWeight() {
return currentWeight;
}
public void setCurrentWeight(Integer currentWeight) {
this.currentWeight = currentWeight;
}
public Map<String, String> getTags() {
return tags;
}
public void setTags(Map<String, String> tags) {
this.tags = tags;
}
public TagItem getTagitem() {
return tagitem;
}
public void setTagitem(TagItem tagitem) {
this.tagitem = tagitem;
}
@Override
public int compareTo(RouteItem param) {
return Integer.compare(param.weight, this.weight);
}
@Override
public String toString() {
return "RouteItem{" +
"weight=" + weight +
", currentWeight=" + currentWeight +
", tags=" + tags +
", tagitem=" + tagitem +
'}';
}
}