org.testifyproject.glassfish.jersey.client.ClientConfig Maven / Gradle / Ivy
The newest version!
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2012-2017 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 org.testifyproject.testifyprojectpliance with the License. You can
* obtain a copy of the License at
* https://oss.oracle.org.testifyproject.testifyproject/licenses/CDDL+GPL-1.1
* or 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 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.testifyproject.glassfish.org.testifyproject.client;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.ScheduledExecutorService;
import javax.ws.rs.RuntimeType;
import javax.ws.rs.core.Configurable;
import javax.ws.rs.core.Configuration;
import javax.ws.rs.core.Feature;
import org.testifyproject.glassfish.org.testifyproject.CommonProperties;
import org.testifyproject.glassfish.org.testifyproject.ExtendedConfig;
import org.testifyproject.glassfish.org.testifyproject.client.internal.LocalizationMessages;
import org.testifyproject.glassfish.org.testifyproject.client.spi.Connector;
import org.testifyproject.glassfish.org.testifyproject.client.spi.ConnectorProvider;
import org.testifyproject.glassfish.org.testifyproject.internal.AutoDiscoverableConfigurator;
import org.testifyproject.glassfish.org.testifyproject.internal.BootstrapBag;
import org.testifyproject.glassfish.org.testifyproject.internal.BootstrapConfigurator;
import org.testifyproject.glassfish.org.testifyproject.internal.ContextResolverFactory;
import org.testifyproject.glassfish.org.testifyproject.internal.ExceptionMapperFactory;
import org.testifyproject.glassfish.org.testifyproject.internal.JaxrsProviders;
import org.testifyproject.glassfish.org.testifyproject.internal.ServiceFinder;
import org.testifyproject.glassfish.org.testifyproject.internal.inject.Bindings;
import org.testifyproject.glassfish.org.testifyproject.internal.inject.InjectionManager;
import org.testifyproject.glassfish.org.testifyproject.internal.inject.Injections;
import org.testifyproject.glassfish.org.testifyproject.internal.inject.ProviderBinder;
import org.testifyproject.glassfish.org.testifyproject.internal.spi.AutoDiscoverable;
import org.testifyproject.glassfish.org.testifyproject.internal.util.collection.LazyValue;
import org.testifyproject.glassfish.org.testifyproject.internal.util.collection.Value;
import org.testifyproject.glassfish.org.testifyproject.internal.util.collection.Values;
import org.testifyproject.glassfish.org.testifyproject.message.internal.MessageBodyFactory;
import org.testifyproject.glassfish.org.testifyproject.model.internal.CommonConfig;
import org.testifyproject.glassfish.org.testifyproject.model.internal.ComponentBag;
import org.testifyproject.glassfish.org.testifyproject.model.internal.ManagedObjectsFinalizer;
import org.testifyproject.glassfish.org.testifyproject.process.internal.RequestScope;
/**
* Jersey externalized implementation of client-side JAX-RS {@link javax.ws.rs.core.Configurable
* configurable} contract.
*
* @author Marek Potociar (marek.potociar at oracle.org.testifyproject.testifyproject)
* @author Martin Matula
* @author Libor Kramolis (libor.kramolis at oracle.org.testifyproject.testifyproject)
*/
public class ClientConfig implements Configurable, ExtendedConfig {
/**
* Internal configuration state.
*/
private State state;
private static class RuntimeConfigConfigurator implements BootstrapConfigurator {
private final State runtimeConfig;
private RuntimeConfigConfigurator(State runtimeConfig) {
this.runtimeConfig = runtimeConfig;
}
@Override
public void init(InjectionManager injectionManager, BootstrapBag bootstrapBag) {
bootstrapBag.setConfiguration(runtimeConfig);
injectionManager.register(Bindings.service(runtimeConfig).to(Configuration.class));
}
}
/**
* Default encapsulation of the internal configuration state.
*/
private static class State implements Configurable, ExtendedConfig {
/**
* Strategy that returns the same state instance.
*/
private static final StateChangeStrategy IDENTITY = state -> state;
/**
* Strategy that returns a copy of the state instance.
*/
private static final StateChangeStrategy COPY_ON_CHANGE = State::copy;
private volatile StateChangeStrategy strategy;
private final CommonConfig org.testifyproject.testifyprojectmonConfig;
private final JerseyClient client;
private volatile ConnectorProvider connectorProvider;
private volatile ExecutorService executorService;
private volatile ScheduledExecutorService scheduledExecutorService;
private final LazyValue runtime = Values.lazy((Value) this::initRuntime);
/**
* Configuration state change strategy.
*/
private interface StateChangeStrategy {
/**
* Invoked whenever a mutator method is called in the given configuration
* state.
*
* @param state configuration state to be mutated.
* @return state instance that will be mutated and returned from the
* invoked configuration state mutator method.
*/
State onChange(final State state);
}
/**
* Default configuration state constructor with {@link StateChangeStrategy "identity"}
* state change strategy.
*
* @param client bound parent Jersey client.
*/
State(final JerseyClient client) {
this.strategy = IDENTITY;
this.org.testifyproject.testifyprojectmonConfig = new CommonConfig(RuntimeType.CLIENT, ComponentBag.EXCLUDE_EMPTY);
this.client = client;
final Iterator iterator = ServiceFinder.find(ConnectorProvider.class).iterator();
if (iterator.hasNext()) {
this.connectorProvider = iterator.next();
} else {
this.connectorProvider = new HttpUrlConnectorProvider();
}
}
/**
* Copy the original configuration state while using the default state change
* strategy.
*
* @param client new Jersey client parent for the state.
* @param original configuration strategy to be copied.
*/
private State(final JerseyClient client, final State original) {
this.strategy = IDENTITY;
this.client = client;
this.org.testifyproject.testifyprojectmonConfig = new CommonConfig(original.org.testifyproject.testifyprojectmonConfig);
this.connectorProvider = original.connectorProvider;
this.executorService = original.executorService;
this.scheduledExecutorService = original.scheduledExecutorService;
}
/**
* Create a copy of the configuration state within the same parent Jersey
* client instance scope.
*
* @return configuration state copy.
*/
State copy() {
return new State(this.client, this);
}
/**
* Create a copy of the configuration state in a scope of the given
* parent Jersey client instance.
*
* @param client parent Jersey client instance.
* @return configuration state copy.
*/
State copy(final JerseyClient client) {
return new State(client, this);
}
void markAsShared() {
strategy = COPY_ON_CHANGE;
}
State preInitialize() {
final State state = strategy.onChange(this);
state.strategy = COPY_ON_CHANGE;
state.runtime.get().preInitialize();
return state;
}
@Override
public State property(final String name, final Object value) {
final State state = strategy.onChange(this);
state.org.testifyproject.testifyprojectmonConfig.property(name, value);
return state;
}
public State loadFrom(final Configuration config) {
final State state = strategy.onChange(this);
state.org.testifyproject.testifyprojectmonConfig.loadFrom(config);
return state;
}
@Override
public State register(final Class> providerClass) {
final State state = strategy.onChange(this);
state.org.testifyproject.testifyprojectmonConfig.register(providerClass);
return state;
}
@Override
public State register(final Object provider) {
final State state = strategy.onChange(this);
state.org.testifyproject.testifyprojectmonConfig.register(provider);
return state;
}
@Override
public State register(final Class> providerClass, final int bindingPriority) {
final State state = strategy.onChange(this);
state.org.testifyproject.testifyprojectmonConfig.register(providerClass, bindingPriority);
return state;
}
@Override
public State register(final Class> providerClass, final Class>... contracts) {
final State state = strategy.onChange(this);
state.org.testifyproject.testifyprojectmonConfig.register(providerClass, contracts);
return state;
}
@Override
public State register(final Class> providerClass, final Map, Integer> contracts) {
final State state = strategy.onChange(this);
state.org.testifyproject.testifyprojectmonConfig.register(providerClass, contracts);
return state;
}
@Override
public State register(final Object provider, final int bindingPriority) {
final State state = strategy.onChange(this);
state.org.testifyproject.testifyprojectmonConfig.register(provider, bindingPriority);
return state;
}
@Override
public State register(final Object provider, final Class>... contracts) {
final State state = strategy.onChange(this);
state.org.testifyproject.testifyprojectmonConfig.register(provider, contracts);
return state;
}
@Override
public State register(final Object provider, final Map, Integer> contracts) {
final State state = strategy.onChange(this);
state.org.testifyproject.testifyprojectmonConfig.register(provider, contracts);
return state;
}
State connectorProvider(final ConnectorProvider provider) {
if (provider == null) {
throw new NullPointerException(LocalizationMessages.NULL_CONNECTOR_PROVIDER());
}
final State state = strategy.onChange(this);
state.connectorProvider = provider;
return state;
}
State executorService(final ExecutorService executorService) {
if (executorService == null) {
throw new NullPointerException(LocalizationMessages.NULL_EXECUTOR_SERVICE());
}
final State state = strategy.onChange(this);
state.executorService = executorService;
return state;
}
State scheduledExecutorService(final ScheduledExecutorService scheduledExecutorService) {
if (scheduledExecutorService == null) {
throw new NullPointerException(LocalizationMessages.NULL_SCHEDULED_EXECUTOR_SERVICE());
}
final State state = strategy.onChange(this);
state.scheduledExecutorService = scheduledExecutorService;
return state;
}
Connector getConnector() {
// Get the connector only if the runtime has been initialized.
return (runtime.isInitialized()) ? runtime.get().getConnector() : null;
}
ConnectorProvider getConnectorProvider() {
return connectorProvider;
}
ExecutorService getExecutorService() {
return executorService;
}
ScheduledExecutorService getScheduledExecutorService() {
return scheduledExecutorService;
}
JerseyClient getClient() {
return client;
}
@Override
public State getConfiguration() {
return this;
}
@Override
public RuntimeType getRuntimeType() {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().getRuntimeType();
}
@Override
public Map getProperties() {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().getProperties();
}
@Override
public Object getProperty(final String name) {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().getProperty(name);
}
@Override
public Collection getPropertyNames() {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().getPropertyNames();
}
@Override
public boolean isProperty(final String name) {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().isProperty(name);
}
@Override
public boolean isEnabled(final Feature feature) {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().isEnabled(feature);
}
@Override
public boolean isEnabled(final Class extends Feature> featureClass) {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().isEnabled(featureClass);
}
@Override
public boolean isRegistered(final Object org.testifyproject.testifyprojectponent) {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().isRegistered(org.testifyproject.testifyprojectponent);
}
@Override
public boolean isRegistered(final Class> org.testifyproject.testifyprojectponentClass) {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().isRegistered(org.testifyproject.testifyprojectponentClass);
}
@Override
public Map, Integer> getContracts(final Class> org.testifyproject.testifyprojectponentClass) {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().getContracts(org.testifyproject.testifyprojectponentClass);
}
@Override
public Set> getClasses() {
return org.testifyproject.testifyprojectmonConfig.getConfiguration().getClasses();
}
@Override
public Set
© 2015 - 2024 Weber Informatics LLC | Privacy Policy