
org.ow2.easybeans.persistence.eclipselink.deployment.BundleArchive Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easybeans-persistence-eclipselink-2.4.x Show documentation
Show all versions of easybeans-persistence-eclipselink-2.4.x Show documentation
Easybeans Eclipselink ${eclipselink.version} bundle
The newest version!
/**
* EasyBeans
* Copyright (C) 2010-2012 Bull S.A.S.
* Contact: [email protected]
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* --------------------------------------------------------------------------
* $Id: BundleArchive.java 6005 2011-10-17 12:59:28Z benoitf $
* --------------------------------------------------------------------------
*/
package org.ow2.easybeans.persistence.eclipselink.deployment;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.List;
import org.eclipse.persistence.internal.jpa.deployment.ArchiveBase;
import org.eclipse.persistence.jpa.Archive;
import org.osgi.framework.BundleContext;
import org.ow2.easybeans.util.osgi.BCMapper;
public class BundleArchive extends ArchiveBase implements Archive {
/**
* List of URLs of the bundle.
*/
private Enumeration urlEntries = null;
/**
* List of entris inside this bundle.
*/
private List entries = null;
public BundleArchive(URL url, String descriptorLocation) {
super(url, descriptorLocation);
this.entries = new ArrayList();
BCMapper mapper = BCMapper.getInstance();
BundleContext bc = mapper.get(getRootURL());
// Get all the URLs of this bundle
this.urlEntries = bc.getBundle().findEntries("", "*", true);
// Adds only entries of the bundle
while (urlEntries.hasMoreElements()) {
URL urlEntry = urlEntries.nextElement();
String entryName = urlEntry.toString().substring(getRootURL().toString().length());
this.entries.add(entryName);
}
}
/**
* Returns an {@link java.util.Iterator} of the file entries. Each String represents
* a file name relative to the root of the module.
*/
public Iterator getEntries() {
return entries.iterator();
}
/**
* Returns the InputStream for the given entry name. Returns null if no such
* entry exists. The entry name must be relative to the root of the module.
*
* @param entryPath the file name relative to the root of the module.
* @return the InputStream for the given entry name or null if not found.
*/
public InputStream getEntry(String entryPath) throws IOException {
URL subEntry = new URL(getRootURL(), entryPath);
InputStream is = null;
try {
is = subEntry.openStream();
} catch (IOException ioe) {
// we return null when entry does not exist
}
return is;
}
/**
* Returns the URL for the given entry name. Returns null if no such
* entry exists. The entry name must be relative to the root of the module.
*
* @param entryPath the file name relative to the root of the module.
* @return the URL for the given entry name or null if not found.
*/
public URL getEntryAsURL(String entryPath) throws IOException {
URL subEntry = new URL(getRootURL(), entryPath);
try {
InputStream is = subEntry.openStream();
// on Knopflerfish, stream is null (no exception)
if (is != null) {
is.close();
} else {
return null;
}
} catch (IOException ioe) {
return null; // return null when entry does not exist
}
return subEntry;
}
public void close() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy