nl.talsmasoftware.umldoclet.html.UmlPackageDiagram Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of umldoclet Show documentation
Show all versions of umldoclet Show documentation
Doclet for the JavaDoc tool that generates UML diagrams from the code.
/*
* Copyright 2016-2018 Talsma ICT
*
* 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 nl.talsmasoftware.umldoclet.html;
import nl.talsmasoftware.umldoclet.util.FileUtils;
import java.io.File;
import java.util.Optional;
/**
* @author Sjoerd Talsma
*/
final class UmlPackageDiagram extends UmlDiagram {
private final File basedir, diagramFile;
private final String extension, pathToCompare;
UmlPackageDiagram(File basedir, File diagramFile, boolean hasImagesDirectory) {
this.basedir = basedir;
this.diagramFile = diagramFile;
final String fileName = diagramFile.getName();
int dotIdx = fileName.lastIndexOf('.');
this.extension = fileName.substring(dotIdx);
if (hasImagesDirectory) {
this.pathToCompare = fileName.substring(0, dotIdx).replace('.', '/') + extension;
} else {
this.pathToCompare = FileUtils.relativePath(this.basedir, this.diagramFile);
}
}
private String changeHtmlFileNameToDiagram(String htmlFileName) {
return htmlFileName.replaceFirst("package-summary.html$", "package" + extension);
}
@Override
Optional createPostprocessor(HtmlFile html) {
File htmlFile = html.path.toFile();
if (pathToCompare.equals(changeHtmlFileNameToDiagram(FileUtils.relativePath(basedir, htmlFile)))) {
return Optional.of(new Postprocessor(html, this, FileUtils.relativePath(htmlFile, diagramFile)));
}
return Optional.empty();
}
@Override
public Postprocessor.Inserter newInserter(String relativePathToDiagram) {
return new Inserter(relativePathToDiagram);
}
private static final class Inserter extends Postprocessor.Inserter {
private static final String CENTER_STYLE = "style=\"display:block;margin-left:auto;margin-right:auto;max-width:100%;\"";
private Inserter(String relativePath) {
super(relativePath);
}
@Override
String process(String line) {
if (!inserted) {
int idx = line.indexOf("= 0) {
inserted = true;
return line.substring(0, idx) + getImageTag() + System.lineSeparator() + line.substring(idx);
}
}
return line;
}
private String getImageTag() {
if (relativePath.endsWith(".svg")) {
// Render SVG images as objects to make their links work
return "";
}
return "";
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy