1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-26 06:46:45 +00:00
This commit is contained in:
Arnaud Roques 2022-06-27 18:33:45 +02:00
parent 285c21492f
commit e801884415
28 changed files with 287 additions and 297 deletions

View File

@ -179,7 +179,8 @@ public class AnnotatedWorker {
final Style style = StyleSignatureBasic.of(SName.root, SName.document, SName.caption) final Style style = StyleSignatureBasic.of(SName.root, SName.document, SName.caption)
.getMergedStyle(skinParam.getCurrentStyleBuilder()); .getMergedStyle(skinParam.getCurrentStyleBuilder());
return style.createTextBlockBordered(caption.getDisplay(), skinParam.getIHtmlColorSet(), skinParam); return style.createTextBlockBordered(caption.getDisplay(), skinParam.getIHtmlColorSet(), skinParam,
Style.ID_CAPTION);
} }
@ -191,7 +192,7 @@ public class AnnotatedWorker {
final Style style = StyleSignatureBasic.of(SName.root, SName.document, SName.title) final Style style = StyleSignatureBasic.of(SName.root, SName.document, SName.title)
.getMergedStyle(skinParam.getCurrentStyleBuilder()); .getMergedStyle(skinParam.getCurrentStyleBuilder());
final TextBlock block = style.createTextBlockBordered(title.getDisplay(), skinParam.getIHtmlColorSet(), final TextBlock block = style.createTextBlockBordered(title.getDisplay(), skinParam.getIHtmlColorSet(),
skinParam); skinParam, Style.ID_TITLE);
return DecorateEntityImage.addTop(original, block, HorizontalAlignment.CENTER); return DecorateEntityImage.addTop(original, block, HorizontalAlignment.CENTER);
} }

View File

@ -49,7 +49,7 @@ public class EntityImageLegend {
final Style style = StyleSignatureBasic final Style style = StyleSignatureBasic
.of(SName.root, SName.root, SName.document, skinParam.getUmlDiagramType().getStyleName(), SName.legend) .of(SName.root, SName.root, SName.document, skinParam.getUmlDiagramType().getStyleName(), SName.legend)
.getMergedStyle(skinParam.getCurrentStyleBuilder()); .getMergedStyle(skinParam.getCurrentStyleBuilder());
return style.createTextBlockBordered(note, skinParam.getIHtmlColorSet(), skinParam); return style.createTextBlockBordered(note, skinParam.getIHtmlColorSet(), skinParam, Style.ID_LEGEND);
} }
} }

View File

@ -57,7 +57,6 @@ import net.sourceforge.plantuml.creole.SheetBlock1;
import net.sourceforge.plantuml.creole.SheetBlock2; import net.sourceforge.plantuml.creole.SheetBlock2;
import net.sourceforge.plantuml.creole.Stencil; import net.sourceforge.plantuml.creole.Stencil;
import net.sourceforge.plantuml.cucadiagram.Display; import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.cucadiagram.Stereotype;
import net.sourceforge.plantuml.graphic.FontConfiguration; import net.sourceforge.plantuml.graphic.FontConfiguration;
import net.sourceforge.plantuml.graphic.HorizontalAlignment; import net.sourceforge.plantuml.graphic.HorizontalAlignment;
import net.sourceforge.plantuml.graphic.Rainbow; import net.sourceforge.plantuml.graphic.Rainbow;
@ -135,23 +134,6 @@ public class FtileBoxOld extends AbstractFtile {
} }
public static FtileBoxOld create(ISkinParam skinParam, Display label, Swimlane swimlane, BoxStyle boxStyle,
Stereotype stereotype) {
final Style style = getDefaultStyleDefinitionActivity().withTOBECHANGED(stereotype)
.getMergedStyle(skinParam.getCurrentStyleBuilder());
final Style styleArrow = getDefaultStyleDefinitionArrow().getMergedStyle(skinParam.getCurrentStyleBuilder());
return new FtileBoxOld(skinParam, label, swimlane, boxStyle, style, styleArrow);
}
public static TextBlock createWbs(StyleBuilder styleBuilder, ISkinParam skinParam, Display label,
StyleSignatureBasic styleDefinition) {
final Style style = styleDefinition.getMergedStyle(styleBuilder);
final Style styleArrow = style;
return new FtileBoxOld(skinParam, label, null, BoxStyle.PLAIN, style, styleArrow);
}
public static TextBlock createWbs(Style style, ISkinParam skinParam, Display label) { public static TextBlock createWbs(Style style, ISkinParam skinParam, Display label) {
final Style styleArrow = style; final Style styleArrow = style;
return new FtileBoxOld(skinParam, label, null, BoxStyle.PLAIN, style, styleArrow); return new FtileBoxOld(skinParam, label, null, BoxStyle.PLAIN, style, styleArrow);
@ -232,8 +214,7 @@ public class FtileBoxOld extends AbstractFtile {
tb.drawU(ug.apply(new UTranslate(dimTotal.getWidth() - tbWidth(stringBounder) - padding.getRight(), tb.drawU(ug.apply(new UTranslate(dimTotal.getWidth() - tbWidth(stringBounder) - padding.getRight(),
padding.getBottom()))); padding.getBottom())));
else if (horizontalAlignment == HorizontalAlignment.CENTER) else if (horizontalAlignment == HorizontalAlignment.CENTER)
tb.drawU(ug.apply(new UTranslate(padding.getRight() + (dimTotal.getWidth() - tbWidth(stringBounder)) / 2, tb.drawU(ug.apply(new UTranslate((dimTotal.getWidth() - tbWidth(stringBounder)) / 2, padding.getBottom())));
padding.getBottom())));
} }

View File

@ -92,7 +92,8 @@ public class CommandCreateClassMultilines extends CommandMultilines2<ClassDiagra
private static IRegex getRegexConcat() { private static IRegex getRegexConcat() {
return RegexConcat.build(CommandCreateClassMultilines.class.getName(), RegexLeaf.start(), // return RegexConcat.build(CommandCreateClassMultilines.class.getName(), RegexLeaf.start(), //
new RegexLeaf("VISIBILITY", "(" + VisibilityModifier.regexForVisibilityCharacterInClassName() + ")?"), // new RegexLeaf("VISIBILITY", "(" + VisibilityModifier.regexForVisibilityCharacterInClassName() + ")?"), //
new RegexLeaf("TYPE", "(interface|enum|annotation|abstract[%s]+class|abstract|class|entity|protocol|struct)"), // new RegexLeaf("TYPE",
"(interface|enum|annotation|abstract[%s]+class|abstract|class|entity|protocol|struct)"), //
RegexLeaf.spaceOneOrMore(), // RegexLeaf.spaceOneOrMore(), //
new RegexOr(// new RegexOr(//
new RegexConcat(// new RegexConcat(//
@ -147,9 +148,9 @@ public class CommandCreateClassMultilines extends CommandMultilines2<ClassDiagra
lines = lines.trimSmart(1); lines = lines.trimSmart(1);
final RegexResult line0 = getStartingPattern().matcher(lines.getFirst().getTrimmed().getString()); final RegexResult line0 = getStartingPattern().matcher(lines.getFirst().getTrimmed().getString());
final IEntity entity = executeArg0(diagram, line0); final IEntity entity = executeArg0(diagram, line0);
if (entity == null) { if (entity == null)
return CommandExecutionResult.error("No such entity"); return CommandExecutionResult.error("No such entity");
}
if (lines.size() > 1) { if (lines.size() > 1) {
entity.setCodeLine(lines.getAt(0).getLocation()); entity.setCodeLine(lines.getAt(0).getLocation());
lines = lines.subExtract(1, 1); lines = lines.subExtract(1, 1);
@ -165,9 +166,9 @@ public class CommandCreateClassMultilines extends CommandMultilines2<ClassDiagra
// lines = lines.subExtract(1, 0); // lines = lines.subExtract(1, 0);
// } // }
for (StringLocated s : lines) { for (StringLocated s : lines) {
if (s.getString().length() > 0 && VisibilityModifier.isVisibilityCharacter(s.getString())) { if (s.getString().length() > 0 && VisibilityModifier.isVisibilityCharacter(s.getString()))
diagram.setVisibilityModifierPresent(true); diagram.setVisibilityModifierPresent(true);
}
entity.getBodier().addFieldOrMethod(s.getString()); entity.getBodier().addFieldOrMethod(s.getString());
} }
// if (url != null) { // if (url != null) {
@ -183,9 +184,9 @@ public class CommandCreateClassMultilines extends CommandMultilines2<ClassDiagra
} }
public static void addTags(IEntity entity, String tags) { public static void addTags(IEntity entity, String tags) {
if (tags == null) { if (tags == null)
return; return;
}
for (String tag : tags.split("[ ]+")) { for (String tag : tags.split("[ ]+")) {
assert tag.startsWith("$"); assert tag.startsWith("$");
tag = tag.substring(1); tag = tag.substring(1);
@ -197,12 +198,12 @@ public class CommandCreateClassMultilines extends CommandMultilines2<ClassDiagra
if (arg.get(keyword, 0) != null) { if (arg.get(keyword, 0) != null) {
final Mode mode = arg.get(keyword, 0).equalsIgnoreCase("extends") ? Mode.EXTENDS : Mode.IMPLEMENTS; final Mode mode = arg.get(keyword, 0).equalsIgnoreCase("extends") ? Mode.EXTENDS : Mode.IMPLEMENTS;
LeafType type2 = LeafType.CLASS; LeafType type2 = LeafType.CLASS;
if (mode == Mode.IMPLEMENTS) { if (mode == Mode.IMPLEMENTS)
type2 = LeafType.INTERFACE; type2 = LeafType.INTERFACE;
}
if (mode == Mode.EXTENDS && entity.getLeafType() == LeafType.INTERFACE) { if (mode == Mode.EXTENDS && entity.getLeafType() == LeafType.INTERFACE)
type2 = LeafType.INTERFACE; type2 = LeafType.INTERFACE;
}
final String codes = arg.get(keyword, 1); final String codes = arg.get(keyword, 1);
for (String s : codes.split(",")) { for (String s : codes.split(",")) {
final String idShort = StringUtils.trin(s); final String idShort = StringUtils.trin(s);
@ -210,9 +211,9 @@ public class CommandCreateClassMultilines extends CommandMultilines2<ClassDiagra
final Code other = diagram.V1972() ? ident : diagram.buildCode(idShort); final Code other = diagram.V1972() ? ident : diagram.buildCode(idShort);
final IEntity cl2 = diagram.getOrCreateLeaf(ident, other, type2, null); final IEntity cl2 = diagram.getOrCreateLeaf(ident, other, type2, null);
LinkType typeLink = new LinkType(LinkDecor.NONE, LinkDecor.EXTENDS); LinkType typeLink = new LinkType(LinkDecor.NONE, LinkDecor.EXTENDS);
if (type2 == LeafType.INTERFACE && entity.getLeafType() != LeafType.INTERFACE) { if (type2 == LeafType.INTERFACE && entity.getLeafType() != LeafType.INTERFACE)
typeLink = typeLink.goDashed(); typeLink = typeLink.goDashed();
}
final Link link = new Link(cl2, entity, typeLink, Display.NULL, 2, null, null, final Link link = new Link(cl2, entity, typeLink, Display.NULL, 2, null, null,
diagram.getLabeldistance(), diagram.getLabelangle(), diagram.getLabeldistance(), diagram.getLabelangle(),
diagram.getSkinParam().getCurrentStyleBuilder()); diagram.getSkinParam().getCurrentStyleBuilder());
@ -221,24 +222,23 @@ public class CommandCreateClassMultilines extends CommandMultilines2<ClassDiagra
} }
} }
private IEntity executeArg0(ClassDiagram diagram, RegexResult arg) throws NoSuchColorException { private IEntity executeArg0(ClassDiagram diagram, RegexResult line0) throws NoSuchColorException {
final LeafType type = LeafType.getLeafType(StringUtils.goUpperCase(arg.get("TYPE", 0))); final LeafType type = LeafType.getLeafType(StringUtils.goUpperCase(line0.get("TYPE", 0)));
final String visibilityString = arg.get("VISIBILITY", 0); final String visibilityString = line0.get("VISIBILITY", 0);
VisibilityModifier visibilityModifier = null; VisibilityModifier visibilityModifier = null;
if (visibilityString != null) { if (visibilityString != null)
visibilityModifier = VisibilityModifier.getVisibilityModifier(visibilityString + "FOO", false); visibilityModifier = VisibilityModifier.getVisibilityModifier(visibilityString + "FOO", false);
}
final String idShort = StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(arg.getLazzy("CODE", 0), final String idShort = StringUtils.eventuallyRemoveStartingAndEndingDoubleQuote(line0.getLazzy("CODE", 0),
"\"([:"); "\"([:");
final Ident ident = diagram.buildLeafIdent(idShort); final Ident ident = diagram.buildLeafIdent(idShort);
final Code code = diagram.V1972() ? ident : diagram.buildCode(idShort); final Code code = diagram.V1972() ? ident : diagram.buildCode(idShort);
final String display = arg.getLazzy("DISPLAY", 0); final String display = line0.getLazzy("DISPLAY", 0);
final String genericOption = arg.getLazzy("DISPLAY", 1); final String genericOption = line0.getLazzy("DISPLAY", 1);
final String generic = genericOption != null ? genericOption : arg.get("GENERIC", 0); final String generic = genericOption != null ? genericOption : line0.get("GENERIC", 0);
final String stereotype = arg.get("STEREO", 0); final String stereotype = line0.get("STEREO", 0);
/* final */ILeaf result; /* final */ILeaf result;
if (diagram.V1972()) { if (diagram.V1972()) {
@ -246,18 +246,18 @@ public class CommandCreateClassMultilines extends CommandMultilines2<ClassDiagra
if (result != null) { if (result != null) {
// result = diagram.getOrCreateLeaf(ident, code, null, null); // result = diagram.getOrCreateLeaf(ident, code, null, null);
diagram.setLastEntity(result); diagram.setLastEntity(result);
if (result.muteToType(type, null) == false) { if (result.muteToType(type, null) == false)
return null; return null;
}
} else { } else {
result = diagram.createLeaf(ident, code, Display.getWithNewlines(display), type, null); result = diagram.createLeaf(ident, code, Display.getWithNewlines(display), type, null);
} }
} else { } else {
if (diagram.leafExist(code)) { if (diagram.leafExist(code)) {
result = diagram.getOrCreateLeaf(ident, code, null, null); result = diagram.getOrCreateLeaf(ident, code, null, null);
if (result.muteToType(type, null) == false) { if (result.muteToType(type, null) == false)
return null; return null;
}
} else { } else {
result = diagram.createLeaf(ident, code, Display.getWithNewlines(display), type, null); result = diagram.createLeaf(ident, code, Display.getWithNewlines(display), type, null);
} }
@ -269,38 +269,30 @@ public class CommandCreateClassMultilines extends CommandMultilines2<ClassDiagra
diagram.getSkinParam().getIHtmlColorSet())); diagram.getSkinParam().getIHtmlColorSet()));
} }
final String urlString = arg.get("URL", 0); final String urlString = line0.get("URL", 0);
if (urlString != null) { if (urlString != null) {
final UrlBuilder urlBuilder = new UrlBuilder(diagram.getSkinParam().getValue("topurl"), UrlMode.STRICT); final UrlBuilder urlBuilder = new UrlBuilder(diagram.getSkinParam().getValue("topurl"), UrlMode.STRICT);
final Url url = urlBuilder.getUrl(urlString); final Url url = urlBuilder.getUrl(urlString);
result.addUrl(url); result.addUrl(url);
} }
Colors colors = color().getColor(diagram.getSkinParam().getThemeStyle(), arg, Colors colors = color().getColor(diagram.getSkinParam().getThemeStyle(), line0,
diagram.getSkinParam().getIHtmlColorSet()); diagram.getSkinParam().getIHtmlColorSet());
final String s = arg.get("LINECOLOR", 1); final String s = line0.get("LINECOLOR", 1);
final HColor lineColor = s == null ? null final HColor lineColor = s == null ? null
: diagram.getSkinParam().getIHtmlColorSet().getColor(diagram.getSkinParam().getThemeStyle(), s); : diagram.getSkinParam().getIHtmlColorSet().getColor(diagram.getSkinParam().getThemeStyle(), s);
if (lineColor != null) { if (lineColor != null)
colors = colors.add(ColorType.LINE, lineColor); colors = colors.add(ColorType.LINE, lineColor);
}
if (arg.get("LINECOLOR", 0) != null) { if (line0.get("LINECOLOR", 0) != null)
colors = colors.addLegacyStroke(arg.get("LINECOLOR", 0)); colors = colors.addLegacyStroke(line0.get("LINECOLOR", 0));
}
result.setColors(colors); result.setColors(colors);
// result.setSpecificColorTOBEREMOVED(ColorType.BACK, if (generic != null)
// diagram.getSkinParam().getIHtmlColorSet().getColorIfValid(arg.get("COLOR",
// 0)));
// result.setSpecificColorTOBEREMOVED(ColorType.LINE,
// diagram.getSkinParam().getIHtmlColorSet().getColorIfValid(arg.get("LINECOLOR",
// 1)));
// result.applyStroke(arg.get("LINECOLOR", 0));
if (generic != null) {
result.setGeneric(generic); result.setGeneric(generic);
}
return result; return result;
} }
} }

View File

@ -91,7 +91,7 @@ public abstract class MyPattern {
p = p.replace("%pLN", "\\p{L}0-9"); // Unicode Letter, digit p = p.replace("%pLN", "\\p{L}0-9"); // Unicode Letter, digit
p = p.replace("%s", "\\s\u00A0"); // space p = p.replace("%s", "\\s\u00A0"); // space
p = p.replace("%q", "'\u2018\u2019"); // quote p = p.replace("%q", "'\u2018\u2019"); // quote
p = p.replace("%g", "\"\u201c\u201d\u00ab\u00bb"); // double quote p = p.replace("%g", "\"\u201c\u201d"); // double quote
return p; return p;
} }

View File

@ -95,7 +95,7 @@ public class DisplaySection {
return null; return null;
if (style != null) if (style != null)
return style.createTextBlockBordered(display, spriteContainer.getIHtmlColorSet(), spriteContainer); return style.createTextBlockBordered(display, spriteContainer.getIHtmlColorSet(), spriteContainer, null);
return display.create(fontConfiguration, getHorizontalAlignment(), spriteContainer); return display.create(fontConfiguration, getHorizontalAlignment(), spriteContainer);
} }

View File

@ -146,9 +146,9 @@ final public class EntityImpl implements ILeaf, IGroup {
private EntityImpl(Ident ident, EntityFactory entityFactory, Code code, Bodier bodier, IGroup parentContainer, private EntityImpl(Ident ident, EntityFactory entityFactory, Code code, Bodier bodier, IGroup parentContainer,
String namespaceSeparator, int rawLayout) { String namespaceSeparator, int rawLayout) {
this.ident = Objects.requireNonNull(ident); this.ident = Objects.requireNonNull(ident);
if (entityFactory.namespaceSeparator.V1972()) { if (entityFactory.namespaceSeparator.V1972())
code = ident; code = ident;
}
this.code = Objects.requireNonNull(code); this.code = Objects.requireNonNull(code);
this.entityFactory = entityFactory; this.entityFactory = entityFactory;
this.bodier = bodier; this.bodier = bodier;
@ -188,9 +188,9 @@ final public class EntityImpl implements ILeaf, IGroup {
checkNotGroup(); checkNotGroup();
Objects.requireNonNull(newType); Objects.requireNonNull(newType);
if (leafType != LeafType.STILL_UNKNOWN) { if (leafType != LeafType.STILL_UNKNOWN) {
if (newType == this.leafType) { if (newType == this.leafType)
return true; return true;
}
if (leafType != LeafType.ANNOTATION && leafType != LeafType.ABSTRACT_CLASS && leafType != LeafType.CLASS if (leafType != LeafType.ANNOTATION && leafType != LeafType.ABSTRACT_CLASS && leafType != LeafType.CLASS
&& leafType != LeafType.ENUM && leafType != LeafType.INTERFACE) { && leafType != LeafType.ENUM && leafType != LeafType.INTERFACE) {
return false; return false;
@ -202,9 +202,9 @@ final public class EntityImpl implements ILeaf, IGroup {
// throw new IllegalArgumentException("newtype=" + newType); // throw new IllegalArgumentException("newtype=" + newType);
} }
} }
if (leafType == LeafType.CLASS && newType == LeafType.OBJECT) { if (leafType == LeafType.CLASS && newType == LeafType.OBJECT)
bodier.muteClassToObject(); bodier.muteClassToObject();
}
this.leafType = newType; this.leafType = newType;
this.symbol = newSymbol; this.symbol = newSymbol;
return true; return true;
@ -223,9 +223,9 @@ final public class EntityImpl implements ILeaf, IGroup {
} }
public Display getDisplay() { public Display getDisplay() {
if (intricated) { if (intricated)
return entityFactory.getIntricatedDisplay(ident); return entityFactory.getIntricatedDisplay(ident);
}
return display; return display;
} }
@ -266,12 +266,12 @@ final public class EntityImpl implements ILeaf, IGroup {
} }
public boolean hasUrl() { public boolean hasUrl() {
if (Display.isNull(display) == false && display.hasUrl()) { if (Display.isNull(display) == false && display.hasUrl())
return true; return true;
}
if (bodier.hasUrl()) { if (bodier.hasUrl())
return true; return true;
}
return url != null; return url != null;
} }
@ -325,25 +325,25 @@ final public class EntityImpl implements ILeaf, IGroup {
public EntityPosition getEntityPosition() { public EntityPosition getEntityPosition() {
checkNotGroup(); checkNotGroup();
if (leafType == LeafType.PORT) { if (leafType == LeafType.PORT)
return EntityPosition.PORT; return EntityPosition.PORT;
}
if (leafType == LeafType.PORTIN) { if (leafType == LeafType.PORTIN)
return EntityPosition.PORTIN; return EntityPosition.PORTIN;
}
if (leafType == LeafType.PORTOUT) { if (leafType == LeafType.PORTOUT)
return EntityPosition.PORTOUT; return EntityPosition.PORTOUT;
}
if (leafType != LeafType.STATE) { if (leafType != LeafType.STATE)
return EntityPosition.NORMAL; return EntityPosition.NORMAL;
}
if (getParentContainer() instanceof GroupRoot) { if (getParentContainer() instanceof GroupRoot)
return EntityPosition.NORMAL; return EntityPosition.NORMAL;
}
final Stereotype stereotype = getStereotype(); final Stereotype stereotype = getStereotype();
if (stereotype == null) { if (stereotype == null)
return EntityPosition.NORMAL; return EntityPosition.NORMAL;
}
return EntityPosition.fromStereotype(stereotype.getLabel(Guillemet.DOUBLE_COMPARATOR)); return EntityPosition.fromStereotype(stereotype.getLabel(Guillemet.DOUBLE_COMPARATOR));
} }
@ -351,30 +351,29 @@ final public class EntityImpl implements ILeaf, IGroup {
// ---------- // ----------
private void checkGroup() { private void checkGroup() {
if (isGroup() == false) { if (isGroup() == false)
throw new UnsupportedOperationException(); throw new UnsupportedOperationException();
}
} }
private void checkNotGroup() { private void checkNotGroup() {
if (isGroup()) { if (isGroup())
throw new UnsupportedOperationException(); throw new UnsupportedOperationException();
}
} }
public boolean containsLeafRecurse(ILeaf leaf) { public boolean containsLeafRecurse(ILeaf leaf) {
if (Objects.requireNonNull(leaf).isGroup()) { if (Objects.requireNonNull(leaf).isGroup())
throw new IllegalArgumentException(); throw new IllegalArgumentException();
}
checkGroup(); checkGroup();
if (leaf.getParentContainer() == this) { if (leaf.getParentContainer() == this)
return true; return true;
}
for (IGroup child : getChildren()) { for (IGroup child : getChildren())
if (child.containsLeafRecurse(leaf)) { if (child.containsLeafRecurse(leaf))
return true; return true;
}
}
return false; return false;
} }
@ -382,12 +381,12 @@ final public class EntityImpl implements ILeaf, IGroup {
checkGroup(); checkGroup();
final List<ILeaf> result = new ArrayList<>(); final List<ILeaf> result = new ArrayList<>();
for (ILeaf ent : entityFactory.leafs()) { for (ILeaf ent : entityFactory.leafs()) {
if (ent.isGroup()) { if (ent.isGroup())
throw new IllegalStateException(); throw new IllegalStateException();
}
if (ent.getParentContainer() == this) { if (ent.getParentContainer() == this)
result.add(ent); result.add(ent);
}
} }
return Collections.unmodifiableCollection(result); return Collections.unmodifiableCollection(result);
} }
@ -395,11 +394,10 @@ final public class EntityImpl implements ILeaf, IGroup {
public Collection<IGroup> getChildren() { public Collection<IGroup> getChildren() {
checkGroup(); checkGroup();
final Collection<IGroup> result = new ArrayList<>(); final Collection<IGroup> result = new ArrayList<>();
for (IGroup g : entityFactory.groups()) { for (IGroup g : entityFactory.groups())
if (g != this && g.getParentContainer() == this) { if (g != this && g.getParentContainer() == this)
result.add(g); result.add(g);
}
}
return Collections.unmodifiableCollection(result); return Collections.unmodifiableCollection(result);
} }
@ -409,21 +407,20 @@ final public class EntityImpl implements ILeaf, IGroup {
return; return;
} }
checkGroup(); checkGroup();
if (dest.isGroup() == false) { if (dest.isGroup() == false)
throw new UnsupportedOperationException(); throw new UnsupportedOperationException();
}
for (ILeaf ent : getLeafsDirect()) { for (ILeaf ent : getLeafsDirect())
((EntityImpl) ent).parentContainer = dest; ((EntityImpl) ent).parentContainer = dest;
}
for (IGroup g : dest.getChildren()) { for (IGroup g : dest.getChildren())
// ((EntityImpl) g).parentContainer = dest; // ((EntityImpl) g).parentContainer = dest;
throw new IllegalStateException(); throw new IllegalStateException();
}
for (IGroup g : getChildren()) { for (IGroup g : getChildren()) {
if (g == dest) { if (g == dest)
continue; continue;
}
((EntityImpl) g).parentContainer = dest; ((EntityImpl) g).parentContainer = dest;
} }
@ -510,23 +507,23 @@ final public class EntityImpl implements ILeaf, IGroup {
public PackageStyle getPackageStyle() { public PackageStyle getPackageStyle() {
checkGroup(); checkGroup();
if (stereotype == null) { if (stereotype == null)
return null; return null;
}
return stereotype.getPackageStyle(); return stereotype.getPackageStyle();
} }
public boolean isGroup() { public boolean isGroup() {
if (groupType != null && leafType != null) { if (groupType != null && leafType != null)
throw new IllegalStateException(); throw new IllegalStateException();
}
assert groupType == null || leafType == null; assert groupType == null || leafType == null;
if (groupType != null) { if (groupType != null)
return true; return true;
}
if (leafType != null) { if (leafType != null)
return false; return false;
}
throw new IllegalStateException(); throw new IllegalStateException();
} }
@ -537,26 +534,21 @@ final public class EntityImpl implements ILeaf, IGroup {
this.svekImage = img; this.svekImage = img;
this.url = null; this.url = null;
for (final Link link : new ArrayList<>(entityFactory.getLinks())) { for (final Link link : new ArrayList<>(entityFactory.getLinks()))
if (EntityUtils.isPureInnerLink12(this, link)) { if (EntityUtils.isPureInnerLink12(this, link))
entityFactory.removeLink(link); entityFactory.removeLink(link);
}
}
if (entityFactory.namespaceSeparator.V1972()) { if (entityFactory.namespaceSeparator.V1972()) {
entityFactory.removeGroup(getIdent()); entityFactory.removeGroup(getIdent());
for (ILeaf ent : new ArrayList<>(entityFactory.leafs())) { for (ILeaf ent : new ArrayList<>(entityFactory.leafs()))
if (this != ent && getIdent().equals(ent.getIdent().parent())) { if (this != ent && getIdent().equals(ent.getIdent().parent()))
entityFactory.removeLeaf(ent.getIdent()); entityFactory.removeLeaf(ent.getIdent());
}
}
} else { } else {
entityFactory.removeGroup(getCodeGetName()); entityFactory.removeGroup(getCodeGetName());
for (ILeaf ent : new ArrayList<>(entityFactory.leafs())) { for (ILeaf ent : new ArrayList<>(entityFactory.leafs()))
if (this != ent && this == ent.getParentContainer()) { if (this != ent && this == ent.getParentContainer())
entityFactory.removeLeaf(ent.getCodeGetName()); entityFactory.removeLeaf(ent.getCodeGetName());
}
}
} }
entityFactory.addLeaf(this); entityFactory.addLeaf(this);
@ -566,9 +558,9 @@ final public class EntityImpl implements ILeaf, IGroup {
void muteToGroup(Code namespaceNew, GroupType groupType, IGroup parentContainer) { void muteToGroup(Code namespaceNew, GroupType groupType, IGroup parentContainer) {
checkNotGroup(); checkNotGroup();
if (parentContainer.isGroup() == false) { if (parentContainer.isGroup() == false)
throw new IllegalArgumentException(); throw new IllegalArgumentException();
}
this.namespace = namespaceNew; this.namespace = namespaceNew;
this.groupType = groupType; this.groupType = groupType;
this.leafType = null; this.leafType = null;
@ -576,9 +568,9 @@ final public class EntityImpl implements ILeaf, IGroup {
} }
public USymbol getUSymbol() { public USymbol getUSymbol() {
if (getLeafType() == LeafType.CIRCLE) { if (getLeafType() == LeafType.CIRCLE)
return USymbols.INTERFACE; return USymbols.INTERFACE;
}
// if (symbol != null && stereotype != null && stereotype.getSprite() != null) { // if (symbol != null && stereotype != null && stereotype.getSprite() != null) {
// return symbol.withStereoAlignment(HorizontalAlignment.RIGHT); // return symbol.withStereoAlignment(HorizontalAlignment.RIGHT);
// } // }
@ -594,74 +586,69 @@ final public class EntityImpl implements ILeaf, IGroup {
} }
public boolean isHidden() { public boolean isHidden() {
if (parentContainer != null && parentContainer.isHidden()) { if (parentContainer != null && parentContainer.isHidden())
return true; return true;
}
return isHiddenInternal(); return isHiddenInternal();
} }
private boolean isHiddenInternal() { private boolean isHiddenInternal() {
if (isGroup()) { if (isGroup()) {
if (entityFactory.isHidden(this)) { if (entityFactory.isHidden(this))
return true; return true;
}
if (getLeafsDirect().size() == 0) { if (getLeafsDirect().size() == 0)
return false; return false;
}
for (ILeaf leaf : getLeafsDirect()) { for (ILeaf leaf : getLeafsDirect())
if (((EntityImpl) leaf).isHiddenInternal() == false) { if (((EntityImpl) leaf).isHiddenInternal() == false)
return false; return false;
}
} for (IGroup g : getChildren())
for (IGroup g : getChildren()) { if (((EntityImpl) g).isHiddenInternal() == false)
if (((EntityImpl) g).isHiddenInternal() == false) {
return false; return false;
}
}
return true; return true;
} }
return entityFactory.isHidden(this); return entityFactory.isHidden(this);
} }
public boolean isRemoved() { public boolean isRemoved() {
if (parentContainer != null && parentContainer.isRemoved()) { if (parentContainer != null && parentContainer.isRemoved())
return true; return true;
}
return isRemovedInternal(); return isRemovedInternal();
} }
private boolean isRemovedInternal() { private boolean isRemovedInternal() {
if (isGroup()) { if (isGroup()) {
if (entityFactory.isRemoved(this)) { if (entityFactory.isRemoved(this))
return true; return true;
}
if (getLeafsDirect().size() == 0 && getChildren().size() == 0) { if (getLeafsDirect().size() == 0 && getChildren().size() == 0)
return false; return false;
}
for (ILeaf leaf : getLeafsDirect()) { for (ILeaf leaf : getLeafsDirect())
if (((EntityImpl) leaf).isRemovedInternal() == false) { if (((EntityImpl) leaf).isRemovedInternal() == false)
return false; return false;
}
} for (IGroup g : getChildren())
for (IGroup g : getChildren()) { if (((EntityImpl) g).isRemovedInternal() == false)
if (((EntityImpl) g).isRemovedInternal() == false) {
return false; return false;
}
}
return true; return true;
} }
return entityFactory.isRemoved(this); return entityFactory.isRemoved(this);
} }
public boolean isAloneAndUnlinked() { public boolean isAloneAndUnlinked() {
if (isGroup()) { if (isGroup())
return false; return false;
}
for (Link link : entityFactory.getLinks()) { for (Link link : entityFactory.getLinks())
if (link.contains(this) && link.getType().isInvisible() == false) { if (link.contains(this) && link.getType().isInvisible() == false)
return false; return false;
}
}
return true; return true;
} }
@ -721,9 +708,9 @@ final public class EntityImpl implements ILeaf, IGroup {
} }
public void setSpecificColorTOBEREMOVED(ColorType type, HColor color) { public void setSpecificColorTOBEREMOVED(ColorType type, HColor color) {
if (color != null) { if (color != null)
this.colors = colors.add(type, color); this.colors = colors.add(type, color);
}
} }
public Collection<String> getPortShortNames() { public Collection<String> getPortShortNames() {
@ -780,9 +767,9 @@ final public class EntityImpl implements ILeaf, IGroup {
} }
public String getCodeLine() { public String getCodeLine() {
if (this.codeLine == null) { if (this.codeLine == null)
return null; return null;
}
return "" + this.codeLine.getPosition(); return "" + this.codeLine.getPosition();
} }

View File

@ -110,6 +110,7 @@ import net.sourceforge.plantuml.graphic.QuoteUtils;
import net.sourceforge.plantuml.graphic.StringBounder; import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock; import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.graphic.TextBlockUtils; import net.sourceforge.plantuml.graphic.TextBlockUtils;
import net.sourceforge.plantuml.graphic.USymbolFolder;
import net.sourceforge.plantuml.style.PName; import net.sourceforge.plantuml.style.PName;
import net.sourceforge.plantuml.style.SName; import net.sourceforge.plantuml.style.SName;
import net.sourceforge.plantuml.style.Style; import net.sourceforge.plantuml.style.Style;
@ -310,8 +311,16 @@ public class CucaDiagramFileMakerElk implements CucaDiagramFileMaker {
// Unfortunately, we have to translate "edge" in its own "cluster" coordinate // Unfortunately, we have to translate "edge" in its own "cluster" coordinate
final Point2D translate = getPosition(edge.getContainingNode()); final Point2D translate = getPosition(edge.getContainingNode());
final double magicY2 = 0;
final IEntity dest = link.getEntity2();
if (dest.getUSymbol() instanceof USymbolFolder) {
// System.err.println("dest=" + dest);
// final IEntityImage image = printEntityInternal((ILeaf) dest);
// System.err.println("image=" + image);
}
final ElkPath elkPath = new ElkPath(diagram, SName.classDiagram, link, edge, getLabel(link), final ElkPath elkPath = new ElkPath(diagram, SName.classDiagram, link, edge, getLabel(link),
getQualifier(link, 1), getQualifier(link, 2)); getQualifier(link, 1), getQualifier(link, 2), magicY2);
elkPath.drawU(ug.apply(new UTranslate(translate))); elkPath.drawU(ug.apply(new UTranslate(translate)));
} }

View File

@ -71,7 +71,6 @@ import net.sourceforge.plantuml.elk.proxy.graph.ElkLabel;
import net.sourceforge.plantuml.graphic.TextBlock; import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.graphic.UDrawable; import net.sourceforge.plantuml.graphic.UDrawable;
import net.sourceforge.plantuml.graphic.color.ColorType; import net.sourceforge.plantuml.graphic.color.ColorType;
import net.sourceforge.plantuml.skin.rose.Rose;
import net.sourceforge.plantuml.style.PName; import net.sourceforge.plantuml.style.PName;
import net.sourceforge.plantuml.style.SName; import net.sourceforge.plantuml.style.SName;
import net.sourceforge.plantuml.style.Style; import net.sourceforge.plantuml.style.Style;
@ -94,11 +93,13 @@ public class ElkPath implements UDrawable {
private final TextBlock centerLabel; private final TextBlock centerLabel;
private final TextBlock headLabel; private final TextBlock headLabel;
private final TextBlock tailLabel; private final TextBlock tailLabel;
private final Rose rose = new Rose();
private final SName styleName; private final SName styleName;
private final double magicY2;
public ElkPath(CucaDiagram diagram, SName styleName, Link link, ElkEdge edge, TextBlock centerLabel, public ElkPath(CucaDiagram diagram, SName styleName, Link link, ElkEdge edge, TextBlock centerLabel,
TextBlock tailLabel, TextBlock headLabel) { TextBlock tailLabel, TextBlock headLabel, double magicY2) {
this.link = link; this.link = link;
this.edge = edge; this.edge = edge;
@ -107,6 +108,7 @@ public class ElkPath implements UDrawable {
this.tailLabel = tailLabel; this.tailLabel = tailLabel;
this.headLabel = headLabel; this.headLabel = headLabel;
this.styleName = styleName; this.styleName = styleName;
this.magicY2 = magicY2;
} }
@ -170,13 +172,13 @@ public class ElkPath implements UDrawable {
private UDrawable getDecors(LinkDecor decors, double angle, HColor backColor) { private UDrawable getDecors(LinkDecor decors, double angle, HColor backColor) {
// For legacy reason, extends are treated differently // For legacy reason, extends are treated differently
if (decors == LinkDecor.EXTENDS) { if (decors == LinkDecor.EXTENDS)
return new ExtremityFactoryExtends(backColor).createUDrawable(new Point2D.Double(), angle, null); return new ExtremityFactoryExtends(backColor).createUDrawable(new Point2D.Double(), angle, null);
}
final ExtremityFactory extremityFactory = decors.getExtremityFactory(backColor); final ExtremityFactory extremityFactory = decors.getExtremityFactory(backColor);
if (extremityFactory == null) { if (extremityFactory == null)
return null; return null;
}
return extremityFactory.createUDrawable(new Point2D.Double(), angle, null); return extremityFactory.createUDrawable(new Point2D.Double(), angle, null);
} }
@ -213,12 +215,11 @@ public class ElkPath implements UDrawable {
y1 = pt.getY(); y1 = pt.getY();
} }
drawLine(ug, x1, y1, section.getEndX(), section.getEndY()); drawLine(ug, x1, y1, section.getEndX(), section.getEndY() + magicY2);
} }
} }
private void drawLine(UGraphic ug, final double x1, final double y1, final double x2, final double y2) { private void drawLine(UGraphic ug, double x1, double y1, double x2, double y2) {
final ULine line = new ULine(x2 - x1, y2 - y1); final ULine line = new ULine(x2 - x1, y2 - y1);
ug.apply(new UTranslate(x1, y1)).draw(line); ug.apply(new UTranslate(x1, y1)).draw(line);
} }

View File

@ -58,25 +58,11 @@ public class TextBlockBordered extends AbstractTextBlock implements TextBlock {
private final double left; private final double left;
private final UStroke stroke; private final UStroke stroke;
private final boolean withShadow; private final boolean withShadow;
private final String id;
private final TextBlock textBlock; private final TextBlock textBlock;
TextBlockBordered(TextBlock textBlock, UStroke stroke, HColor borderColor, HColor backgroundColor, TextBlockBordered(TextBlock textBlock, UStroke stroke, HColor borderColor, HColor backgroundColor,
double cornersize, double marginX, double marginY) { double cornersize, ClockwiseTopRightBottomLeft margins, String id) {
this.top = marginY;
this.right = marginX;
this.bottom = marginY;
this.left = marginX;
this.cornersize = cornersize;
this.textBlock = textBlock;
this.withShadow = false;
this.stroke = stroke;
this.borderColor = borderColor;
this.backgroundColor = backgroundColor;
}
TextBlockBordered(TextBlock textBlock, UStroke stroke, HColor borderColor, HColor backgroundColor,
double cornersize, ClockwiseTopRightBottomLeft margins) {
this.top = margins.getTop(); this.top = margins.getTop();
this.right = margins.getRight(); this.right = margins.getRight();
this.bottom = margins.getBottom(); this.bottom = margins.getBottom();
@ -87,11 +73,7 @@ public class TextBlockBordered extends AbstractTextBlock implements TextBlock {
this.stroke = stroke; this.stroke = stroke;
this.borderColor = borderColor; this.borderColor = borderColor;
this.backgroundColor = backgroundColor; this.backgroundColor = backgroundColor;
} this.id = id;
TextBlockBordered(TextBlock textBlock, UStroke stroke, HColor borderColor, HColor backgroundColor,
double cornersize) {
this(textBlock, stroke, borderColor, backgroundColor, cornersize, 6, 5);
} }
private double getTextHeight(StringBounder stringBounder) { private double getTextHeight(StringBounder stringBounder) {
@ -115,16 +97,16 @@ public class TextBlockBordered extends AbstractTextBlock implements TextBlock {
} }
private UGraphic applyStroke(UGraphic ug) { private UGraphic applyStroke(UGraphic ug) {
if (stroke == null) { if (stroke == null)
return ug; return ug;
}
return ug.apply(stroke); return ug.apply(stroke);
} }
private boolean noBorder() { private boolean noBorder() {
if (stroke == null) { if (stroke == null)
return false; return false;
}
return stroke.getThickness() == 0; return stroke.getThickness() == 0;
} }
@ -132,32 +114,32 @@ public class TextBlockBordered extends AbstractTextBlock implements TextBlock {
final StringBounder stringBounder = ug.getStringBounder(); final StringBounder stringBounder = ug.getStringBounder();
final Shadowable polygon = getPolygonNormal(stringBounder); final Shadowable polygon = getPolygonNormal(stringBounder);
final UGraphic ugOriginal = ug; final UGraphic ugOriginal = ug;
if (withShadow) { if (withShadow)
polygon.setDeltaShadow(4); polygon.setDeltaShadow(4);
}
if (backgroundColor == null) { if (backgroundColor == null)
ug = ug.apply(new HColorNone().bg()); ug = ug.apply(new HColorNone().bg());
} else { else
ug = ug.apply(backgroundColor.bg()); ug = ug.apply(backgroundColor.bg());
}
HColor color = noBorder() ? backgroundColor : borderColor; HColor color = noBorder() ? backgroundColor : borderColor;
if (color == null) { if (color == null)
color = new HColorNone(); color = new HColorNone();
}
ug = ug.apply(color); ug = ug.apply(color);
ug = applyStroke(ug); ug = applyStroke(ug);
ug.draw(polygon); ug.draw(polygon);
TextBlock toDraw = textBlock; TextBlock toDraw = textBlock;
if (textBlock instanceof SheetBlock2) { if (textBlock instanceof SheetBlock2)
toDraw = ((SheetBlock2) textBlock).enlargeMe(left, right); toDraw = ((SheetBlock2) textBlock).enlargeMe(left, right);
}
toDraw.drawU(ugOriginal.apply(color).apply(new UTranslate(left, top))); toDraw.drawU(ugOriginal.apply(color).apply(new UTranslate(left, top)));
} }
private Shadowable getPolygonNormal(final StringBounder stringBounder) { private Shadowable getPolygonNormal(final StringBounder stringBounder) {
final double height = getTextHeight(stringBounder); final double height = getTextHeight(stringBounder);
final double width = getTextWidth(stringBounder); final double width = getTextWidth(stringBounder);
return new URectangle(width, height).rounded(cornersize); return new URectangle(width, height).rounded(cornersize).withCommentAndCodeLine(id, null);
} }
} }

View File

@ -42,9 +42,7 @@ import java.awt.geom.Rectangle2D;
import net.sourceforge.plantuml.Dimension2DDouble; import net.sourceforge.plantuml.Dimension2DDouble;
import net.sourceforge.plantuml.FileFormat; import net.sourceforge.plantuml.FileFormat;
import net.sourceforge.plantuml.ISkinParam;
import net.sourceforge.plantuml.awt.geom.Dimension2D; import net.sourceforge.plantuml.awt.geom.Dimension2D;
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.posimo.Positionable; import net.sourceforge.plantuml.posimo.Positionable;
import net.sourceforge.plantuml.posimo.PositionableImpl; import net.sourceforge.plantuml.posimo.PositionableImpl;
import net.sourceforge.plantuml.style.ClockwiseTopRightBottomLeft; import net.sourceforge.plantuml.style.ClockwiseTopRightBottomLeft;
@ -63,22 +61,8 @@ public class TextBlockUtils {
public static final TextBlock EMPTY_TEXT_BLOCK = TextBlockUtils.empty(0, 0); public static final TextBlock EMPTY_TEXT_BLOCK = TextBlockUtils.empty(0, 0);
public static TextBlock bordered(TextBlock textBlock, UStroke stroke, HColor borderColor, HColor backgroundColor, public static TextBlock bordered(TextBlock textBlock, UStroke stroke, HColor borderColor, HColor backgroundColor,
double cornersize) { double cornersize, ClockwiseTopRightBottomLeft margins, String id) {
return new TextBlockBordered(textBlock, stroke, borderColor, backgroundColor, cornersize); return new TextBlockBordered(textBlock, stroke, borderColor, backgroundColor, cornersize, margins, id);
}
public static TextBlock bordered(TextBlock textBlock, UStroke stroke, HColor borderColor, HColor backgroundColor,
double cornersize, double marginX, double marginY) {
return new TextBlockBordered(textBlock, stroke, borderColor, backgroundColor, cornersize, marginX, marginY);
}
public static TextBlock bordered(TextBlock textBlock, UStroke stroke, HColor borderColor, HColor backgroundColor,
double cornersize, ClockwiseTopRightBottomLeft margins) {
return new TextBlockBordered(textBlock, stroke, borderColor, backgroundColor, cornersize, margins);
}
public static TextBlock title(FontConfiguration font, Display stringsToDisplay, ISkinParam skinParam) {
throw new UnsupportedOperationException();
} }
public static TextBlock withMargin(TextBlock textBlock, double marginX, double marginY) { public static TextBlock withMargin(TextBlock textBlock, double marginX, double marginY) {

View File

@ -45,6 +45,7 @@ import net.sourceforge.plantuml.command.MultilinesStrategy;
import net.sourceforge.plantuml.command.regex.IRegex; import net.sourceforge.plantuml.command.regex.IRegex;
import net.sourceforge.plantuml.command.regex.RegexConcat; import net.sourceforge.plantuml.command.regex.RegexConcat;
import net.sourceforge.plantuml.command.regex.RegexLeaf; import net.sourceforge.plantuml.command.regex.RegexLeaf;
import net.sourceforge.plantuml.command.regex.RegexOptional;
import net.sourceforge.plantuml.command.regex.RegexResult; import net.sourceforge.plantuml.command.regex.RegexResult;
import net.sourceforge.plantuml.cucadiagram.BodierMap; import net.sourceforge.plantuml.cucadiagram.BodierMap;
import net.sourceforge.plantuml.cucadiagram.Code; import net.sourceforge.plantuml.cucadiagram.Code;
@ -59,7 +60,9 @@ import net.sourceforge.plantuml.cucadiagram.LinkType;
import net.sourceforge.plantuml.cucadiagram.Stereotype; import net.sourceforge.plantuml.cucadiagram.Stereotype;
import net.sourceforge.plantuml.graphic.color.ColorParser; import net.sourceforge.plantuml.graphic.color.ColorParser;
import net.sourceforge.plantuml.graphic.color.ColorType; import net.sourceforge.plantuml.graphic.color.ColorType;
import net.sourceforge.plantuml.graphic.color.Colors;
import net.sourceforge.plantuml.objectdiagram.AbstractClassOrObjectDiagram; import net.sourceforge.plantuml.objectdiagram.AbstractClassOrObjectDiagram;
import net.sourceforge.plantuml.ugraphic.color.HColor;
import net.sourceforge.plantuml.ugraphic.color.NoSuchColorException; import net.sourceforge.plantuml.ugraphic.color.NoSuchColorException;
public class CommandCreateMap extends CommandMultilines2<AbstractClassOrObjectDiagram> { public class CommandCreateMap extends CommandMultilines2<AbstractClassOrObjectDiagram> {
@ -78,12 +81,19 @@ public class CommandCreateMap extends CommandMultilines2<AbstractClassOrObjectDi
RegexLeaf.spaceZeroOrMore(), // RegexLeaf.spaceZeroOrMore(), //
new RegexLeaf("URL", "(" + UrlBuilder.getRegexp() + ")?"), // new RegexLeaf("URL", "(" + UrlBuilder.getRegexp() + ")?"), //
RegexLeaf.spaceZeroOrMore(), // RegexLeaf.spaceZeroOrMore(), //
ColorParser.exp1(), // color().getRegex(), //
RegexLeaf.spaceZeroOrMore(), //
new RegexOptional(new RegexConcat(new RegexLeaf("##"),
new RegexLeaf("LINECOLOR", "(?:\\[(dotted|dashed|bold)\\])?(\\w+)?"))), //
RegexLeaf.spaceZeroOrMore(), // RegexLeaf.spaceZeroOrMore(), //
new RegexLeaf("\\{"), // new RegexLeaf("\\{"), //
RegexLeaf.end()); RegexLeaf.end());
} }
private static ColorParser color() {
return ColorParser.simpleColor(ColorType.BACK);
}
@Override @Override
public String getPatternEnd() { public String getPatternEnd() {
return "^[%s]*\\}[%s]*$"; return "^[%s]*\\}[%s]*$";
@ -143,9 +153,20 @@ public class CommandCreateMap extends CommandMultilines2<AbstractClassOrObjectDi
diagram.getSkinParam().getFont(null, false, FontParam.CIRCLED_CHARACTER), diagram.getSkinParam().getFont(null, false, FontParam.CIRCLED_CHARACTER),
diagram.getSkinParam().getIHtmlColorSet())); diagram.getSkinParam().getIHtmlColorSet()));
final String s = line0.get("COLOR", 0); Colors colors = color().getColor(diagram.getSkinParam().getThemeStyle(), line0,
entity.setSpecificColorTOBEREMOVED(ColorType.BACK, s == null ? null diagram.getSkinParam().getIHtmlColorSet());
: diagram.getSkinParam().getIHtmlColorSet().getColor(diagram.getSkinParam().getThemeStyle(), s)); final String s = line0.get("LINECOLOR", 1);
final HColor lineColor = s == null ? null
: diagram.getSkinParam().getIHtmlColorSet().getColor(diagram.getSkinParam().getThemeStyle(), s);
if (lineColor != null)
colors = colors.add(ColorType.LINE, lineColor);
if (line0.get("LINECOLOR", 0) != null)
colors = colors.addLegacyStroke(line0.get("LINECOLOR", 0));
entity.setColors(colors);
return entity; return entity;
} }

View File

@ -73,6 +73,6 @@ public class PngTitler {
if (display == null) if (display == null)
return null; return null;
return style.createTextBlockBordered(display, set, spriteContainer); return style.createTextBlockBordered(display, set, spriteContainer, Style.ID_TITLE);
} }
} }

View File

@ -51,9 +51,9 @@ public class ReadLineReader implements ReadLine {
private final String description; private final String description;
private ReadLineReader(Reader reader, String description, LineLocation parent) { private ReadLineReader(Reader reader, String description, LineLocation parent) {
if (description == null) { if (description == null)
description = "?"; description = "?";
}
this.br = new BufferedReader(reader); this.br = new BufferedReader(reader);
this.location = new LineLocationImpl(description, parent); this.location = new LineLocationImpl(description, parent);
this.description = description; this.description = description;
@ -80,16 +80,16 @@ public class ReadLineReader implements ReadLine {
public StringLocated readLine() throws IOException { public StringLocated readLine() throws IOException {
String s = br.readLine(); String s = br.readLine();
location = location.oneLineRead(); location = location.oneLineRead();
if (s == null) { if (s == null)
return null; return null;
}
// if (s.length() > LIMIT) { // if (s.length() > LIMIT) {
// Log.debug("Line truncated from " + s.length() + " to " + LIMIT); // Log.debug("Line truncated from " + s.length() + " to " + LIMIT);
// s = s.substring(0, LIMIT); // s = s.substring(0, LIMIT);
// } // }
if (s.startsWith("\uFEFF")) { if (s.startsWith("\uFEFF"))
s = s.substring(1); s = s.substring(1);
}
s = s.replace('\u2013', '-'); s = s.replace('\u2013', '-');
// s = BackSlash.convertHiddenNewLine(s); // s = BackSlash.convertHiddenNewLine(s);
// s = s.replace('\u00A0', ' '); // s = s.replace('\u00A0', ' ');

View File

@ -244,7 +244,7 @@ public class SURL {
} }
private boolean forbiddenURL(String full) { private boolean forbiddenURL(String full) {
if (full.matches("^https?://[.0-9]+/.*")) if (full.matches("^https?://[-#.0-9:\\[\\]+]+/.*"))
return true; return true;
if (full.matches("^https?://[^.]+/.*")) if (full.matches("^https?://[^.]+/.*"))
return true; return true;

View File

@ -149,7 +149,7 @@ public class SequenceDiagramFileMakerPuma2 implements FileMaker {
final Style style = StyleSignatureBasic.of(SName.root, SName.document, SName.title) final Style style = StyleSignatureBasic.of(SName.root, SName.document, SName.title)
.getMergedStyle(diagram.getSkinParam().getCurrentStyleBuilder()); .getMergedStyle(diagram.getSkinParam().getCurrentStyleBuilder());
compTitle = style.createTextBlockBordered(page.getTitle(), diagram.getSkinParam().getIHtmlColorSet(), compTitle = style.createTextBlockBordered(page.getTitle(), diagram.getSkinParam().getIHtmlColorSet(),
diagram.getSkinParam()); diagram.getSkinParam(), Style.ID_TITLE);
final Dimension2D dimTitle = compTitle.calculateDimension(stringBounder); final Dimension2D dimTitle = compTitle.calculateDimension(stringBounder);
area.setTitleArea(dimTitle.getWidth(), dimTitle.getHeight()); area.setTitleArea(dimTitle.getWidth(), dimTitle.getHeight());
} }
@ -163,7 +163,7 @@ public class SequenceDiagramFileMakerPuma2 implements FileMaker {
final Style style = StyleSignatureBasic.of(SName.root, SName.document, SName.legend) final Style style = StyleSignatureBasic.of(SName.root, SName.document, SName.legend)
.getMergedStyle(diagram.getSkinParam().getCurrentStyleBuilder()); .getMergedStyle(diagram.getSkinParam().getCurrentStyleBuilder());
legendBlock = style.createTextBlockBordered(diagram.getLegend().getDisplay(), legendBlock = style.createTextBlockBordered(diagram.getLegend().getDisplay(),
diagram.getSkinParam().getIHtmlColorSet(), diagram.getSkinParam()); diagram.getSkinParam().getIHtmlColorSet(), diagram.getSkinParam(), Style.ID_LEGEND);
} }
final Dimension2D dimLegend = legendBlock.calculateDimension(stringBounder); final Dimension2D dimLegend = legendBlock.calculateDimension(stringBounder);
area.setLegend(dimLegend, isLegendTop(), diagram.getLegend().getHorizontalAlignment()); area.setLegend(dimLegend, isLegendTop(), diagram.getLegend().getHorizontalAlignment());

View File

@ -209,7 +209,7 @@ public class SequenceDiagramFileMakerTeoz implements FileMaker {
final Style style = StyleSignatureBasic.of(SName.root, SName.document, SName.title) final Style style = StyleSignatureBasic.of(SName.root, SName.document, SName.title)
.getMergedStyle(diagram.getSkinParam().getCurrentStyleBuilder()); .getMergedStyle(diagram.getSkinParam().getCurrentStyleBuilder());
final TextBlock compTitle = style.createTextBlockBordered(diagram.getTitle().getDisplay(), final TextBlock compTitle = style.createTextBlockBordered(diagram.getTitle().getDisplay(),
diagram.getSkinParam().getIHtmlColorSet(), diagram.getSkinParam()); diagram.getSkinParam().getIHtmlColorSet(), diagram.getSkinParam(), Style.ID_TITLE);
return compTitle; return compTitle;
} }

View File

@ -150,11 +150,10 @@ public class ComponentRoseArrow extends AbstractComponentRoseArrow {
if (inclination1 == 0 && inclination2 == 0) if (inclination1 == 0 && inclination2 == 0)
getArrowConfiguration().applyStroke(ug).apply(new UTranslate(start, posArrow)).draw(new ULine(len, 0)); getArrowConfiguration().applyStroke(ug).apply(new UTranslate(start, posArrow)).draw(new ULine(len, 0));
else if (inclination1 != 0) { else if (inclination1 != 0)
drawLine(getArrowConfiguration().applyStroke(ug), start + len, posArrow, 0, posArrow + inclination1); drawLine(getArrowConfiguration().applyStroke(ug), start + len, posArrow, 0, posArrow + inclination1);
} else if (inclination2 != 0) { else if (inclination2 != 0)
drawLine(getArrowConfiguration().applyStroke(ug), start, posArrow, pos2, posArrow + inclination2); drawLine(getArrowConfiguration().applyStroke(ug), start, posArrow, pos2, posArrow + inclination2);
}
final ArrowDirection direction2 = getDirection2(); final ArrowDirection direction2 = getDirection2();
final double textPos; final double textPos;
@ -203,10 +202,12 @@ public class ComponentRoseArrow extends AbstractComponentRoseArrow {
if (dressing.getHead() == ArrowHead.ASYNC) { if (dressing.getHead() == ArrowHead.ASYNC) {
if (dressing.getPart() != ArrowPart.BOTTOM_PART) if (dressing.getPart() != ArrowPart.BOTTOM_PART)
getArrowConfiguration().applyThicknessOnly(ug).draw(new ULine(getArrowDeltaX(), -getArrowDeltaY())); getArrowConfiguration().applyThicknessOnly(ug).draw(
new ULine(getArrowDeltaX(), -getArrowDeltaY()).rotate(Math.atan2(-inclination1, lenFull)));
if (dressing.getPart() != ArrowPart.TOP_PART) if (dressing.getPart() != ArrowPart.TOP_PART)
getArrowConfiguration().applyThicknessOnly(ug).draw(new ULine(getArrowDeltaX(), getArrowDeltaY())); getArrowConfiguration().applyThicknessOnly(ug)
.draw(new ULine(getArrowDeltaX(), getArrowDeltaY()).rotate(Math.atan2(-inclination1, lenFull)));
} else if (dressing.getHead() == ArrowHead.CROSSX) { } else if (dressing.getHead() == ArrowHead.CROSSX) {
ug = ug.apply(new UStroke(2)); ug = ug.apply(new UStroke(2));
@ -237,10 +238,12 @@ public class ComponentRoseArrow extends AbstractComponentRoseArrow {
if (dressing.getHead() == ArrowHead.ASYNC) { if (dressing.getHead() == ArrowHead.ASYNC) {
if (dressing.getPart() != ArrowPart.BOTTOM_PART) if (dressing.getPart() != ArrowPart.BOTTOM_PART)
getArrowConfiguration().applyThicknessOnly(ug).draw(new ULine(-getArrowDeltaX(), -getArrowDeltaY())); getArrowConfiguration().applyThicknessOnly(ug).draw(
new ULine(-getArrowDeltaX(), -getArrowDeltaY()).rotate(Math.atan2(inclination2, lenFull)));
if (dressing.getPart() != ArrowPart.TOP_PART) if (dressing.getPart() != ArrowPart.TOP_PART)
getArrowConfiguration().applyThicknessOnly(ug).draw(new ULine(-getArrowDeltaX(), getArrowDeltaY())); getArrowConfiguration().applyThicknessOnly(ug)
.draw(new ULine(-getArrowDeltaX(), getArrowDeltaY()).rotate(Math.atan2(inclination2, lenFull)));
} else if (dressing.getHead() == ArrowHead.CROSSX) { } else if (dressing.getHead() == ArrowHead.CROSSX) {
ug = ug.apply(new UStroke(2)); ug = ug.apply(new UStroke(2));

View File

@ -269,8 +269,12 @@ public class Style {
final FontConfiguration fc = getFontConfiguration(spriteContainer.getThemeStyle(), set); final FontConfiguration fc = getFontConfiguration(spriteContainer.getThemeStyle(), set);
return display.create(fc, alignment, spriteContainer); return display.create(fc, alignment, spriteContainer);
} }
public static final String ID_TITLE = "_title";
public static final String ID_CAPTION = "_caption";
public static final String ID_LEGEND = "_legend";
public TextBlock createTextBlockBordered(Display note, HColorSet set, ISkinSimple spriteContainer) { public TextBlock createTextBlockBordered(Display note, HColorSet set, ISkinSimple spriteContainer, String id) {
final HorizontalAlignment alignment = this.getHorizontalAlignment(); final HorizontalAlignment alignment = this.getHorizontalAlignment();
final TextBlock textBlock = this.createTextBlockInternal(note, set, spriteContainer, alignment); final TextBlock textBlock = this.createTextBlockInternal(note, set, spriteContainer, alignment);
@ -281,7 +285,7 @@ public class Style {
final ClockwiseTopRightBottomLeft margin = this.getMargin(); final ClockwiseTopRightBottomLeft margin = this.getMargin();
final ClockwiseTopRightBottomLeft padding = this.getPadding(); final ClockwiseTopRightBottomLeft padding = this.getPadding();
final TextBlock result = TextBlockUtils.bordered(textBlock, stroke, lineColor, backgroundColor, cornersize, final TextBlock result = TextBlockUtils.bordered(textBlock, stroke, lineColor, backgroundColor, cornersize,
padding); padding, id);
return TextBlockUtils.withMargin(result, margin); return TextBlockUtils.withMargin(result, margin);
} }

View File

@ -70,9 +70,9 @@ public class ClusterDecoration {
} }
private static USymbol guess(USymbol symbol, PackageStyle style) { private static USymbol guess(USymbol symbol, PackageStyle style) {
if (symbol != null) { if (symbol != null)
return symbol; return symbol;
}
return style.toUSymbol(); return style.toUSymbol();
} }

View File

@ -169,14 +169,14 @@ public class EntityImageClass extends AbstractEntityImage implements Stencil, Wi
double shadow = 0; double shadow = 0;
HColor classBorder = lineConfig.getColors().getColor(ColorType.LINE); HColor borderColor = lineConfig.getColors().getColor(ColorType.LINE);
HColor headerBackcolor = getEntity().getColors().getColor(ColorType.HEADER); HColor headerBackcolor = getEntity().getColors().getColor(ColorType.HEADER);
HColor backcolor = getEntity().getColors().getColor(ColorType.BACK); HColor backcolor = getEntity().getColors().getColor(ColorType.BACK);
shadow = getStyle().value(PName.Shadowing).asDouble(); shadow = getStyle().value(PName.Shadowing).asDouble();
if (classBorder == null) if (borderColor == null)
classBorder = getStyle().value(PName.LineColor).asColor(getSkinParam().getThemeStyle(), borderColor = getStyle().value(PName.LineColor).asColor(getSkinParam().getThemeStyle(),
getSkinParam().getIHtmlColorSet()); getSkinParam().getIHtmlColorSet());
if (headerBackcolor == null) if (headerBackcolor == null)
@ -189,7 +189,7 @@ public class EntityImageClass extends AbstractEntityImage implements Stencil, Wi
rect.setDeltaShadow(shadow); rect.setDeltaShadow(shadow);
ug = ug.apply(classBorder); ug = ug.apply(borderColor);
ug = ug.apply(backcolor.bg()); ug = ug.apply(backcolor.bg());
final UStroke stroke = getStyle().getStroke(lineConfig.getColors()); final UStroke stroke = getStyle().getStroke(lineConfig.getColors());

View File

@ -156,13 +156,16 @@ public class EntityImageMap extends AbstractEntityImage implements Stencil, With
final double heightTotal = dimTotal.getHeight(); final double heightTotal = dimTotal.getHeight();
final Shadowable rect = new URectangle(widthTotal, heightTotal).rounded(roundCorner); final Shadowable rect = new URectangle(widthTotal, heightTotal).rounded(roundCorner);
HColor borderColor = lineConfig.getColors().getColor(ColorType.LINE);
HColor backcolor = getEntity().getColors().getColor(ColorType.BACK); HColor backcolor = getEntity().getColors().getColor(ColorType.BACK);
HColor headerBackcolor = getEntity().getColors().getColor(ColorType.HEADER); HColor headerBackcolor = getEntity().getColors().getColor(ColorType.HEADER);
final Style style = getStyle(); final Style style = getStyle();
final HColor borderColor = style.value(PName.LineColor).asColor(getSkinParam().getThemeStyle(),
getSkinParam().getIHtmlColorSet()); if (borderColor == null)
borderColor = getStyle().value(PName.LineColor).asColor(getSkinParam().getThemeStyle(),
getSkinParam().getIHtmlColorSet());
if (headerBackcolor == null) if (headerBackcolor == null)
headerBackcolor = backcolor == null ? getStyleHeader().value(PName.BackGroundColor) headerBackcolor = backcolor == null ? getStyleHeader().value(PName.BackGroundColor)
.asColor(getSkinParam().getThemeStyle(), getSkinParam().getIHtmlColorSet()) : backcolor; .asColor(getSkinParam().getThemeStyle(), getSkinParam().getIHtmlColorSet()) : backcolor;
@ -170,7 +173,7 @@ public class EntityImageMap extends AbstractEntityImage implements Stencil, With
if (backcolor == null) if (backcolor == null)
backcolor = style.value(PName.BackGroundColor).asColor(getSkinParam().getThemeStyle(), backcolor = style.value(PName.BackGroundColor).asColor(getSkinParam().getThemeStyle(),
getSkinParam().getIHtmlColorSet()); getSkinParam().getIHtmlColorSet());
rect.setDeltaShadow(style.value(PName.Shadowing).asDouble()); rect.setDeltaShadow(style.value(PName.Shadowing).asDouble());
final UStroke stroke = style.getStroke(); final UStroke stroke = style.getStroke();
@ -184,7 +187,7 @@ public class EntityImageMap extends AbstractEntityImage implements Stencil, With
typeIDent.put(UGroupType.ID, "elem_" + getEntity().getCode()); typeIDent.put(UGroupType.ID, "elem_" + getEntity().getCode());
ug.startGroup(typeIDent); ug.startGroup(typeIDent);
ug.apply(stroke).draw(rect); ug.apply(stroke).draw(rect);
if (roundCorner == 0 && headerBackcolor != null && backcolor.equals(headerBackcolor) == false) { if (roundCorner == 0 && headerBackcolor != null && backcolor.equals(headerBackcolor) == false) {
final Shadowable rect2 = new URectangle(widthTotal, dimTitle.getHeight()); final Shadowable rect2 = new URectangle(widthTotal, dimTitle.getHeight());
final UGraphic ugHeader = ug.apply(headerBackcolor.bg()); final UGraphic ugHeader = ug.apply(headerBackcolor.bg());

View File

@ -46,6 +46,7 @@ import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.UDrawable; import net.sourceforge.plantuml.graphic.UDrawable;
import net.sourceforge.plantuml.ugraphic.UBackground; import net.sourceforge.plantuml.ugraphic.UBackground;
import net.sourceforge.plantuml.ugraphic.UChange; import net.sourceforge.plantuml.ugraphic.UChange;
import net.sourceforge.plantuml.ugraphic.UEllipse;
import net.sourceforge.plantuml.ugraphic.UEmpty; import net.sourceforge.plantuml.ugraphic.UEmpty;
import net.sourceforge.plantuml.ugraphic.UGraphic; import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UGraphicNo; import net.sourceforge.plantuml.ugraphic.UGraphicNo;
@ -111,6 +112,8 @@ public class Footprint {
drawPath(x, y, (UPath) shape); drawPath(x, y, (UPath) shape);
} else if (shape instanceof URectangle) { } else if (shape instanceof URectangle) {
drawRectangle(x, y, (URectangle) shape); drawRectangle(x, y, (URectangle) shape);
} else if (shape instanceof UEllipse) {
drawEllipse(x, y, (UEllipse) shape);
} else if (shape instanceof UEmpty) { } else if (shape instanceof UEmpty) {
drawEmpty(x, y, (UEmpty) shape); drawEmpty(x, y, (UEmpty) shape);
} else { } else {
@ -153,6 +156,11 @@ public class Footprint {
addPoint(x + rect.getWidth(), y + rect.getHeight()); addPoint(x + rect.getWidth(), y + rect.getHeight());
} }
private void drawEllipse(double x, double y, UEllipse rect) {
addPoint(x, y);
addPoint(x + rect.getWidth(), y + rect.getHeight());
}
private void drawEmpty(double x, double y, UEmpty rect) { private void drawEmpty(double x, double y, UEmpty rect) {
addPoint(x, y); addPoint(x, y);
addPoint(x + rect.getWidth(), y + rect.getHeight()); addPoint(x + rect.getWidth(), y + rect.getHeight());

View File

@ -38,6 +38,7 @@ import static java.nio.charset.StandardCharsets.UTF_8;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.IOException; import java.io.IOException;
import java.io.Reader;
import java.io.UnsupportedEncodingException; import java.io.UnsupportedEncodingException;
import net.sourceforge.plantuml.AFile; import net.sourceforge.plantuml.AFile;
@ -114,7 +115,11 @@ public class EaterTheme extends Eater {
try { try {
final FileWithSuffix file = context.getFileWithSuffix(from, realName); final FileWithSuffix file = context.getFileWithSuffix(from, realName);
return ReadLineReader.create(file.getReader(UTF_8), "theme " + realName); final Reader tmp = file.getReader(UTF_8);
if (tmp == null)
throw EaterException.located("No such theme " + realName);
return ReadLineReader.create(tmp, "theme " + realName);
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
throw EaterException.located("Cannot load " + realName); throw EaterException.located("Cannot load " + realName);

View File

@ -151,7 +151,8 @@ public class Ribbon implements PDrawing {
private void drawNotes(UGraphic ug, final Position position) { private void drawNotes(UGraphic ug, final Position position) {
for (TimingNote note : notes) for (TimingNote note : notes)
if (note.getPosition() == position) { if (note.getPosition() == position) {
final double x = ruler.getPosInPixel(note.getWhen()); final TimeTick when = note.getWhen();
final double x = when == null ? 0 : ruler.getPosInPixel(when);
note.drawU(ug.apply(UTranslate.dx(x))); note.drawU(ug.apply(UTranslate.dx(x)));
} }
} }

View File

@ -35,6 +35,7 @@
*/ */
package net.sourceforge.plantuml.ugraphic; package net.sourceforge.plantuml.ugraphic;
import java.awt.geom.AffineTransform;
import java.awt.geom.Point2D; import java.awt.geom.Point2D;
public class ULine extends AbstractShadowable implements UShapeSized { public class ULine extends AbstractShadowable implements UShapeSized {
@ -51,6 +52,14 @@ public class ULine extends AbstractShadowable implements UShapeSized {
this.dy = dy; this.dy = dy;
} }
public ULine rotate(double theta) {
if (theta == 0)
return this;
final AffineTransform rot = AffineTransform.getRotateInstance(theta);
final Point2D result = rot.transform(new Point2D.Double(dx, dy), null);
return new ULine(result.getX(), result.getY());
}
public static ULine hline(double dx) { public static ULine hline(double dx) {
return new ULine(dx, 0); return new ULine(dx, 0);
} }

View File

@ -80,7 +80,7 @@ public class Version {
} }
public static int beta() { public static int beta() {
final int beta = 0; final int beta = 1;
return beta; return beta;
} }

View File

@ -44,15 +44,15 @@ import java.util.regex.Pattern;
public class YamlLines implements Iterable<String> { public class YamlLines implements Iterable<String> {
public static final String KEY = "([^:\\s]+)"; public static final String KEY = "([^:]+)";
private List<String> lines = new ArrayList<>(); private List<String> lines = new ArrayList<>();
public YamlLines(List<String> rawLines) { public YamlLines(List<String> rawLines) {
for (String s : rawLines) { for (String s : rawLines) {
if (s.startsWith("#")) { if (s.startsWith("#"))
continue; continue;
}
s = removeDiese(s); s = removeDiese(s);
if (s.trim().length() == 0) if (s.trim().length() == 0)
continue; continue;
@ -79,9 +79,9 @@ public class YamlLines implements Iterable<String> {
private String removeDiese(String s) { private String removeDiese(String s) {
final int idx = s.indexOf(" #"); final int idx = s.indexOf(" #");
if (idx == -1) { if (idx == -1)
return s; return s;
}
return s.substring(0, idx); return s.substring(0, idx);
} }
@ -104,9 +104,9 @@ public class YamlLines implements Iterable<String> {
} }
private void removeFirstCols(int startingEmptyCols) { private void removeFirstCols(int startingEmptyCols) {
if (startingEmptyCols == 0) { if (startingEmptyCols == 0)
return; return;
}
for (ListIterator<String> it = lines.listIterator(); it.hasNext();) { for (ListIterator<String> it = lines.listIterator(); it.hasNext();) {
final String s = it.next().substring(startingEmptyCols); final String s = it.next().substring(startingEmptyCols);
it.set(s); it.set(s);
@ -117,9 +117,8 @@ public class YamlLines implements Iterable<String> {
int result = Integer.MAX_VALUE; int result = Integer.MAX_VALUE;
for (String s : lines) { for (String s : lines) {
result = Math.min(result, startingSpaces(s)); result = Math.min(result, startingSpaces(s));
if (result == 0) { if (result == 0)
return 0; return 0;
}
} }
return result; return result;
} }
@ -127,9 +126,9 @@ public class YamlLines implements Iterable<String> {
private static int startingSpaces(String s) { private static int startingSpaces(String s) {
final Pattern p1 = Pattern.compile("^(\\s*).*"); final Pattern p1 = Pattern.compile("^(\\s*).*");
final Matcher m1 = p1.matcher(s); final Matcher m1 = p1.matcher(s);
if (m1.matches()) { if (m1.matches())
return m1.group(1).length(); return m1.group(1).length();
}
return 0; return 0;
} }