blob: a34fb4530039586bd6b7adc9f2deae0639906f44 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2017 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* Code 9 - ongoing development
* Red Hat Inc. - Bug 460967
*******************************************************************************/
package org.eclipse.equinox.internal.provisional.p2.directorywatcher;
import java.io.File;
import java.net.URI;
import org.eclipse.equinox.internal.p2.core.helpers.ServiceHelper;
import org.eclipse.equinox.p2.core.IProvisioningAgent;
import org.eclipse.equinox.p2.repository.artifact.IArtifactRepositoryManager;
import org.eclipse.equinox.p2.repository.metadata.IMetadataRepositoryManager;
import org.osgi.framework.*;
/**
* Bundle activator for directory watcher bundle.
*/
public class Activator implements BundleActivator {
public static final String ID = "org.eclipse.equinox.p2.directorywatcher"; //$NON-NLS-1$
private static BundleContext context;
public static BundleContext getContext() {
return context;
}
@Override
public void start(BundleContext aContext) throws Exception {
context = aContext;
}
@Override
public void stop(BundleContext aContext) throws Exception {
context = null;
}
public static IArtifactRepositoryManager getArtifactRepositoryManager() {
return ServiceHelper.getService(context, IProvisioningAgent.class).getService(IArtifactRepositoryManager.class);
}
public static IMetadataRepositoryManager getMetadataRepositoryManager() {
return ServiceHelper.getService(context, IProvisioningAgent.class).getService(IMetadataRepositoryManager.class);
}
public static URI getDefaultRepositoryLocation(Object object, String repositoryName) {
Bundle bundle = FrameworkUtil.getBundle(object.getClass());
BundleContext context = bundle.getBundleContext();
File base = context.getDataFile(""); //$NON-NLS-1$
File result = new File(base, "listener_" + repositoryName.hashCode()); //$NON-NLS-1$
result.mkdirs();
return result.toURI();
}
}