org.apache.tika.parser.iwork
Class IWorkPackageParser

java.lang.Object
  extended by org.apache.tika.parser.AbstractParser
      extended by org.apache.tika.parser.iwork.IWorkPackageParser
All Implemented Interfaces:
Serializable, org.apache.tika.parser.Parser

public class IWorkPackageParser
extends org.apache.tika.parser.AbstractParser

A parser for the IWork container files. This includes *.key, *.pages and *.numbers files. This parser delegates the relevant entries to a ContentHandler that parsers the content. Currently supported formats:

  1. Keynote format version 2.x. Currently only tested with Keynote version 5.x
  2. Pages format version 1.x. Currently only tested with Pages version 4.0.x
  3. Numbers format version 1.x. Currently only tested with Numbers version 2.0.x

See Also:
Serialized Form

Nested Class Summary
static class IWorkPackageParser.IWORKDocumentType
           
 
Field Summary
static String IWORK_COMMON_ENTRY
          All iWork files contain one of these, so we can detect based on it
static Set<String> IWORK_CONTENT_ENTRIES
          Which files within an iWork file contain the actual content?
 
Constructor Summary
IWorkPackageParser()
           
 
Method Summary
 Set<org.apache.tika.mime.MediaType> getSupportedTypes(org.apache.tika.parser.ParseContext context)
           
 void parse(InputStream stream, ContentHandler handler, org.apache.tika.metadata.Metadata metadata, org.apache.tika.parser.ParseContext context)
           
 
Methods inherited from class org.apache.tika.parser.AbstractParser
parse
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

IWORK_CONTENT_ENTRIES

public static final Set<String> IWORK_CONTENT_ENTRIES
Which files within an iWork file contain the actual content?


IWORK_COMMON_ENTRY

public static final String IWORK_COMMON_ENTRY
All iWork files contain one of these, so we can detect based on it

See Also:
Constant Field Values
Constructor Detail

IWorkPackageParser

public IWorkPackageParser()
Method Detail

getSupportedTypes

public Set<org.apache.tika.mime.MediaType> getSupportedTypes(org.apache.tika.parser.ParseContext context)

parse

public void parse(InputStream stream,
                  ContentHandler handler,
                  org.apache.tika.metadata.Metadata metadata,
                  org.apache.tika.parser.ParseContext context)
           throws IOException,
                  SAXException,
                  org.apache.tika.exception.TikaException
Throws:
IOException
SAXException
org.apache.tika.exception.TikaException


Copyright © 2007-2013 The Apache Software Foundation. All Rights Reserved.