kieker.analysis.util.FullyQualifiedNamesFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kieker Show documentation
Show all versions of kieker Show documentation
Kieker: Application Performance Monitoring and Dynamic Software Analysis
/***************************************************************************
* Copyright 2022 Kieker Project (http://kieker-monitoring.net)
*
* 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 kieker.analysis.util;
import kieker.model.analysismodel.assembly.AssemblyComponent;
import kieker.model.analysismodel.assembly.AssemblyModel;
import kieker.model.analysismodel.assembly.AssemblyOperation;
import kieker.model.analysismodel.assembly.AssemblyStorage;
import kieker.model.analysismodel.deployment.DeployedComponent;
import kieker.model.analysismodel.deployment.DeployedOperation;
import kieker.model.analysismodel.deployment.DeploymentContext;
import kieker.model.analysismodel.trace.OperationCall;
import kieker.model.analysismodel.type.ComponentType;
import kieker.model.analysismodel.type.OperationType;
/**
* Create fully qualified names for architecture model elements.
*
* @author Reiner Jung
* @since 2.0.0
*
*/
public final class FullyQualifiedNamesFactory {
private FullyQualifiedNamesFactory() {
// factory
}
public static String createFullyQualifiedName(final DeployedOperation operation) {
return String.format("%s.%s", FullyQualifiedNamesFactory.createFullyQualifiedName(operation.getComponent()),
operation.getAssemblyOperation().getOperationType().getSignature());
}
public static String createFullyQualifiedName(final DeployedComponent component) {
return String.format("%s@%s_%d", component.getContext().getName(),
FullyQualifiedNamesFactory.createFullyQualifiedName(component.getAssemblyComponent()),
FullyQualifiedNamesFactory.findIndexNumber(component));
}
public static String createFullyQualifiedName(final DeploymentContext context) {
return context.getName();
}
public static String createFullyQualifiedName(final AssemblyOperation operation) {
return String.format("%s.%s", FullyQualifiedNamesFactory.createFullyQualifiedName(operation.getComponent()),
operation.getOperationType().getSignature());
}
public static String createFullyQualifiedName(final AssemblyStorage storage) {
return String.format("%s.%s", FullyQualifiedNamesFactory.createFullyQualifiedName(storage.getComponent()),
storage.getStorageType().getName());
}
public static String createFullyQualifiedName(final AssemblyComponent component) {
return String.format("%s_%d", component.getComponentType().getSignature(),
FullyQualifiedNamesFactory.findIndexNumber(component));
}
public static int findIndexNumber(final AssemblyComponent component) {
final int numberOfComponent = 0;
for (final AssemblyComponent value : ((AssemblyModel) component.eContainer().eContainer())
.getComponents().values()) {
if (value.equals(component)) {
return numberOfComponent;
}
}
return -1;
}
public static int findIndexNumber(final DeployedComponent component) {
final int numberOfComponent = 0;
for (final DeployedComponent value : component.getContext().getComponents().values()) {
if (value.equals(component)) {
return numberOfComponent;
}
}
return -1;
}
public static String createFullyQualifiedName(final ComponentType component) {
return component.getSignature();
}
public static String createFullyQualifiedName(final OperationType operation) {
return String.format("%s.%s", FullyQualifiedNamesFactory.createFullyQualifiedName(operation.getComponentType()), operation.getSignature());
}
public static String createFullyQualifiedName(final OperationCall operationCall) {
return String.format("%s_%d",
FullyQualifiedNamesFactory.createFullyQualifiedName(operationCall.getOperation()), operationCall.getOrderIndex());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy