blob: 5d5f5a8ceadbadff8d45c064b72af1de9cdb3bce [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.runtime.internal.adaptor;
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import org.eclipse.osgi.framework.internal.core.BundleURLConnection;
import org.eclipse.osgi.service.urlconversion.URLConverter;
/**
* The service implementation that allows bundleresource or bundleentry
* URLs to be converted to native file URLs on the local file system.
*
* <p>Internal class.</p>
*/
public class URLConverterImpl implements URLConverter {
/* (non-Javadoc)
* @see org.eclipse.osgi.service.urlconversion.URLConverter#toFileURL(java.net.URL)
*/
public URL toFileURL(URL url) throws IOException {
URLConnection connection = url.openConnection();
if (connection instanceof BundleURLConnection)
return ((BundleURLConnection) connection).getFileURL();
return url;
}
/* (non-Javadoc)
* @see org.eclipse.osgi.service.urlconversion.URLConverter#resolve(java.net.URL)
*/
public URL resolve(URL url) throws IOException {
URLConnection connection = url.openConnection();
if (connection instanceof BundleURLConnection)
return ((BundleURLConnection) connection).getLocalURL();
return url;
}
}