org.jvnet.hk2.internal.ServiceHandleImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2012 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package org.jvnet.hk2.internal;
import java.util.LinkedList;
import java.util.List;
import org.glassfish.hk2.api.ActiveDescriptor;
import org.glassfish.hk2.api.Context;
import org.glassfish.hk2.api.Injectee;
import org.glassfish.hk2.api.PerLookup;
import org.glassfish.hk2.api.ServiceHandle;
import org.glassfish.hk2.utilities.reflection.ReflectionHelper;
/**
* This handle does the underlying work of getting the service. Only
* at the time that the getService call is made is the service gotten
* from the context. Once a service has been gotten, it is not looked
* up again.
*
* @author jwells
* @param The type of service to create
*
*/
public class ServiceHandleImpl implements ServiceHandle {
private ActiveDescriptor root;
private final ServiceLocatorImpl locator;
private final Injectee injectee;
private final Object lock = new Object();
private boolean serviceDestroyed = false;
private boolean serviceSet = false;
private T service;
private Object serviceData;
private final List> subHandles = new LinkedList>();
/* package */ ServiceHandleImpl(ServiceLocatorImpl locator, ActiveDescriptor root, Injectee injectee) {
this.root = root;
this.locator = locator;
this.injectee = injectee;
}
/* (non-Javadoc)
* @see org.glassfish.hk2.api.ServiceHandle#getService()
*/
@Override
public T getService() {
return getService(this);
}
/* package */ T getService(ServiceHandle handle) {
synchronized (lock) {
if (serviceDestroyed) throw new IllegalStateException("Service has been disposed");
if (serviceSet) return service;
Class> requiredClass = (injectee == null) ? null : ReflectionHelper.getRawClass(injectee.getRequiredType());
service = Utilities.createService(root, injectee, locator, handle, requiredClass);
serviceSet = true;
return service;
}
}
/* (non-Javadoc)
* @see org.glassfish.hk2.api.ServiceHandle#getActiveDescriptor()
*/
@Override
public ActiveDescriptor getActiveDescriptor() {
return root;
}
/* (non-Javadoc)
* @see org.glassfish.hk2.api.ServiceHandle#isActive()
*/
@Override
public boolean isActive() {
// No lock needed, nothing changes state
if (serviceDestroyed) return false;
if (serviceSet) return true;
try {
Context> context = locator.resolveContext(root.getScopeAnnotation());
return context.containsKey(root);
}
catch (IllegalStateException ise) {
return false;
}
}
/* (non-Javadoc)
* @see org.glassfish.hk2.api.ServiceHandle#destroy()
*/
@Override
public void destroy() {
boolean localServiceSet;
boolean serviceActive;
if (!root.isReified()) return;
synchronized (lock) {
serviceActive = isActive();
if (serviceDestroyed) return;
serviceDestroyed = true;
localServiceSet = serviceSet;
}
if (root.getScopeAnnotation().equals(PerLookup.class)) {
if (localServiceSet) {
// Otherwise it is the scope responsible for the lifecycle
root.dispose(service);
}
}
else if (serviceActive) {
Context> context;
try {
context = locator.resolveContext(root.getScopeAnnotation());
}
catch (Throwable th) {
return;
}
context.destroyOne(root);
}
for (ServiceHandleImpl> subHandle : subHandles) {
subHandle.destroy();
}
}
@Override
public void setServiceData(Object serviceData) {
synchronized (lock) {
this.serviceData = serviceData;
}
}
@Override
public Object getServiceData() {
synchronized (lock) {
return serviceData;
}
}
/**
* Add a sub handle to this for proper destruction
*
* @param subHandle A handle to add for proper destruction
*/
public void addSubHandle(ServiceHandleImpl> subHandle) {
subHandles.add(subHandle);
}
public String toString() {
return "ServiceHandle(" + root + "," + System.identityHashCode(this) + ")";
}
}