blob: 22e25911c17a1be399b24642fe78124c1a9bc749 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2009 Eclipse.org
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.gmf.tests.xpand;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.nio.charset.Charset;
import org.eclipse.gmf.internal.xpand.ResourceManager;
import org.eclipse.gmf.internal.xpand.expression.SyntaxConstants;
import org.eclipse.gmf.internal.xpand.util.ParserException;
import org.eclipse.gmf.internal.xpand.util.ResourceManagerImpl;
/**
* @author artem
*/
public class TestsResourceManager extends ResourceManagerImpl implements ResourceManager {
/**
* We use classLoader#getResourceAsStream here and mandate '/resources/' folder to be in classpath
* to ease test running and not to require them to be run as 'plug-in' tests.
*/
public InputStream loadFile(String fullyQualifiedName, String fileExt) {
String resName = fullyQualifiedName.replaceAll(SyntaxConstants.NS_DELIM, "/") + "." + fileExt;
return getClass().getClassLoader().getResourceAsStream(resName);
}
protected void handleParserException(ParserException ex) {
ex.printStackTrace();
}
public Reader[] resolveMultiple(String fullyQualifiedName, String extension) throws IOException {
InputStream inputStream = loadFile(fullyQualifiedName, extension);
if (inputStream == null) {
throw new FileNotFoundException(fullyQualifiedName);
}
return new Reader[] { new InputStreamReader(inputStream, Charset.forName("ISO-8859-1")) };
}
@Override
protected boolean shouldCache() {
return false;
}
}