/* * Copyright 2016 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "SkCanvas.h" #include "SkDOM.h" #include "SkParsePath.h" #include "SkString.h" #include "SkSVGAttributeParser.h" #include "SkSVGDOM.h" #include "SkSVGG.h" #include "SkSVGNode.h" #include "SkSVGPath.h" #include "SkSVGPoly.h" #include "SkSVGRect.h" #include "SkSVGRenderContext.h" #include "SkSVGSVG.h" #include "SkSVGTypes.h" #include "SkSVGValue.h" #include "SkTSearch.h" namespace { bool SetPaintAttribute(const sk_sp& node, SkSVGAttribute attr, const char* stringValue) { SkSVGPaint paint; SkSVGAttributeParser parser(stringValue); if (!parser.parsePaint(&paint)) { // Until we have paint server support, failing here will cause default/all-black rendering. // It's better to just not draw for now. paint = SkSVGPaint(SkSVGPaint::Type::kNone); // return false; } node->setAttribute(attr, SkSVGPaintValue(paint)); return true; } bool SetPathDataAttribute(const sk_sp& node, SkSVGAttribute attr, const char* stringValue) { SkPath path; if (!SkParsePath::FromSVGString(stringValue, &path)) { return false; } node->setAttribute(attr, SkSVGPathValue(path)); return true; } bool SetTransformAttribute(const sk_sp& node, SkSVGAttribute attr, const char* stringValue) { SkSVGTransformType transform; SkSVGAttributeParser parser(stringValue); if (!parser.parseTransform(&transform)) { return false; } node->setAttribute(attr, SkSVGTransformValue(transform)); return true; } bool SetLengthAttribute(const sk_sp& node, SkSVGAttribute attr, const char* stringValue) { SkSVGLength length; SkSVGAttributeParser parser(stringValue); if (!parser.parseLength(&length)) { return false; } node->setAttribute(attr, SkSVGLengthValue(length)); return true; } bool SetNumberAttribute(const sk_sp& node, SkSVGAttribute attr, const char* stringValue) { SkSVGNumberType number; SkSVGAttributeParser parser(stringValue); if (!parser.parseNumber(&number)) { return false; } node->setAttribute(attr, SkSVGNumberValue(number)); return true; } bool SetViewBoxAttribute(const sk_sp& node, SkSVGAttribute attr, const char* stringValue) { SkSVGViewBoxType viewBox; SkSVGAttributeParser parser(stringValue); if (!parser.parseViewBox(&viewBox)) { return false; } node->setAttribute(attr, SkSVGViewBoxValue(viewBox)); return true; } bool SetLineCapAttribute(const sk_sp& node, SkSVGAttribute attr, const char* stringValue) { SkSVGLineCap lineCap; SkSVGAttributeParser parser(stringValue); if (!parser.parseLineCap(&lineCap)) { return false; } node->setAttribute(attr, SkSVGLineCapValue(lineCap)); return true; } bool SetLineJoinAttribute(const sk_sp& node, SkSVGAttribute attr, const char* stringValue) { SkSVGLineJoin lineJoin; SkSVGAttributeParser parser(stringValue); if (!parser.parseLineJoin(&lineJoin)) { return false; } node->setAttribute(attr, SkSVGLineJoinValue(lineJoin)); return true; } bool SetPointsAttribute(const sk_sp& node, SkSVGAttribute attr, const char* stringValue) { SkSVGPointsType points; SkSVGAttributeParser parser(stringValue); if (!parser.parsePoints(&points)) { return false; } node->setAttribute(attr, SkSVGPointsValue(points)); return true; } SkString TrimmedString(const char* first, const char* last) { SkASSERT(first); SkASSERT(last); SkASSERT(first <= last); while (first <= last && *first <= ' ') { first++; } while (first <= last && *last <= ' ') { last--; } SkASSERT(last - first + 1 >= 0); return SkString(first, SkTo(last - first + 1)); } // Breaks a "foo: bar; baz: ..." string into key:value pairs. class StyleIterator { public: StyleIterator(const char* str) : fPos(str) { } std::tuple next() { SkString name, value; if (fPos) { const char* sep = this->nextSeparator(); SkASSERT(*sep == ';' || *sep == '\0'); const char* valueSep = strchr(fPos, ':'); if (valueSep && valueSep < sep) { name = TrimmedString(fPos, valueSep - 1); value = TrimmedString(valueSep + 1, sep - 1); } fPos = *sep ? sep + 1 : nullptr; } return std::make_tuple(name, value); } private: const char* nextSeparator() const { const char* sep = fPos; while (*sep != ';' && *sep != '\0') { sep++; } return sep; } const char* fPos; }; void set_string_attribute(const sk_sp& node, const char* name, const char* value); bool SetStyleAttributes(const sk_sp& node, SkSVGAttribute, const char* stringValue) { SkString name, value; StyleIterator iter(stringValue); for (;;) { std::tie(name, value) = iter.next(); if (name.isEmpty()) { break; } set_string_attribute(node, name.c_str(), value.c_str()); } return true; } template struct SortedDictionaryEntry { const char* fKey; const T fValue; }; struct AttrParseInfo { SkSVGAttribute fAttr; bool (*fSetter)(const sk_sp& node, SkSVGAttribute attr, const char* stringValue); }; SortedDictionaryEntry gAttributeParseInfo[] = { { "d" , { SkSVGAttribute::kD , SetPathDataAttribute }}, { "fill" , { SkSVGAttribute::kFill , SetPaintAttribute }}, { "fill-opacity" , { SkSVGAttribute::kFillOpacity , SetNumberAttribute }}, { "height" , { SkSVGAttribute::kHeight , SetLengthAttribute }}, { "opacity" , { SkSVGAttribute::kOpacity , SetNumberAttribute }}, { "points" , { SkSVGAttribute::kPoints , SetPointsAttribute }}, { "rx" , { SkSVGAttribute::kRx , SetLengthAttribute }}, { "ry" , { SkSVGAttribute::kRy , SetLengthAttribute }}, { "stroke" , { SkSVGAttribute::kStroke , SetPaintAttribute }}, { "stroke-linecap" , { SkSVGAttribute::kStrokeLineCap , SetLineCapAttribute }}, { "stroke-linejoin", { SkSVGAttribute::kStrokeLineJoin, SetLineJoinAttribute }}, { "stroke-opacity" , { SkSVGAttribute::kStrokeOpacity , SetNumberAttribute }}, { "stroke-width" , { SkSVGAttribute::kStrokeWidth , SetLengthAttribute }}, { "style" , { SkSVGAttribute::kUnknown , SetStyleAttributes }}, { "transform" , { SkSVGAttribute::kTransform , SetTransformAttribute }}, { "viewBox" , { SkSVGAttribute::kViewBox , SetViewBoxAttribute }}, { "width" , { SkSVGAttribute::kWidth , SetLengthAttribute }}, { "x" , { SkSVGAttribute::kX , SetLengthAttribute }}, { "y" , { SkSVGAttribute::kY , SetLengthAttribute }}, }; SortedDictionaryEntry(*)()> gTagFactories[] = { { "g" , []() -> sk_sp { return SkSVGG::Make(); }}, { "path" , []() -> sk_sp { return SkSVGPath::Make(); }}, { "polygon" , []() -> sk_sp { return SkSVGPoly::MakePolygon(); }}, { "polyline", []() -> sk_sp { return SkSVGPoly::MakePolyline(); }}, { "rect" , []() -> sk_sp { return SkSVGRect::Make(); }}, { "svg" , []() -> sk_sp { return SkSVGSVG::Make(); }}, }; struct ConstructionContext { ConstructionContext() : fParent(nullptr) { } ConstructionContext(const ConstructionContext& other, const sk_sp& newParent) : fParent(newParent.get()) { } const SkSVGNode* fParent; }; void set_string_attribute(const sk_sp& node, const char* name, const char* value) { const int attrIndex = SkStrSearch(&gAttributeParseInfo[0].fKey, SkTo(SK_ARRAY_COUNT(gAttributeParseInfo)), name, sizeof(gAttributeParseInfo[0])); if (attrIndex < 0) { #if defined(SK_VERBOSE_SVG_PARSING) SkDebugf("unhandled attribute: %s\n", name); #endif return; } SkASSERT(SkTo(attrIndex) < SK_ARRAY_COUNT(gAttributeParseInfo)); const auto& attrInfo = gAttributeParseInfo[attrIndex].fValue; if (!attrInfo.fSetter(node, attrInfo.fAttr, value)) { #if defined(SK_VERBOSE_SVG_PARSING) SkDebugf("could not parse attribute: '%s=\"%s\"'\n", name, value); #endif } } void parse_node_attributes(const SkDOM& xmlDom, const SkDOM::Node* xmlNode, const sk_sp& svgNode) { const char* name, *value; SkDOM::AttrIter attrIter(xmlDom, xmlNode); while ((name = attrIter.next(&value))) { set_string_attribute(svgNode, name, value); } } sk_sp construct_svg_node(const SkDOM& dom, const ConstructionContext& ctx, const SkDOM::Node* xmlNode) { const char* elem = dom.getName(xmlNode); const SkDOM::Type elemType = dom.getType(xmlNode); if (elemType == SkDOM::kText_Type) { SkASSERT(dom.countChildren(xmlNode) == 0); // TODO: text handling return nullptr; } SkASSERT(elemType == SkDOM::kElement_Type); const int tagIndex = SkStrSearch(&gTagFactories[0].fKey, SkTo(SK_ARRAY_COUNT(gTagFactories)), elem, sizeof(gTagFactories[0])); if (tagIndex < 0) { #if defined(SK_VERBOSE_SVG_PARSING) SkDebugf("unhandled element: <%s>\n", elem); #endif return nullptr; } SkASSERT(SkTo(tagIndex) < SK_ARRAY_COUNT(gTagFactories)); sk_sp node = gTagFactories[tagIndex].fValue(); parse_node_attributes(dom, xmlNode, node); ConstructionContext localCtx(ctx, node); for (auto* child = dom.getFirstChild(xmlNode, nullptr); child; child = dom.getNextSibling(child)) { sk_sp childNode = construct_svg_node(dom, localCtx, child); if (childNode) { node->appendChild(std::move(childNode)); } } return node; } } // anonymous namespace SkSVGDOM::SkSVGDOM(const SkSize& containerSize) : fContainerSize(containerSize) { } sk_sp SkSVGDOM::MakeFromDOM(const SkDOM& xmlDom, const SkSize& containerSize) { sk_sp dom = sk_make_sp(containerSize); ConstructionContext ctx; dom->fRoot = construct_svg_node(xmlDom, ctx, xmlDom.getRootNode()); return dom; } sk_sp SkSVGDOM::MakeFromStream(SkStream& svgStream, const SkSize& containerSize) { SkDOM xmlDom; if (!xmlDom.build(svgStream)) { return nullptr; } return MakeFromDOM(xmlDom, containerSize); } void SkSVGDOM::render(SkCanvas* canvas) const { if (fRoot) { SkSVGRenderContext ctx(canvas, SkSVGLengthContext(fContainerSize), SkSVGPresentationContext()); fRoot->render(ctx); } } void SkSVGDOM::setContainerSize(const SkSize& containerSize) { // TODO: inval fContainerSize = containerSize; } void SkSVGDOM::setRoot(sk_sp root) { fRoot = std::move(root); }