All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.boot.jaxb.internal.JarFileEntryXmlSource Maven / Gradle / Ivy

The newest version!
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.boot.jaxb.internal;

import java.io.IOException;
import java.io.InputStream;
import java.util.jar.JarFile;
import java.util.zip.ZipEntry;

import org.hibernate.boot.MappingException;
import org.hibernate.boot.jaxb.Origin;
import org.hibernate.boot.jaxb.spi.Binder;
import org.hibernate.boot.jaxb.spi.Binding;
import org.hibernate.boot.jaxb.spi.XmlSource;

/**
 * @author Steve Ebersole
 */
public class JarFileEntryXmlSource extends XmlSource {
	private final JarFile jarFile;
	private final ZipEntry jarFileEntry;

	public JarFileEntryXmlSource(
			Origin origin,
			JarFile jarFile,
			ZipEntry jarFileEntry) {
		super( origin );
		this.jarFile = jarFile;
		this.jarFileEntry = jarFileEntry;
	}

	@Override
	public Binding doBind(Binder binder) {
		final InputStream stream;
		try {
			stream = jarFile.getInputStream( jarFileEntry );
		}
		catch (IOException e) {
			throw new MappingException(
					String.format(
							"Unable to open InputStream for jar file entry [%s : %s]",
							jarFile.getName(),
							jarFileEntry.getName()
					),
					e,
					getOrigin()
			);
		}

		return InputStreamXmlSource.doBind( binder, stream, getOrigin(), true );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy