blob: 0c83deda49005066cf5cb84ef10c9639c71f91bc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 The Eclipse Foundation 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:
* The Eclipse Foundation - initial API and implementation
*******************************************************************************/
package org.eclipse.epp.internal.mpc.core.util;
import java.lang.reflect.Method;
import org.eclipse.core.runtime.Platform;
import org.eclipse.equinox.internal.p2.repository.Transport;
import org.osgi.framework.Bundle;
/**
* @author David Green
* @author Benjamin Muskalla
*/
@SuppressWarnings("restriction")
class Eclipse36TransportFactory extends AbstractP2TransportFactory {
private static final String GET_INSTANCE_METHOD = "getInstance"; //$NON-NLS-1$
private static final String REPOSITORY_TRANSPORT_CLASS = "org.eclipse.equinox.internal.p2.repository.RepositoryTransport"; //$NON-NLS-1$
@Override
protected Transport getTransportService() throws Exception {
try {
Bundle bundle = Platform.getBundle(P2_REPOSITORY_BUNDLE);
Class<?> clazz = bundle.loadClass(REPOSITORY_TRANSPORT_CLASS);
Method method = clazz.getDeclaredMethod(GET_INSTANCE_METHOD);
Object transportInstance = method.invoke(null);
return (Transport) transportInstance;
} catch (Exception e) {
return null;
}
}
}