package com.tom_roush.pdfbox.pdmodel.common.function.type4; import java.util.Stack; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Basic parser for Type 4 functions which is used to build up instruction sequences. */ public final class InstructionSequenceBuilder extends Parser.AbstractSyntaxHandler { private final InstructionSequence mainSequence = new InstructionSequence(); private final Stack<InstructionSequence> seqStack = new Stack<InstructionSequence>(); private InstructionSequenceBuilder() { this.seqStack.push(this.mainSequence); } /** * Returns the instruction sequence that has been build from the syntactic elements. * @return the instruction sequence */ public InstructionSequence getInstructionSequence() { return this.mainSequence; } /** * Parses the given text into an instruction sequence representing a Type 4 function * that can be executed. * @param text the Type 4 function text * @return the instruction sequence */ public static InstructionSequence parse(CharSequence text) { InstructionSequenceBuilder builder = new InstructionSequenceBuilder(); Parser.parse(text, builder); return builder.getInstructionSequence(); } private InstructionSequence getCurrentSequence() { return this.seqStack.peek(); } private static final Pattern INTEGER_PATTERN = Pattern.compile("[\\+\\-]?\\d+"); private static final Pattern REAL_PATTERN = Pattern.compile("[\\-]?\\d*\\.\\d*([Ee]\\-?\\d+)?"); /** {@inheritDoc} */ @Override public void token(CharSequence text) { String token = text.toString(); token(token); } private void token(String token) { if ("{".equals(token)) { InstructionSequence child = new InstructionSequence(); getCurrentSequence().addProc(child); this.seqStack.push(child); } else if ("}".equals(token)) { this.seqStack.pop(); } else { Matcher m = INTEGER_PATTERN.matcher(token); if (m.matches()) { getCurrentSequence().addInteger(parseInt(token)); return; } m = REAL_PATTERN.matcher(token); if (m.matches()) { getCurrentSequence().addReal(parseReal(token)); return; } //TODO Maybe implement radix numbers, such as 8#1777 or 16#FFFE getCurrentSequence().addName(token); } } /** * Parses a value of type "int". * @param token the token to be parsed * @return the parsed value */ public static int parseInt(String token) { if (token.startsWith("+")) { token = token.substring(1); } return Integer.parseInt(token); } /** * Parses a value of type "real". * @param token the token to be parsed * @return the parsed value */ public static float parseReal(String token) { return Float.parseFloat(token); } }