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.
/*
* 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 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.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 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