Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.jvnet.hk2.internal;
import java.util.LinkedList;
import org.glassfish.hk2.api.ActiveDescriptor;
import org.glassfish.hk2.api.Descriptor;
import org.glassfish.hk2.api.DescriptorType;
import org.glassfish.hk2.api.DynamicConfiguration;
import org.glassfish.hk2.api.Factory;
import org.glassfish.hk2.api.FactoryDescriptors;
import org.glassfish.hk2.api.Filter;
import org.glassfish.hk2.api.MultiException;
import org.glassfish.hk2.api.TwoPhaseResource;
import org.glassfish.hk2.utilities.FactoryDescriptorsImpl;
import org.glassfish.hk2.utilities.reflection.Pretty;
/**
* The system implementation of the DynamicConfiguration service
*
* @author jwells
*/
public class DynamicConfigurationImpl implements DynamicConfiguration {
private final ServiceLocatorImpl locator;
private final LinkedList> allDescriptors = new LinkedList>();
private final LinkedList allUnbindFilters = new LinkedList();
private final LinkedList allIdempotentFilters = new LinkedList();
private final LinkedList allResources = new LinkedList();
private final Object lock = new Object();
private boolean committed = false;
/**
* Created by the generator, and hence must be public
*
* @param locator The locator for which this will be the configuration service
*/
public DynamicConfigurationImpl(ServiceLocatorImpl locator) {
this.locator = locator;
}
/* (non-Javadoc)
* @see org.glassfish.hk2.api.Configuration#bind(org.glassfish.hk2.api.Descriptor)
*/
@Override
public ActiveDescriptor bind(Descriptor key) {
return bind(key, true);
}
@Override
public ActiveDescriptor bind(Descriptor key, boolean requiresDeepCopy) {
checkState();
checkDescriptor(key);
SystemDescriptor sd = new SystemDescriptor(key,
requiresDeepCopy,
locator,
locator.getNextServiceId());
allDescriptors.add(sd);
return sd;
}
/* (non-Javadoc)
* @see org.glassfish.hk2.api.Configuration#bind(org.glassfish.hk2.api.FactoryDescriptors)
*/
@Override
public FactoryDescriptors bind(FactoryDescriptors factoryDescriptors) {
return bind(factoryDescriptors, true);
}
@Override
public FactoryDescriptors bind(FactoryDescriptors factoryDescriptors, boolean requiresDeepCopy) {
if (factoryDescriptors == null) throw new IllegalArgumentException("factoryDescriptors is null");
// Now a bunch of validations
Descriptor asService = factoryDescriptors.getFactoryAsAService();
Descriptor asFactory = factoryDescriptors.getFactoryAsAFactory();
checkDescriptor(asService);
checkDescriptor(asFactory);
String implClassService = asService.getImplementation();
String implClassFactory = asFactory.getImplementation();
if (!implClassService.equals(implClassFactory)) {
throw new IllegalArgumentException("The implementation classes must match (" +
implClassService + "/" + implClassFactory + ")");
}
if (!asService.getDescriptorType().equals(DescriptorType.CLASS)) {
throw new IllegalArgumentException("The getFactoryAsService descriptor must be of type CLASS");
}
if (!asFactory.getDescriptorType().equals(DescriptorType.PROVIDE_METHOD)) {
throw new IllegalArgumentException("The getFactoryAsFactory descriptor must be of type PROVIDE_METHOD");
}
final SystemDescriptor> boundAsService = new SystemDescriptor