blob: 22c10a93700fc9c49cb3b5a37e0725a1790b577f [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.geode.management.internal.cli.domain;
import java.io.Serializable;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.apache.geode.cache.DataPolicy;
import org.apache.geode.cache.Region;
import org.apache.geode.cache.Scope;
public class RegionDescriptionPerMember implements Serializable {
private static final long serialVersionUID = 1L;
private int size = 0;
private final RegionAttributesInfo regionAttributesInfo;
private final String hostingMember;
private final String name;
private boolean isAccessor = false;
public RegionDescriptionPerMember(Region<?, ?> region, String hostingMember) {
regionAttributesInfo = new RegionAttributesInfo(region.getAttributes());
this.hostingMember = hostingMember;
size = region.size();
name = region.getFullPath().substring(1);
// For the replicated proxy
if ((regionAttributesInfo.getDataPolicy().equals(DataPolicy.EMPTY)
&& regionAttributesInfo.getScope().equals(Scope.DISTRIBUTED_ACK))) {
setAccessor(true);
}
// For the partitioned proxy
if (regionAttributesInfo.getPartitionAttributesInfo() != null
&& regionAttributesInfo.getPartitionAttributesInfo().getLocalMaxMemory() == 0) {
setAccessor(true);
}
}
public String getHostingMember() {
return hostingMember;
}
public int getSize() {
return size;
}
public String getName() {
return name;
}
public Scope getScope() {
return regionAttributesInfo.getScope();
}
public DataPolicy getDataPolicy() {
return regionAttributesInfo.getDataPolicy();
}
public Map<String, String> getNonDefaultRegionAttributes() {
regionAttributesInfo.getNonDefaultAttributes().put("size", Integer.toString(size));
return regionAttributesInfo.getNonDefaultAttributes();
}
public Map<String, String> getNonDefaultEvictionAttributes() {
EvictionAttributesInfo eaInfo = regionAttributesInfo.getEvictionAttributesInfo();
if (eaInfo != null) {
return eaInfo.getNonDefaultAttributes();
} else {
return Collections.emptyMap();
}
}
public Map<String, String> getNonDefaultPartitionAttributes() {
PartitionAttributesInfo paInfo = regionAttributesInfo.getPartitionAttributesInfo();
if (paInfo != null) {
return paInfo.getNonDefaultAttributes();
} else {
return Collections.emptyMap();
}
}
public List<FixedPartitionAttributesInfo> getFixedPartitionAttributes() {
PartitionAttributesInfo paInfo = regionAttributesInfo.getPartitionAttributesInfo();
List<FixedPartitionAttributesInfo> fpa = null;
if (paInfo != null) {
fpa = paInfo.getFixedPartitionAttributesInfo();
}
return fpa;
}
public boolean isAccessor() {
return isAccessor;
}
public void setAccessor(boolean isAccessor) {
this.isAccessor = isAccessor;
}
}