blob: 9a2ca949c4a23cb72e9603828e33a469d029d53a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2005 IBM Corporation.
* 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.equinox.wireadmin;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.service.wireadmin.Consumer;
import org.osgi.util.tracker.ServiceTrackerCustomizer;
public class ConsumerCustomizer implements ServiceTrackerCustomizer {
protected Wire wire;
protected BundleContext context;
public ConsumerCustomizer(BundleContext context, Wire wire) {
this.wire = wire;
this.context = context;
}
/**
* @see ServiceTrackerCustomizer#addingService(ServiceReference)
*/
public Object addingService(ServiceReference reference) {
Consumer service = (Consumer) context.getService(reference);
synchronized (wire) {
wire.setConsumer(service, reference);
return (service);
}
}
/**
* @see ServiceTrackerCustomizer#modifiedService(ServiceReference, Object)
*/
public void modifiedService(ServiceReference reference, Object service) {
synchronized (wire) {
//our flavors and other properties may have changed
wire.setConsumerProperties(reference);
}
}
/**
* @see ServiceTrackerCustomizer#removedService(ServiceReference, Object)
*/
public void removedService(ServiceReference reference, Object service) {
synchronized (wire) {
wire.removeConsumer();
context.ungetService(reference);
}
}
}