use of org.kie.workbench.common.stunner.svg.gen.exception.GeneratorException in project kie-wb-common by kiegroup.
the class SVGGeneratorImpl method generate.
@Override
public StringBuffer generate(final SVGGeneratorRequest request) throws GeneratorException {
final String name = request.getName();
final String pkg = request.getPkg();
final String typeOf = request.getImplementedType();
final String cssPath = request.getCssPath();
final Map<String, String> viewSources = request.getViewSources();
final ViewFactoryImpl viewFactory = new ViewFactoryImpl(name, pkg, typeOf);
// Process the global CSS declaration specified in the factory, if any.
final StyleSheetDefinition[] styleSheetDefinition = new StyleSheetDefinition[1];
if (null != cssPath && cssPath.trim().length() > 0) {
final InputStream cssStream = loadResource(cssPath);
if (null != cssStream) {
try {
styleSheetDefinition[0] = SVGStyleTranslator.parseStyleSheetDefinition(cssPath, cssStream);
viewFactory.setStyleSheetDefinition(styleSheetDefinition[0]);
} catch (Exception e) {
throw new RuntimeException("Error while processing the glocal CSS file [" + cssPath + "] ", e);
}
}
}
// Process all SVG files specified in the factory.
// TODO: Hmmm
final Set<String> processedSvgIds = new LinkedHashSet<>();
viewSources.forEach((fMethodName, svgPath) -> {
parseSVGViewSource(fMethodName, svgPath, styleSheetDefinition[0], result -> {
result.setId(fMethodName);
result.setFactoryMethodName(fMethodName);
viewFactory.getViewDefinitions().add(result);
});
processedSvgIds.add(fMethodName);
});
// Parse referenced svg files as well, if any.
final List<ViewDefinition<?>> referencedViewDefinitions = new LinkedList<>();
viewFactory.getViewDefinitions().stream().flatMap(v -> v.getSVGViewRefs().stream()).filter(vd -> !processedSvgIds.contains(vd.getViewRefId())).forEach(vd -> parseSVGViewSource(vd.getViewRefId(), vd.getFilePath(), styleSheetDefinition[0], result -> {
final String id = SVGGeneratorFormatUtils.getValidInstanceId(result);
result.setFactoryMethodName(id);
referencedViewDefinitions.add(result);
processedSvgIds.add(id);
}));
viewFactory.getViewDefinitions().addAll(referencedViewDefinitions);
return viewFactoryGenerator.generate(viewFactory);
}
use of org.kie.workbench.common.stunner.svg.gen.exception.GeneratorException in project kie-wb-common by kiegroup.
the class SVGGeneratorImpl method parseSVGView.
private ViewDefinitionImpl parseSVGView(final String viewId, final String svgPath, final InputStream svgStream, final StyleSheetDefinition styleSheetDefinition) throws Exception {
ViewDefinitionImpl svgShapeViewSource = null;
try {
Document root = parse(svgStream);
svgShapeViewSource = translate(viewId, svgPath, root, styleSheetDefinition);
} catch (final Exception e) {
throw new GeneratorException(e);
}
return svgShapeViewSource;
}
use of org.kie.workbench.common.stunner.svg.gen.exception.GeneratorException in project kie-wb-common by kiegroup.
the class ImageDefinitionGenerator method doGenerate.
@Override
public StringBuffer doGenerate(final ImageDefinition input) throws GeneratorException {
final String href = input.getHref();
final Map<String, Object> root = new HashMap<>();
root.put("className", Picture.class.getName());
root.put("href", href);
// Generate the code using the given template.
try {
return writeTemplate(root);
} catch (final GenerationException e) {
throw new GeneratorException(e);
}
}
use of org.kie.workbench.common.stunner.svg.gen.exception.GeneratorException in project kie-wb-common by kiegroup.
the class MultiPathDefinitionGenerator method doGenerate.
@Override
public StringBuffer doGenerate(final MultiPathDefinition input) throws GeneratorException {
final Map<String, Object> root = new HashMap<String, Object>();
root.put("className", MultiPath.class.getName());
root.put("pathInstanceId", SVGViewFactoryGenerator.getStaticFieldValidId(input.getId()));
// Generate the code using the given template.
try {
return writeTemplate(root);
} catch (final GenerationException e) {
throw new GeneratorException(e);
}
}
use of org.kie.workbench.common.stunner.svg.gen.exception.GeneratorException in project kie-wb-common by kiegroup.
the class SVGViewDefinitionGenerator method generate.
@Override
@SuppressWarnings("unchecked")
public StringBuffer generate(final ViewFactory viewFactory, final ViewDefinition<SVGShapeView> viewDefinition) throws GeneratorException {
StringBuffer result = null;
final String factoryName = viewFactory.getSimpleName();
final String viewId = viewDefinition.getId();
final String methodName = viewDefinition.getFactoryMethodName();
final ShapeDefinition main = viewDefinition.getMain();
if (null != main) {
final Map<String, Object> root = new HashMap<>();
// Generate the children primitives.
final List<String> childrenRaw = new LinkedList<>();
final List<PrimitiveDefinition> children = viewDefinition.getChildren();
for (final PrimitiveDefinition child : children) {
final String childId = SVGGeneratorFormatUtils.getValidInstanceId(child);
String childRaw = SVGPrimitiveGeneratorUtils.generateSvgPrimitive(childId, SVGViewDefinitionGenerator::getGenerator, child);
if (null != childRaw) {
childrenRaw.add(childRaw);
childrenRaw.add(AbstractGenerator.formatString(PRIM_CHILD_TEMPLATE, childId));
}
}
// SVG View children.
final List<String> svgChildrenRaw = new LinkedList<>();
final List<ViewRefDefinition> svgViewRefs = viewDefinition.getSVGViewRefs();
svgViewRefs.forEach(viewRef -> {
final String parent = viewRef.getParent();
final String svgName = viewRef.getFilePath();
final String viewRefId = viewRef.getViewRefId();
final boolean existReferencedView = viewFactory.getViewDefinitions().stream().anyMatch(def -> viewRefId.equals(def.getId()));
if (existReferencedView) {
final String childRaw = formatString(SVG_CHILD_TEMPLATE, parent, factoryName, viewRefId);
svgChildrenRaw.add(childRaw);
} else {
throw new RuntimeException("The view [" + viewRefId + "] references " + "another the view [" + svgName + "], but no factory method " + "for it exists in [" + viewFactory.getImplementedType() + "]");
}
});
// Look for the state shape view.
final List<ShapeDefinition> stateViews = new LinkedList<>();
SVGModelUtils.visit(viewDefinition, p -> {
if (p instanceof ShapeDefinition && SVGPrimitiveGeneratorUtils.CAN_GENERATE_PRIMITIVE_CODE.test(p)) {
final ShapeDefinition shapeDefinition = (ShapeDefinition) p;
shapeDefinition.getStateDefinition().ifPresent(s -> stateViews.add((ShapeDefinition) p));
}
});
final String stateViewIds = stateViews.isEmpty() ? "view" : stateViews.stream().map(d -> SVGGeneratorFormatUtils.getValidInstanceId(d.getId())).collect(Collectors.joining(","));
final String stateViewPolicyType = stateViews.isEmpty() ? ShapeStateDefaultHandler.RenderType.STROKE.name() : ((ShapeDefinition.ShapeStateDefinition) stateViews.get(0).getStateDefinition().get()).name();
final String stateViewPolicy = ShapeStateDefaultHandler.RenderType.class.getName().replace("$", ".") + "." + stateViewPolicyType.toUpperCase();
// Generate the main shape.
final PrimitiveDefinitionGenerator<PrimitiveDefinition<?>> mainGenerator = getGenerator(main);
final StringBuffer mainBuffer = mainGenerator.generate(main);
final LayoutDefinition mainLayoutDefinition = main.getLayoutDefinition();
final String mainLayoutRaw = SVGPrimitiveGeneratorUtils.formatLayout(mainLayoutDefinition);
// Generate the view's text styling stuff.
final StyleSheetDefinition globalStyleSheetDefinition = ((ViewDefinitionImpl) viewDefinition).getGlobalStyleSheetDefinition();
final String viewTextRaw = null != globalStyleSheetDefinition ? SVGShapeTextCodeBuilder.generate("view", viewId, globalStyleSheetDefinition) : "";
// Populate the context and generate using the template.
root.put("viewId", viewId);
root.put("name", methodName);
root.put("mainShape", mainBuffer.toString());
root.put("layout", mainLayoutRaw);
root.put("width", formatDouble(viewDefinition.getWidth()));
root.put("height", formatDouble(viewDefinition.getHeight()));
root.put("text", viewTextRaw);
root.put("stateViewIds", stateViewIds);
root.put("stateViewPolicy", stateViewPolicy);
root.put("children", childrenRaw);
root.put("svgChildren", svgChildrenRaw);
try {
result = writeTemplate(root);
} catch (final GenerationException e) {
throw new GeneratorException(e);
}
}
return result;
}
Aggregations