/* * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * . * */ package ch.boye.httpclientandroidlib.impl.client; import java.net.ProxySelector; import ch.boye.httpclientandroidlib.ConnectionReuseStrategy; import ch.boye.httpclientandroidlib.annotation.ThreadSafe; import ch.boye.httpclientandroidlib.conn.ClientConnectionManager; import ch.boye.httpclientandroidlib.conn.routing.HttpRoutePlanner; import ch.boye.httpclientandroidlib.impl.DefaultConnectionReuseStrategy; import ch.boye.httpclientandroidlib.impl.NoConnectionReuseStrategy; import ch.boye.httpclientandroidlib.impl.conn.PoolingClientConnectionManager; import ch.boye.httpclientandroidlib.impl.conn.ProxySelectorRoutePlanner; import ch.boye.httpclientandroidlib.impl.conn.SchemeRegistryFactory; import ch.boye.httpclientandroidlib.params.HttpParams; /** * An extension of {@link DefaultHttpClient} pre-configured using system properties. *

* The following system properties are taken into account by this class: *

*

*

* The following parameters can be used to customize the behavior of this * class: *

*

* * @since 4.2 * * @deprecated (4.3) use {@link HttpClientBuilder} */ @ThreadSafe @Deprecated public class SystemDefaultHttpClient extends DefaultHttpClient { public SystemDefaultHttpClient(final HttpParams params) { super(null, params); } public SystemDefaultHttpClient() { super(null, null); } @Override protected ClientConnectionManager createClientConnectionManager() { final PoolingClientConnectionManager connmgr = new PoolingClientConnectionManager( SchemeRegistryFactory.createSystemDefault()); String s = System.getProperty("http.keepAlive", "true"); if ("true".equalsIgnoreCase(s)) { s = System.getProperty("http.maxConnections", "5"); final int max = Integer.parseInt(s); connmgr.setDefaultMaxPerRoute(max); connmgr.setMaxTotal(2 * max); } return connmgr; } @Override protected HttpRoutePlanner createHttpRoutePlanner() { return new ProxySelectorRoutePlanner(getConnectionManager().getSchemeRegistry(), ProxySelector.getDefault()); } @Override protected ConnectionReuseStrategy createConnectionReuseStrategy() { final String s = System.getProperty("http.keepAlive", "true"); if ("true".equalsIgnoreCase(s)) { return new DefaultConnectionReuseStrategy(); } else { return new NoConnectionReuseStrategy(); } } }