package org.jboss.xml.binding;
import org.jboss.logging.Logger;
import org.jboss.xml.binding.parser.JBossXBParser;
import org.jboss.xml.binding.parser.xni.XniJBossXBParser;
import org.jboss.xml.binding.parser.sax.SaxJBossXBParser;
import org.jboss.util.xml.JBossEntityResolver;
import org.xml.sax.EntityResolver;
import org.xml.sax.ErrorHandler;
import org.xml.sax.InputSource;
import java.io.Reader;
import java.io.InputStream;
public class Unmarshaller
{
private static final Logger log = Logger.getLogger(Unmarshaller.class);
public static final String VALIDATION = "http://xml.org/sax/features/validation";
public static final String NAMESPACES = "http://xml.org/sax/features/namespaces";
public static final String NAMESPACE_PREFIXES = "http://xml.org/sax/features/namespace-prefixes";
public static final String DYNAMIC_VALIDATION = "http://apache.org/xml/features/validation/dynamic";
public static final String SCHEMA_VALIDATION = "http://apache.org/xml/features/validation/schema";
public static final String SCHEMA_FULL_CHECKING = "http://apache.org/xml/features/validation/schema-full-checking";
private ObjectModelBuilder builder = new ObjectModelBuilder();
private final JBossXBParser parser;
public Unmarshaller()
throws JBossXBException
{
this(false);
}
public Unmarshaller(boolean useXniParser)
throws JBossXBException
{
if( useXniParser == true )
parser = new XniJBossXBParser();
else
parser = new SaxJBossXBParser();
parser.setFeature(VALIDATION, true);
parser.setFeature(SCHEMA_VALIDATION, true);
parser.setFeature(SCHEMA_FULL_CHECKING, true);
parser.setFeature(DYNAMIC_VALIDATION, true);
parser.setFeature(NAMESPACES, true);
parser.setEntityResolver(new JBossEntityResolver());
}
public void setValidation(boolean validation)
throws JBossXBException
{
parser.setFeature(VALIDATION, validation);
}
public void setNamespaceAware(boolean namespaces)
throws JBossXBException
{
parser.setFeature(NAMESPACES, namespaces);
}
public void setEntityResolver(EntityResolver entityResolver) throws JBossXBException
{
parser.setEntityResolver(entityResolver);
}
public void setErrorHandler(ErrorHandler errorHandler)
{
}
public void mapFactoryToNamespace(ObjectModelFactory factory, String namespaceUri)
{
builder.mapFactoryToNamespace(getGenericObjectModelFactory(factory), namespaceUri);
}
public Object unmarshal(Reader reader, ObjectModelFactory factory, Object root) throws JBossXBException
{
builder.init(getGenericObjectModelFactory(factory), root);
parser.parse(reader, builder);
return builder.getRoot();
}
public Object unmarshal(InputStream is, ObjectModelFactory factory, Object root) throws JBossXBException
{
builder.init(getGenericObjectModelFactory(factory), root);
parser.parse(is, builder);
return builder.getRoot();
}
public Object unmarshal(String systemId, ObjectModelFactory factory, Object root)
throws JBossXBException
{
builder.init(getGenericObjectModelFactory(factory), root);
parser.parse(systemId, builder);
return builder.getRoot();
}
public Object unmarshal(InputSource is, ObjectModelFactory factory, Object root) throws JBossXBException
{
Object result;
if(is.getCharacterStream() != null)
{
result = unmarshal(is.getCharacterStream(), factory, root);
}
else if(is.getByteStream() != null)
{
result = unmarshal(is.getByteStream(), factory, root);
}
else
{
result = unmarshal(is.getSystemId(), factory, root);
}
return result;
}
private static final GenericObjectModelFactory getGenericObjectModelFactory(ObjectModelFactory factory)
{
if(!(factory instanceof GenericObjectModelFactory))
{
factory = new DelegatingObjectModelFactory(factory);
}
return factory instanceof GenericObjectModelFactory ? (GenericObjectModelFactory)factory : new DelegatingObjectModelFactory(factory);
}
}