Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d851a8e986fb66d7477c77fccb4cc9e319c001ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
 * <copyright> Copyright (c) 2005, 2006, 2007, 2008 Springsite BV (The Netherlands) and others 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 Contributors: Martin Taal </copyright> $Id:
 * PersistenceMappingBuilder.java,v 1.10 2007/02/08 23:12:35 mtaal Exp $
 */

package org.eclipse.emf.teneo.annotations.mapper;

import java.io.InputStream;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.eclipse.emf.teneo.extension.ExtensionPoint;

/**
 * Provides files to the mapping as well as to the runtime layers. It can be customized with an own
 * implementation by replacing the class in the ExtensionManager.
 * 
 * @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
 * @version $Revision: 1.3 $
 */
public class PersistenceFileProvider implements ExtensionPoint {

	/** The logger */
	protected static final Log log = LogFactory.getLog(PersistenceFileProvider.class);

	/**
	 * Returns an InputStream with the file content, note if the file does not exist then null may
	 * be returned. This implementation searches for the file in the classpath using the path
	 * parameters.
	 * 
	 * Custom implementations of this class may use any other method to find the file.
	 * 
	 * @param clz
	 *            the class to use when reading the file through a classloader
	 * @param path
	 *            the path to the file (incl. the filename and extension)
	 * 
	 * @return an InputStream if found, or null otherwise
	 */
	public InputStream getFileContent(Class<?> clz, String path) {
		if (clz == null) {
			return this.getClass().getClassLoader().getResourceAsStream(path);
		} else {
			return clz.getResourceAsStream(path);
		}
	}
}

Back to the top