org.jpos.q2.install.ModuleUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpos Show documentation
Show all versions of jpos Show documentation
jPOS is an ISO-8583 based financial transaction
library/framework that can be customized and
extended in order to implement financial interchanges.
/*
* jPOS Project [http://jpos.org]
* Copyright (C) 2000-2013 Alejandro P. Revilla
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package org.jpos.q2.install;
import java.io.File;
import java.io.IOException;
import java.net.JarURLConnection;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Enumeration;
import java.util.List;
import java.util.jar.JarEntry;
/**
* @author vsalaman
*/
public class ModuleUtils
{
public static List getModuleEntries(String prefix) throws IOException
{
List result=new ArrayList();
Enumeration urls = ModuleUtils.class.getClassLoader().getResources(prefix);
while (urls.hasMoreElements())
{
URL url = urls.nextElement();
if(url==null) return Collections.emptyList();
try
{
final List lst = url.getProtocol().equals("jar") ?
resolveModuleEntriesFromJar(url,prefix) :
resolveModuleEntriesFromFiles(url,prefix);
result.addAll(lst);
}
catch (URISyntaxException e)
{
throw new IOException("Bad URL",e);
}
}
return result;
}
private static List resolveModuleEntriesFromFiles(URL url,String _prefix) throws IOException, URISyntaxException
{
final String prefix=_prefix.endsWith("/")?_prefix:_prefix+"/";
List resourceList =new ArrayList();
final URI uri = url.toURI();
File f=new File(uri);
addFiles(f,prefix, resourceList);
return resourceList;
}
private static void addFiles(File f,String prefix,List resourceList)
{
File files[]=f.listFiles();
if(files==null) return;
for (File file : files)
{
if(file.isDirectory())
{
addFiles(file,prefix+file.getName()+"/", resourceList);
}
else
{
resourceList.add(prefix+file.getName());
}
}
}
private static List resolveModuleEntriesFromJar(URL url,String _prefix) throws IOException
{
final String prefix=_prefix.endsWith("/")?_prefix:_prefix+"/";
List resourceList =new ArrayList();
JarURLConnection conn=(JarURLConnection)url.openConnection();
Enumeration entries=conn.getJarFile().entries();
while (entries.hasMoreElements())
{
JarEntry entry = (JarEntry) entries.nextElement();
String name=entry.getName();
if(name.startsWith(prefix) && !entry.isDirectory())
{
resourceList.add(name);
}
}
return resourceList;
}
}