org.apache.camel.parser.model.CamelNodeDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-route-parser Show documentation
Show all versions of camel-route-parser Show documentation
Java and XML source code parser for Camel routes
The newest version!
/*
* 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.camel.parser.model;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class CamelNodeDetails {
// source code details
private String fileName;
private String lineNumber;
private String lineNumberEnd;
private int linePosition;
// java source code details
private String className;
private String methodName;
// camel node details
private final CamelNodeDetails parent;
private final String name;
private final int order;
private List outputs;
private String routeId;
public CamelNodeDetails(CamelNodeDetails parent, String name, int order, CamelNodeDetails copy) {
this.parent = parent;
this.name = name;
this.order = order;
this.routeId = copy.getRouteId();
this.fileName = copy.getFileName();
this.lineNumber = copy.getLineNumber();
this.lineNumberEnd = copy.getLineNumberEnd();
this.className = copy.getClassName();
this.methodName = copy.getMethodName();
}
public CamelNodeDetails(CamelNodeDetails parent, String name, int order) {
this.parent = parent;
this.name = name;
this.order = order;
}
public void addPreliminaryOutput(CamelNodeDetails output) {
if (outputs == null) {
outputs = new ArrayList<>();
}
// the parser walks the EIPs backwards so add from the top
outputs.add(0, output);
}
public void addOutput(CamelNodeDetails output) {
if (outputs == null) {
outputs = new ArrayList<>();
}
outputs.add(output);
}
public CamelNodeDetails getParent() {
return parent;
}
public String getName() {
return name;
}
public int getOrder() {
return order;
}
public List getOutputs() {
if (outputs == null) {
return Collections.emptyList();
}
return outputs;
}
public String getRouteId() {
return routeId;
}
public void setRouteId(String routeId) {
this.routeId = routeId;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getLineNumber() {
return lineNumber;
}
public void setLineNumber(String lineNumber) {
this.lineNumber = lineNumber;
}
public String getLineNumberEnd() {
return lineNumberEnd;
}
public void setLineNumberEnd(String lineNumberEnd) {
this.lineNumberEnd = lineNumberEnd;
}
public int getLinePosition() {
return linePosition;
}
public void setLinePosition(int linePosition) {
this.linePosition = linePosition;
}
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public String getMethodName() {
return methodName;
}
public void setMethodName(String methodName) {
this.methodName = methodName;
}
@Override
public String toString() {
return name;
}
public String dump(int level) {
StringBuilder sb = new StringBuilder();
sb.append(lineNumber);
sb.append("\t");
sb.append(padString(level));
sb.append(name);
if (outputs != null) {
level++;
for (CamelNodeDetails child : outputs) {
String text = child.dump(level);
sb.append("\n");
sb.append(text);
}
}
return sb.toString();
}
private static String padString(int level) {
return " ".repeat(level);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy