blob: 7ad6ca70022d26b704554d5643ba08bb486131b1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.update.core;
import java.io.*;
import java.net.*;
import java.util.*;
import org.eclipse.core.runtime.*;
import org.eclipse.update.core.model.*;
import org.eclipse.update.internal.core.*;
/**
* Base implementation of a site factory.
* The factory is responsible for constructing the correct
* concrete implementation of the model objects for each particular
* site type. This class creates model objects that correspond
* to the concrete implementation classes provided in this package.
* The actual site creation method is subclass responsibility.
* <p>
* This class must be subclassed by clients.
* </p>
* <p>
* <b>Note:</b> This class/interface is part of an interim API that is still under development and expected to
* change significantly before reaching stability. It is being made available at this early stage to solicit feedback
* from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
* (repeatedly) as the API evolves.
* </p>
* @see org.eclipse.update.core.ISiteFactory
* @see org.eclipse.update.core.model.SiteModelFactory
* @since 2.0
*/
public abstract class BaseSiteFactory extends SiteModelFactory implements ISiteFactory {
/**
* Create site. Implementation of this method must be provided by
* subclass
*
* @see ISiteFactory#createSite(URL)
* @since 2.0
*/
public abstract ISite createSite(URL url) throws CoreException, InvalidSiteTypeException;
/**
* Helper method to access resouce bundle for site. The default
* implementation attempts to load the appropriately localized
* site.properties file.
*
* @param url base URL used to load the resource bundle.
* @return resource bundle, or <code>null</code>.
* @since 2.0
*/
protected ResourceBundle getResourceBundle(URL url) {
ResourceBundle bundle = null;
try {
url = UpdateManagerUtils.asDirectoryURL(url);
ClassLoader l = new URLClassLoader(new URL[] { url }, null);
bundle = ResourceBundle.getBundle(Site.SITE_FILE, Locale.getDefault(), l);
} catch (MissingResourceException e) {
UpdateCore.warn(e.getLocalizedMessage() + ":" + url.toExternalForm()); //$NON-NLS-1$
} catch (MalformedURLException e) {
UpdateCore.warn(Policy.bind("BaseSiteFactory.CannotRetriveParentDirectory", url.toExternalForm())); //$NON-NLS-1$
}
return bundle;
}
/**
* Create a concrete implementation of site model.
*
* @see Site
* @return site model
* @since 2.0
*/
public SiteModel createSiteMapModel() {
return new Site();
}
/**
* Create a concrete implementation of feature reference model.
*
* @see FeatureReference
* @return feature reference model
* @since 2.0
*/
public SiteFeatureReferenceModel createFeatureReferenceModel() {
return new SiteFeatureReference();
}
/**
* Create a concrete implementation of archive reference model.
*
* @see ArchiveReference
* @return archive reference model
* @since 2.0
*/
public ArchiveReferenceModel createArchiveReferenceModel() {
return new ArchiveReference();
}
/**
* Create a concrete implementation of annotated URL model.
*
* @see URLEntry
* @return annotated URL model
* @since 2.0
*/
public URLEntryModel createURLEntryModel() {
return new URLEntry();
}
/**
* Create a concrete implementation of category model.
*
* @see Category
* @return category model
* @since 2.0
*/
public CategoryModel createSiteCategoryModel() {
return new Category();
}
/**
* Open a stream on a URL.
* manages a time out if the connection is locked or fails
*
* @param resolvedURL
* @return InputStream
*/
protected InputStream openStream(URL resolvedURL) throws IOException {
Response response = UpdateCore.getPlugin().get(resolvedURL);
return response.getInputStream();
}
}