/*

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

 */
package org.apache.batik.parser;

import java.io.IOException;

This class implements an event-based parser for the SVG path's d attribute values.
Author:Stephane Hillion
Version:$Id: PathParser.java 1802297 2017-07-18 13:58:12Z ssteiner $
/** * This class implements an event-based parser for the SVG path's d * attribute values. * * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @version $Id: PathParser.java 1802297 2017-07-18 13:58:12Z ssteiner $ */
public class PathParser extends NumberParser {
The path handler used to report parse events.
/** * The path handler used to report parse events. */
protected PathHandler pathHandler;
Creates a new PathParser.
/** * Creates a new PathParser. */
public PathParser() { pathHandler = DefaultPathHandler.INSTANCE; }
Allows an application to register a path handler.

If the application does not register a handler, all events reported by the parser will be silently ignored.

Applications may register a new or different handler in the middle of a parse, and the parser must begin using the new handler immediately.

Params:
  • handler – The transform list handler.
/** * Allows an application to register a path handler. * * <p>If the application does not register a handler, all * events reported by the parser will be silently ignored. * * <p>Applications may register a new or different handler in the * middle of a parse, and the parser must begin using the new * handler immediately.</p> * @param handler The transform list handler. */
public void setPathHandler(PathHandler handler) { pathHandler = handler; }
Returns the path handler in use.
/** * Returns the path handler in use. */
public PathHandler getPathHandler() { return pathHandler; } protected void doParse() throws ParseException, IOException { pathHandler.startPath(); current = reader.read(); loop: for (;;) { try { switch (current) { case 0xD: case 0xA: case 0x20: case 0x9: current = reader.read(); break; case 'z': case 'Z': current = reader.read(); pathHandler.closePath(); break; case 'm': parsem(); break; case 'M': parseM(); break; case 'l': parsel(); break; case 'L': parseL(); break; case 'h': parseh(); break; case 'H': parseH(); break; case 'v': parsev(); break; case 'V': parseV(); break; case 'c': parsec(); break; case 'C': parseC(); break; case 'q': parseq(); break; case 'Q': parseQ(); break; case 's': parses(); break; case 'S': parseS(); break; case 't': parset(); break; case 'T': parseT(); break; case 'a': parsea(); break; case 'A': parseA(); break; case -1: break loop; default: reportUnexpected(current); break; } } catch (ParseException e) { errorHandler.error(e); skipSubPath(); } } skipSpaces(); if (current != -1) { reportError("end.of.stream.expected", new Object[] {current}); } pathHandler.endPath(); }
Parses a 'm' command.
/** * Parses a 'm' command. */
protected void parsem() throws ParseException, IOException { current = reader.read(); skipSpaces(); float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.movetoRel(x, y); boolean expectNumber = skipCommaSpaces2(); _parsel(expectNumber); }
Parses a 'M' command.
/** * Parses a 'M' command. */
protected void parseM() throws ParseException, IOException { current = reader.read(); skipSpaces(); float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.movetoAbs(x, y); boolean expectNumber = skipCommaSpaces2(); _parseL(expectNumber); }
Parses a 'l' command.
/** * Parses a 'l' command. */
protected void parsel() throws ParseException, IOException { current = reader.read(); skipSpaces(); _parsel(true); } protected void _parsel(boolean expectNumber) throws ParseException, IOException { for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.linetoRel(x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 'L' command.
/** * Parses a 'L' command. */
protected void parseL() throws ParseException, IOException { current = reader.read(); skipSpaces(); _parseL(true); } protected void _parseL(boolean expectNumber) throws ParseException, IOException { for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.linetoAbs(x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 'h' command.
/** * Parses a 'h' command. */
protected void parseh() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x = parseFloat(); pathHandler.linetoHorizontalRel(x); expectNumber = skipCommaSpaces2(); } }
Parses a 'H' command.
/** * Parses a 'H' command. */
protected void parseH() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x = parseFloat(); pathHandler.linetoHorizontalAbs(x); expectNumber = skipCommaSpaces2(); } }
Parses a 'v' command.
/** * Parses a 'v' command. */
protected void parsev() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x = parseFloat(); pathHandler.linetoVerticalRel(x); expectNumber = skipCommaSpaces2(); } }
Parses a 'V' command.
/** * Parses a 'V' command. */
protected void parseV() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x = parseFloat(); pathHandler.linetoVerticalAbs(x); expectNumber = skipCommaSpaces2(); } }
Parses a 'c' command.
/** * Parses a 'c' command. */
protected void parsec() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x1 = parseFloat(); skipCommaSpaces(); float y1 = parseFloat(); skipCommaSpaces(); float x2 = parseFloat(); skipCommaSpaces(); float y2 = parseFloat(); skipCommaSpaces(); float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.curvetoCubicRel(x1, y1, x2, y2, x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 'C' command.
/** * Parses a 'C' command. */
protected void parseC() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x1 = parseFloat(); skipCommaSpaces(); float y1 = parseFloat(); skipCommaSpaces(); float x2 = parseFloat(); skipCommaSpaces(); float y2 = parseFloat(); skipCommaSpaces(); float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.curvetoCubicAbs(x1, y1, x2, y2, x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 'q' command.
/** * Parses a 'q' command. */
protected void parseq() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x1 = parseFloat(); skipCommaSpaces(); float y1 = parseFloat(); skipCommaSpaces(); float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.curvetoQuadraticRel(x1, y1, x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 'Q' command.
/** * Parses a 'Q' command. */
protected void parseQ() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x1 = parseFloat(); skipCommaSpaces(); float y1 = parseFloat(); skipCommaSpaces(); float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.curvetoQuadraticAbs(x1, y1, x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 's' command.
/** * Parses a 's' command. */
protected void parses() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x2 = parseFloat(); skipCommaSpaces(); float y2 = parseFloat(); skipCommaSpaces(); float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.curvetoCubicSmoothRel(x2, y2, x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 'S' command.
/** * Parses a 'S' command. */
protected void parseS() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x2 = parseFloat(); skipCommaSpaces(); float y2 = parseFloat(); skipCommaSpaces(); float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.curvetoCubicSmoothAbs(x2, y2, x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 't' command.
/** * Parses a 't' command. */
protected void parset() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.curvetoQuadraticSmoothRel(x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 'T' command.
/** * Parses a 'T' command. */
protected void parseT() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.curvetoQuadraticSmoothAbs(x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 'a' command.
/** * Parses a 'a' command. */
protected void parsea() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float rx = parseFloat(); skipCommaSpaces(); float ry = parseFloat(); skipCommaSpaces(); float ax = parseFloat(); skipCommaSpaces(); boolean laf; switch (current) { default: reportUnexpected(current); return; case '0': laf = false; break; case '1': laf = true; break; } current = reader.read(); skipCommaSpaces(); boolean sf; switch (current) { default: reportUnexpected(current); return; case '0': sf = false; break; case '1': sf = true; break; } current = reader.read(); skipCommaSpaces(); float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.arcRel(rx, ry, ax, laf, sf, x, y); expectNumber = skipCommaSpaces2(); } }
Parses a 'A' command.
/** * Parses a 'A' command. */
protected void parseA() throws ParseException, IOException { current = reader.read(); skipSpaces(); boolean expectNumber = true; for (;;) { switch (current) { default: if (expectNumber) reportUnexpected(current); return; case '+': case '-': case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; } float rx = parseFloat(); skipCommaSpaces(); float ry = parseFloat(); skipCommaSpaces(); float ax = parseFloat(); skipCommaSpaces(); boolean laf; switch (current) { default: reportUnexpected(current); return; case '0': laf = false; break; case '1': laf = true; break; } current = reader.read(); skipCommaSpaces(); boolean sf; switch (current) { default: reportUnexpected(current); return; case '0': sf = false; break; case '1': sf = true; break; } current = reader.read(); skipCommaSpaces(); float x = parseFloat(); skipCommaSpaces(); float y = parseFloat(); pathHandler.arcAbs(rx, ry, ax, laf, sf, x, y); expectNumber = skipCommaSpaces2(); } }
Skips a sub-path.
/** * Skips a sub-path. */
protected void skipSubPath() throws ParseException, IOException { for (;;) { switch (current) { case -1: case 'm': case 'M': return; default: break; } current = reader.read(); } } protected void reportUnexpected(int ch) throws ParseException, IOException { reportUnexpectedCharacterError( current ); skipSubPath(); }
Skips the whitespaces and an optional comma.
Returns:true if comma was skipped.
/** * Skips the whitespaces and an optional comma. * @return true if comma was skipped. */
protected boolean skipCommaSpaces2() throws IOException { wsp1: for (;;) { switch (current) { default: break wsp1; case 0x20: case 0x9: case 0xD: case 0xA: break; } current = reader.read(); } if (current != ',') return false; // no comma. wsp2: for (;;) { switch (current = reader.read()) { default: break wsp2; case 0x20: case 0x9: case 0xD: case 0xA: break; } } return true; // had comma } }