Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (C) 2020 ActiveJ LLC.
*
* Licensed 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 io.activej.jmx;
import io.activej.jmx.api.JmxRefreshable;
import io.activej.jmx.api.attribute.JmxReducer;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.management.openmbean.OpenType;
import java.util.*;
import java.util.stream.Collectors;
import static java.util.Collections.singletonList;
@SuppressWarnings("rawtypes")
final class AttributeNodeForPojo implements AttributeNode {
private static final char ATTRIBUTE_NAME_SEPARATOR = '_';
private final String name;
private final String description;
private final ValueFetcher fetcher;
private final JmxReducer reducer;
private final Map fullNameToNode;
private final List extends AttributeNode> subNodes;
private boolean visible;
public AttributeNodeForPojo(String name, @Nullable String description, boolean visible,
ValueFetcher fetcher, @Nullable JmxReducer reducer,
List extends AttributeNode> subNodes) {
this.name = name;
this.description = description;
this.visible = visible;
this.fetcher = fetcher;
this.reducer = reducer;
this.fullNameToNode = createFullNameToNodeMapping(name, subNodes);
this.subNodes = subNodes;
}
private static Map createFullNameToNodeMapping(String name,
List extends AttributeNode> subNodes) {
Map fullNameToNodeMapping = new HashMap<>();
for (AttributeNode subNode : subNodes) {
Set currentSubAttrNames = subNode.getAllAttributes();
for (String currentSubAttrName : currentSubAttrNames) {
String currentAttrFullName = addPrefix(currentSubAttrName, name);
if (fullNameToNodeMapping.containsKey(currentAttrFullName)) {
throw new IllegalArgumentException(
"There are several attributes with same name: " + currentSubAttrName);
}
fullNameToNodeMapping.put(currentAttrFullName, subNode);
}
}
return fullNameToNodeMapping;
}
@Override
public String getName() {
return name;
}
@Override
public Set getAllAttributes() {
return fullNameToNode.keySet();
}
@Override
public Set getVisibleAttributes() {
if (!visible) {
return Collections.emptySet();
} else {
Set allVisibleAttrs = new HashSet<>();
for (AttributeNode subNode : subNodes) {
Set visibleSubAttrs = subNode.getVisibleAttributes();
for (String visibleSubAttr : visibleSubAttrs) {
String visibleAttr = addPrefix(visibleSubAttr);
allVisibleAttrs.add(visibleAttr);
}
}
return allVisibleAttrs;
}
}
@Override
public Map> getDescriptions() {
Map> nameToDescriptions = new HashMap<>();
for (AttributeNode subNode : subNodes) {
Map> currentSubNodeDescriptions = subNode.getDescriptions();
for (Map.Entry> entry : currentSubNodeDescriptions.entrySet()) {
String resultAttrName = addPrefix(entry.getKey());
Map curDescriptions = new LinkedHashMap<>();
if (description != null) {
curDescriptions.put(name, description);
}
curDescriptions.putAll(entry.getValue());
nameToDescriptions.put(resultAttrName, curDescriptions);
}
}
return nameToDescriptions;
}
@Override
public Map> getOpenTypes() {
Map> allTypes = new HashMap<>();
for (AttributeNode subNode : subNodes) {
Map> subAttrTypes = subNode.getOpenTypes();
for (Map.Entry> entry : subAttrTypes.entrySet()) {
String attrName = addPrefix(entry.getKey());
allTypes.put(attrName, entry.getValue());
}
}
return allTypes;
}
@Override
@SuppressWarnings("unchecked")
public Map aggregateAttributes(@NotNull Set attrNames, @NotNull List> sources) {
List> notNullSources = sources.stream().filter(Objects::nonNull).collect(Collectors.toList());
if (notNullSources.isEmpty() || attrNames.isEmpty()) {
Map nullMap = new HashMap<>();
for (String attrName : attrNames) {
nullMap.put(attrName, null);
}
return nullMap;
}
Map> groupedAttrs = groupBySubnode(attrNames);
List