blob: 343c406d726f7d6827eae0f869b46336ebaee690 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.cxf.dosgi.dsw.service;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.Arrays;
import java.util.List;
import org.apache.cxf.dosgi.dsw.api.DistributionProvider;
import org.apache.cxf.dosgi.dsw.api.IntentUnsatisfiedException;
import org.osgi.framework.Bundle;
import org.osgi.framework.ServiceFactory;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.remoteserviceadmin.EndpointDescription;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@SuppressWarnings("rawtypes")
public class ClientServiceFactory implements ServiceFactory {
private static final Logger LOG = LoggerFactory.getLogger(ClientServiceFactory.class);
private EndpointDescription endpoint;
private DistributionProvider handler;
private ImportRegistrationImpl importRegistration;
private boolean closeable;
private int serviceCounter;
public ClientServiceFactory(EndpointDescription endpoint,
DistributionProvider handler, ImportRegistrationImpl ir) {
this.endpoint = endpoint;
this.handler = handler;
this.importRegistration = ir;
}
public Object getService(final Bundle requestingBundle, final ServiceRegistration sreg) {
List<String> interfaces = endpoint.getInterfaces();
String interfaceName = interfaces == null || interfaces.isEmpty() ? null : interfaces.get(0);
LOG.debug("getService() from serviceFactory for {}", interfaceName);
try {
final Class<?> iClass = requestingBundle.loadClass(interfaceName);
Object proxy = AccessController.doPrivileged(new PrivilegedAction<Object>() {
public Object run() {
return handler.importEndpoint(requestingBundle.getBundleContext(), iClass, endpoint);
}
});
synchronized (this) {
serviceCounter++;
}
return proxy;
} catch (IntentUnsatisfiedException iue) {
LOG.info("Did not create proxy for {} because intent {} could not be satisfied",
interfaceName, iue.getIntent());
} catch (Exception e) {
LOG.warn("Problem creating a remote proxy for {}", interfaceName, e);
}
return null;
}
public void ungetService(Bundle requestingBundle, ServiceRegistration sreg, Object serviceObject) {
String[] interfaces = (String[])sreg.getReference().getProperty(org.osgi.framework.Constants.OBJECTCLASS);
LOG.info("Releasing a client object, interfaces: {}", Arrays.toString(interfaces));
synchronized (this) {
serviceCounter--;
LOG.debug("Services still provided by this ServiceFactory: {}", serviceCounter);
closeIfUnused();
}
}
public void setCloseable(boolean closeable) {
synchronized (this) {
this.closeable = closeable;
closeIfUnused();
}
}
private synchronized void closeIfUnused() {
if (serviceCounter <= 0 && closeable) {
importRegistration.closeAll();
}
}
}