1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-10 04:02:27 +00:00
plantuml/src/net/sourceforge/plantuml/cucadiagram/dot/CucaDiagramTxtMaker.java

203 lines
6.6 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2019-01-16 18:34:41 +00:00
* (C) Copyright 2009-2020, Arnaud Roques
2010-11-15 20:35:36 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2010-11-15 20:35:36 +00:00
*
2017-03-15 19:13:31 +00:00
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
2010-11-15 20:35:36 +00:00
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
2013-12-10 19:36:50 +00:00
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
2010-11-15 20:35:36 +00:00
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.cucadiagram.dot;
import java.awt.geom.Point2D;
import java.io.File;
import java.io.IOException;
2011-01-29 15:09:35 +00:00
import java.io.OutputStream;
2010-11-15 20:35:36 +00:00
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
2017-04-26 17:48:37 +00:00
import net.sourceforge.plantuml.BackSlash;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.FileFormat;
2016-05-31 19:41:55 +00:00
import net.sourceforge.plantuml.StringUtils;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.cucadiagram.CucaDiagram;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.Display;
2018-03-09 21:37:34 +00:00
import net.sourceforge.plantuml.cucadiagram.EntityPortion;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.IEntity;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.cucadiagram.Link;
2011-04-19 16:50:40 +00:00
import net.sourceforge.plantuml.cucadiagram.Member;
2018-03-09 21:37:34 +00:00
import net.sourceforge.plantuml.cucadiagram.PortionShower;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.posimo.Block;
import net.sourceforge.plantuml.posimo.Cluster;
import net.sourceforge.plantuml.posimo.GraphvizSolverB;
import net.sourceforge.plantuml.posimo.Path;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UTranslate;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.ugraphic.txt.UGraphicTxt;
public final class CucaDiagramTxtMaker {
2013-12-10 19:36:50 +00:00
// private final CucaDiagram diagram;
2010-11-15 20:35:36 +00:00
private final FileFormat fileFormat;
2013-12-10 19:36:50 +00:00
private final UGraphicTxt globalUg = new UGraphicTxt();
2018-03-09 21:37:34 +00:00
private final PortionShower portionShower;
2010-11-15 20:35:36 +00:00
private static double getXPixelPerChar() {
return 5;
}
private static double getYPixelPerChar() {
return 10;
}
2018-03-09 21:37:34 +00:00
private boolean showMember(IEntity entity) {
final boolean showMethods = portionShower.showPortion(EntityPortion.METHOD, entity);
final boolean showFields = portionShower.showPortion(EntityPortion.FIELD, entity);
return showMethods || showFields;
}
2010-11-15 20:35:36 +00:00
public CucaDiagramTxtMaker(CucaDiagram diagram, FileFormat fileFormat) throws IOException {
this.fileFormat = fileFormat;
2018-03-09 21:37:34 +00:00
this.portionShower = diagram;
2010-11-15 20:35:36 +00:00
2010-11-25 21:12:39 +00:00
final Cluster root = new Cluster(null, 0, 0);
2010-11-15 20:35:36 +00:00
int uid = 0;
2013-12-10 19:36:50 +00:00
final Map<IEntity, Block> blocks = new HashMap<IEntity, Block>();
2010-11-15 20:35:36 +00:00
2015-04-07 18:18:37 +00:00
for (IEntity ent : diagram.getLeafsvalues()) {
2010-11-15 20:35:36 +00:00
// printClass(ent);
// ug.translate(0, getHeight(ent) + 1);
final double width = getWidth(ent) * getXPixelPerChar();
final double height = getHeight(ent) * getYPixelPerChar();
2010-11-25 21:12:39 +00:00
final Block b = new Block(uid++, width, height, null);
2010-11-15 20:35:36 +00:00
root.addBloc(b);
blocks.put(ent, b);
}
final GraphvizSolverB solver = new GraphvizSolverB();
2013-12-10 19:36:50 +00:00
final Collection<Path> paths = new ArrayList<Path>();
for (Link link : diagram.getLinks()) {
final Block b1 = blocks.get(link.getEntity1());
final Block b2 = blocks.get(link.getEntity2());
2020-04-19 16:04:39 +00:00
paths.add(new Path(b1, b2, null, link.getLength(), link.isInvis()));
2013-12-10 19:36:50 +00:00
}
solver.solve(root, paths);
for (Path p : paths) {
2020-04-19 16:04:39 +00:00
if (p.isInvis()) {
continue;
}
2013-12-10 19:36:50 +00:00
p.getDotPath().draw(globalUg.getCharArea(), getXPixelPerChar(), getYPixelPerChar());
}
2015-04-07 18:18:37 +00:00
for (IEntity ent : diagram.getLeafsvalues()) {
2013-12-10 19:36:50 +00:00
final Block b = blocks.get(ent);
final Point2D p = b.getPosition();
2020-04-19 16:04:39 +00:00
printClass(ent, (UGraphicTxt) globalUg
.apply(new UTranslate(p.getX() / getXPixelPerChar(), p.getY() / getYPixelPerChar())));
2010-11-15 20:35:36 +00:00
}
}
2013-12-10 19:36:50 +00:00
private void printClass(final IEntity ent, UGraphicTxt ug) {
2010-11-15 20:35:36 +00:00
final int w = getWidth(ent);
final int h = getHeight(ent);
ug.getCharArea().drawBoxSimple(0, 0, w, h);
2013-12-10 19:36:50 +00:00
ug.getCharArea().drawStringsLR(ent.getDisplay().as(), 1, 1);
2018-03-09 21:37:34 +00:00
if (showMember(ent)) {
int y = 2;
ug.getCharArea().drawHLine('-', y, 1, w - 1);
y++;
for (Member att : ent.getBodier().getFieldsToDisplay()) {
final List<String> disp = BackSlash.getWithNewlines(att.getDisplay(true));
ug.getCharArea().drawStringsLR(disp, 1, y);
y += StringUtils.getHeight(disp);
}
ug.getCharArea().drawHLine('-', y, 1, w - 1);
y++;
for (Member att : ent.getBodier().getMethodsToDisplay()) {
final List<String> disp = BackSlash.getWithNewlines(att.getDisplay(true));
ug.getCharArea().drawStringsLR(disp, 1, y);
y += StringUtils.getHeight(disp);
}
2010-11-15 20:35:36 +00:00
}
}
public List<File> createFiles(File suggestedFile) throws IOException {
if (fileFormat == FileFormat.UTXT) {
2013-12-10 19:36:50 +00:00
globalUg.getCharArea().print(new PrintStream(suggestedFile, "UTF-8"));
2010-11-15 20:35:36 +00:00
} else {
2013-12-10 19:36:50 +00:00
globalUg.getCharArea().print(new PrintStream(suggestedFile));
2010-11-15 20:35:36 +00:00
}
return Collections.singletonList(suggestedFile);
}
2013-12-10 19:36:50 +00:00
private int getHeight(IEntity entity) {
int result = StringUtils.getHeight(entity.getDisplay());
2018-03-09 21:37:34 +00:00
if (showMember(entity)) {
for (Member att : entity.getBodier().getMethodsToDisplay()) {
result += StringUtils.getHeight(Display.getWithNewlines(att.getDisplay(true)));
}
result++;
for (Member att : entity.getBodier().getFieldsToDisplay()) {
result += StringUtils.getHeight(Display.getWithNewlines(att.getDisplay(true)));
}
result++;
2010-11-15 20:35:36 +00:00
}
2018-03-09 21:37:34 +00:00
return result + 2;
2010-11-15 20:35:36 +00:00
}
2013-12-10 19:36:50 +00:00
private int getWidth(IEntity entity) {
2017-10-07 09:46:53 +00:00
int result = StringUtils.getWcWidth(entity.getDisplay());
2018-03-09 21:37:34 +00:00
if (showMember(entity)) {
for (Member att : entity.getBodier().getMethodsToDisplay()) {
final int w = StringUtils.getWcWidth(Display.getWithNewlines(att.getDisplay(true)));
if (w > result) {
result = w;
}
2010-11-15 20:35:36 +00:00
}
2018-03-09 21:37:34 +00:00
for (Member att : entity.getBodier().getFieldsToDisplay()) {
final int w = StringUtils.getWcWidth(Display.getWithNewlines(att.getDisplay(true)));
if (w > result) {
result = w;
}
2010-11-15 20:35:36 +00:00
}
}
return result + 2;
}
2011-01-29 15:09:35 +00:00
public void createFiles(OutputStream os, int index) {
2013-12-10 19:36:50 +00:00
globalUg.getCharArea().print(new PrintStream(os));
2011-01-29 15:09:35 +00:00
}
2010-11-15 20:35:36 +00:00
}