Skip to main content
summaryrefslogblamecommitdiffstats
blob: 0fb939c4c5f030b16f91b12495ca8010c1ca1786 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                                  
                                     


























                                                                                                                                        
                                 
                                                

                                                                                                                             
                                                                               







                                                                                   















                                                                                                                                       
                                                     























                                                                                                     
                                                                                                              





























                                                                                                                                       
/*******************************************************************************
 * Copyright (c) 2006, 2007 Oracle Corporation.
 * 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:
 *    Oracle - initial API and implementation
 *    
 ********************************************************************************/

package org.eclipse.jst.jsf.common.metadata.internal;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ResourceBundle;

import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Platform;

/**
 * Default implementation of StandardMetaDataSourceFileLocator that will locate standard metadata files
 * and resource bundles relative to the plugin that registered the files using the 
 * <code>org.eclipse.jst.jsf.common.StandardMetaDataFiles</code> ext-pt.
 *
 */
public class PluginRelativeStandardMetaDataSourceFileLocator extends StandardMetaDataSourceFileLocator{
	
	private ResourceBundle resourceBundle;

	/* 
	 * Returns InputStream of standard metadata file from plugin relative location.
	 * 	 
	 */
	public InputStream getInputStream() throws IOException {
		URL url = FileLocator.find(Platform.getBundle(fileInfo.getBundleId()), Path.fromOSString(fileInfo.getLocation()), null);
		if (url != null) 
			return url.openStream();
		
        String  fileName = Path.fromOSString(fileInfo.getLocation()).toString() + " (Plugin: " + fileInfo.getBundleId()+")" ;
        throw new FileNotFoundException("Metadata file not found: "+ fileName);
	}

	
	/* 
	 * Returns property resource bundle if it exists.  May return null.
	 * This implementation assumes that the basename of the bundle is the same 
	 * as the source file name and in the same directory.
	 * 
	 */
	public ResourceBundle getResourceBundle() throws IOException, MalformedURLException {
		if (resourceBundle == null){
			URL bundleURL = getStandardMetaDataSourceFileBasenameURL();
			if (bundleURL == null)
				return null;
			
			resourceBundle = ResourceBundleHelper.getResourceBundle(getBaseNameURL(bundleURL));
		}
		return resourceBundle;
	}
	
	private URL getStandardMetaDataSourceFileBasenameURL()  {
		IPath annotationPath = Path.fromOSString(fileInfo.getLocation()); 
		IPath annotationFolder = annotationPath.removeLastSegments(1);
		IPath propertiesLocation = annotationPath.removeFirstSegments(annotationPath.segmentCount() - 1).removeFileExtension();
		// append location of properties file
		IPath propertiesFile = annotationFolder.append(propertiesLocation);
	
		// append .properties extension if needed
		if (propertiesFile.getFileExtension() == null)
			propertiesFile = propertiesFile.addFileExtension("properties"); //$NON-NLS-1$
		// create a URL out of the properties file location
		return FileLocator.find(Platform.getBundle(fileInfo.getBundleId()),
				propertiesFile, null);
	}

	
	private String getBaseNameURL(URL bundleURL) {
		IPath url = new Path(bundleURL.toExternalForm());
		if (url.getFileExtension() != null)
			url = url.removeFileExtension();
		return url.toString();
	}
	

//	/* 
//	 * Returns property resource bundle if it exists.  May return null.
//	 * This implementation assumes that the basename of the bundle is the same 
//	 * as the source file name and in the same directory.
//	 * 
//	 * @see org.eclipse.jst.jsf.contentmodel.annotation.ICMAnnotationSourceFileLocator#getResourceBundle()
//	 */
//	public ResourceBundle getResourceBundle() throws IOException, MalformedURLException {
//		URL bundleURL = getAnnotationPropertiesFileBasenameURL();
//		ResourceBundle resourceBundle = ResourceBundleHelper.getResourceBundle(getBaseNameURL(bundleURL));
//		return resourceBundle;
//	}
//	
//	private URL getAnnotationPropertiesFileBasenameURL()  {
//		IPath annotationPath = Path.fromOSString(fileInfo.getAnnotationFileLocation()); 
//		IPath annotationFolder = annotationPath.removeLastSegments(1);
//		IPath propertiesLocation = annotationPath.removeFirstSegments(annotationPath.segmentCount() - 1).removeFileExtension();
//		// append location of propertiles file
//		IPath propertiesFile = annotationFolder.append(propertiesLocation);
//	
//		// append .properties extension if needed
//		if (propertiesFile.getFileExtension() == null)
//			propertiesFile = propertiesFile.addFileExtension("properties"); //$NON-NLS-1$
//		// create a URL out of the properties file location
//		return FileLocator.find(Platform.getBundle(fileInfo.getBundleId()),
//				propertiesFile, null);
//	}
//
//	
//	private String getBaseNameURL(URL bundleURL) {
//		IPath url = new Path(bundleURL.toExternalForm());
//		if (url.getFileExtension() != null)
//			url = url.removeFileExtension();
//		return url.toString();
//	}
}

Back to the top