net.sourceforge.plantuml.directdot.PSystemDot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.directdot;
import static net.atmp.ImageBuilder.plainImageBuilder;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Arrays;
import net.sourceforge.plantuml.AbstractPSystem;
import net.sourceforge.plantuml.FileFormatOption;
import net.sourceforge.plantuml.FileImageData;
import net.sourceforge.plantuml.StringUtils;
import net.sourceforge.plantuml.api.ImageDataSimple;
import net.sourceforge.plantuml.core.DiagramDescription;
import net.sourceforge.plantuml.core.ImageData;
import net.sourceforge.plantuml.core.UmlSource;
import net.sourceforge.plantuml.dot.ExeState;
import net.sourceforge.plantuml.dot.Graphviz;
import net.sourceforge.plantuml.dot.GraphvizUtils;
import net.sourceforge.plantuml.dot.ProcessState;
import net.sourceforge.plantuml.klimt.shape.GraphicStrings;
import net.sourceforge.plantuml.klimt.shape.TextBlock;
public class PSystemDot extends AbstractPSystem {
// ::remove folder when __CORE__
private final String data;
public PSystemDot(UmlSource source, String data) {
super(source);
this.data = data;
}
public DiagramDescription getDescription() {
return new DiagramDescription("(Dot)");
}
@Override
final protected ImageData exportDiagramNow(OutputStream os, int num, FileFormatOption fileFormat)
throws IOException {
final Graphviz graphviz = GraphvizUtils.createForSystemDot(null, data,
StringUtils.goLowerCase(fileFormat.getFileFormat().name()));
if (graphviz.getExeState() != ExeState.OK) {
final TextBlock result = GraphicStrings
.createForError(Arrays.asList("There is an issue with your Dot/Graphviz installation"), false);
return plainImageBuilder(result, fileFormat).seed(seed()).status(FileImageData.CRASH).write(os);
}
final CounterOutputStream counter = new CounterOutputStream(os);
final ProcessState state = graphviz.createFile3(counter);
// if (state.differs(ProcessState.TERMINATED_OK())) {
// throw new IllegalStateException("Timeout1 " + state);
// }
if (counter.getLength() == 0 || state.differs(ProcessState.TERMINATED_OK())) {
final TextBlock result = GraphicStrings.createForError(Arrays.asList("GraphViz has crashed"), false);
return plainImageBuilder(result, fileFormat).seed(seed()).status(FileImageData.CRASH).write(os);
}
return ImageDataSimple.ok();
}
}