blob: 9734a241dbdfe22505d9edc65d6808172781142a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.update.tests.implementation;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.update.core.*;
import org.eclipse.update.core.model.*;
import org.eclipse.update.internal.core.URLEncoder;
public class SiteFTPFactory extends SiteModelFactory implements ISiteFactory {
public static final String FILE = "a/b/c/";
/*
* @see ISiteFactory#createSite(URL, boolean)
*/
public ISite createSite(URL url)
throws CoreException, InvalidSiteTypeException {
ISite site = null;
InputStream siteStream = null;
try {
URL resolvedURL = URLEncoder.encode(url);
siteStream = resolvedURL.openStream();
SiteModelFactory factory = this;
factory.parseSite(siteStream);
site = new SiteFTP(new URL("http://eclipse.org/" + FILE));
} catch (MalformedURLException e) {
throw Utilities.newCoreException("Unable to create URL", e);
} catch (IOException e) {
throw Utilities.newCoreException("Unable to access URL",ISite.SITE_ACCESS_EXCEPTION, e);
} finally {
try {
if (siteStream != null)
siteStream.close();
} catch (Exception e) {
}
}
return site;
}
/*
* @see SiteModelFactory#canParseSiteType(String)
*/
public boolean canParseSiteType(String type) {
return "org.eclipse.update.tests.core.ftp".equalsIgnoreCase(type);
}
}