Class ParseOps

java.lang.Object
com.adobe.internal.pdftoolkit.core.util.ParseOps

public final class ParseOps extends Object
This class provides many utility methods related to parsing of stream.
  • Method Details

    • readHex

      public static byte[] readHex(InputByteStream buf) throws IOException, PDFParseException
      Parses a hexidecimal character string into a byte array. A pair of hex characters forms the value stored in a single byte of the array. Hexidecimal strings are defined in section 3.2.3 of the PDF Reference Manual version 1.4.
      Parameters:
      buf - Buffer to parse
      Returns:
      Data corresponding to the hex string
      Throws:
      IOException
      PDFParseException - If there is a syntax error.
    • skipHex

      public static void skipHex(InputByteStream buf) throws IOException, PDFParseException
      Skips a hexidecimal character string. A pair of hex characters forms the value stored in a single byte of the array. Hexidecimal strings are defined in section 3.2.3 of the PDF Reference Manual version 1.4.
      Parameters:
      buf - Buffer to parse
      Throws:
      IOException
      PDFParseException - If there is a syntax error.
    • skipLiteral

      public static void skipLiteral(InputByteStream inBuf) throws IOException
      This API skips all the literals in the stream passed.
      Throws:
      IOException
    • readLiteral

      public static byte[] readLiteral(InputByteStream inBuf) throws IOException, PDFParseException
      This API reads the literals and returns as byte array.
      Throws:
      PDFParseException
      IOException
    • readName

      public static ASName readName(InputByteStream buf) throws IOException, PDFParseException
      Parses an atom from the PDF byte stream. An atom can be thought of as a COS name as defined in section 3.2.4 of the PDF Reference Manual version 1.4.
      Parameters:
      buf - PDF data buffer to parse
      Returns:
      ASName parsed from the buffer
      Throws:
      IOException
      PDFParseException
    • skipName

      public static void skipName(InputByteStream buf) throws IOException, PDFParseException
      Skips an atom from the PDF byte stream. An atom can be thought of as a COS name as defined in section 3.2.4 of the PDF Reference Manual version 1.4.
      Parameters:
      buf - PDF data buffer to parse
      Throws:
      IOException
      PDFParseException
    • readNumber

      public static ASNumber readNumber(byte first, InputByteStream buf) throws PDFParseException, IOException
      Parses a numerical value from the PDF byte stream. A numeric object is defined in section 3.2.2 of the PDF Reference Manual version 1.4.
      Parameters:
      first - Starting byte to parse
      buf - Byte stream to parse
      Returns:
      Parsed number.
      Throws:
      IOException
      PDFParseException
    • skipNumber

      public static void skipNumber(byte first, InputByteStream buf) throws PDFParseException, IOException
      Skips over a numerical value from the PDF byte stream. A numeric object is defined in section 3.2.2 of the PDF Reference Manual version 1.4.
      Parameters:
      first - Starting byte to parse
      buf - Byte stream to parse
      Throws:
      IOException
      PDFParseException
    • skipWhitespace

      public static byte skipWhitespace(InputByteStream buf) throws IOException
      Skips over whitespace in the input stream. Whitespace is defined in section 3.1.1 of the PDF Reference Manual version 1.4. For the purposes of this method, comments are also considered whitespace.
      Parameters:
      buf - Buffer to parse
      Returns:
      The first non-whitespace byte encountered.
      Throws:
      IOException
    • getEndObjPos

      public static long getEndObjPos(InputByteStream mBuf) throws IOException
      Gets the position of endobj keyword in this stream. If EOL is encountered before finding "endobj" -1 will be returned.
      Parameters:
      mBuf -
      Returns:
      long
      Throws:
      IOException