All Downloads are FREE. Search and download functionalities are using the official Maven repository.

athenz.shade.zts.org.glassfish.jersey.client.ClientBinder Maven / Gradle / Ivy

There is a newer version: 1.11.58
Show newest version
/*
 * Copyright (c) 2012, 2019 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 athenz.shade.zts.athenz.shade.zts.org.glassfish.jersey.client;

import java.util.Map;
import java.util.function.Supplier;

import athenz.shade.zts.athenz.shade.zts.javax.ws.rs.RuntimeType;
import athenz.shade.zts.athenz.shade.zts.javax.ws.rs.client.Client;
import athenz.shade.zts.athenz.shade.zts.javax.ws.rs.core.GenericType;
import athenz.shade.zts.athenz.shade.zts.javax.ws.rs.core.HttpHeaders;
import athenz.shade.zts.athenz.shade.zts.javax.ws.rs.ext.MessageBodyReader;

import athenz.shade.zts.athenz.shade.zts.javax.inject.Inject;
import athenz.shade.zts.athenz.shade.zts.javax.inject.Provider;
import athenz.shade.zts.athenz.shade.zts.javax.inject.Singleton;

import athenz.shade.zts.athenz.shade.zts.org.glassfish.jersey.internal.PropertiesDelegate;
import athenz.shade.zts.athenz.shade.zts.org.glassfish.jersey.internal.inject.AbstractBinder;
import athenz.shade.zts.athenz.shade.zts.org.glassfish.jersey.internal.inject.ReferencingFactory;
import athenz.shade.zts.athenz.shade.zts.org.glassfish.jersey.internal.util.collection.Ref;
import athenz.shade.zts.athenz.shade.zts.org.glassfish.jersey.message.internal.MessagingBinders;
import athenz.shade.zts.athenz.shade.zts.org.glassfish.jersey.process.internal.RequestScoped;

/**
 * Registers all binders necessary for {@link Client} runtime.
 *
 * @author Marek Potociar
 * @author Jakub Podlesak
 * @author Libor Kramolis
 */
class ClientBinder extends AbstractBinder {

    private final Map clientRuntimeProperties;

    private static class RequestContextInjectionFactory extends ReferencingFactory {

        @Inject
        public RequestContextInjectionFactory(Provider> referenceFactory) {
            super(referenceFactory);
        }
    }

    private static class PropertiesDelegateFactory implements Supplier {

        private final Provider requestProvider;

        @Inject
        private PropertiesDelegateFactory(Provider requestProvider) {
            this.requestProvider = requestProvider;
        }

        @Override
        public PropertiesDelegate get() {
            return requestProvider.get().getPropertiesDelegate();
        }
    }

    /**
     * Create new client binder for a new client runtime instance.
     *
     * @param clientRuntimeProperties map of client runtime properties.
     */
    ClientBinder(Map clientRuntimeProperties) {
        this.clientRuntimeProperties = clientRuntimeProperties;
    }

    @Override
    protected void configure() {
        install(new MessagingBinders.MessageBodyProviders(clientRuntimeProperties, RuntimeType.CLIENT),
                new MessagingBinders.HeaderDelegateProviders());

        bindFactory(ReferencingFactory.referenceFactory()).to(new GenericType>() {
        }).in(RequestScoped.class);

        bindFactory(RequestContextInjectionFactory.class)
                .to(ClientRequest.class)
                .in(RequestScoped.class);

        bindFactory(RequestContextInjectionFactory.class).to(HttpHeaders.class)
                .proxy(true).proxyForSameScope(false).in(RequestScoped.class);

        bindFactory(ReferencingFactory.referenceFactory()).to(new GenericType>() {
        }).in(RequestScoped.class);

        bindFactory(PropertiesDelegateFactory.class, Singleton.class).to(PropertiesDelegate.class).in(RequestScoped.class);

        // ChunkedInput entity support
        bind(ChunkedInputReader.class).to(MessageBodyReader.class).in(Singleton.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy