org.microemu.app.util.MIDletResourceLoader Maven / Gradle / Ivy
/**
* MicroEmulator
* Copyright (C) 2006-2007 Bartek Teodorczyk
* Copyright (C) 2006-2007 Vlad Skarzhevskyy
*
* It is licensed under the following two licenses as alternatives:
* 1. GNU Lesser General Public License (the "LGPL") version 2.1 or any newer version
* 2. Apache License (the "AL") Version 2.0
*
* You may not use this file except in compliance with at least one of
* the above two licenses.
*
* You may obtain a copy of the LGPL at
* http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt
*
* You may obtain a copy of the AL at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the LGPL or the AL for the specific language governing permissions and
* limitations.
*
* @version $Id: MIDletResourceLoader.java 2052 2009-05-13 14:31:06Z barteo $
*/
package org.microemu.app.util;
import java.io.InputStream;
import org.microemu.Injected;
import org.microemu.app.classloader.MIDletClassLoader;
import org.microemu.log.Logger;
import org.microemu.util.ThreadUtils;
/**
* @author vlads
*
* Use MIDletResourceLoader to load resources. To solve resource resource
* loading paterns commonly used in MIDlet and not aceptable in Java SE
* application when System class is called to load resource
*
* j2me example:
*
* String.class.getResourceAsStream(resourceName)
*
*/
public class MIDletResourceLoader {
// TODO make this configurable
public static boolean traceResourceLoading = false;
/**
* @deprecated find better solution to share variable
*/
public static ClassLoader classLoader;
private static final String FQCN = Injected.class.getName();
public static InputStream getResourceAsStream(Class origClass, String resourceName) {
if (traceResourceLoading) {
Logger.debug("Loading MIDlet resource", resourceName);
}
if (classLoader != origClass.getClassLoader()) {
// showWarning
String callLocation = ThreadUtils.getCallLocation(FQCN);
if (callLocation != null && MIDletClassLoader.debug) {
Logger.debug("attempt to load resource [" + resourceName + "] using System ClasslLoader from "
+ callLocation);
}
}
resourceName = resolveName(origClass, resourceName);
InputStream is = classLoader.getResourceAsStream(resourceName);
if (is == null) {
Logger.debug("Resource not found ", resourceName);
return null;
} else {
return new MIDletResourceInputStream(is);
}
}
private static String resolveName(Class origClass, String name) {
if (name == null) {
return name;
}
if (!name.startsWith("/")) {
while (origClass.isArray()) {
origClass = origClass.getComponentType();
}
String baseName = origClass.getName();
int index = baseName.lastIndexOf('.');
if (index != -1) {
name = baseName.substring(0, index).replace('.', '/') + "/" + name;
}
} else {
name = name.substring(1);
}
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy