com.landawn.abacus.http.OKHttpClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-android Show documentation
Show all versions of abacus-android Show documentation
A general and simple library for Android
/*
* Copyright (C) 2015 HaiYang Li
*
* Licensed 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.
*/
package com.landawn.abacus.http;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.Reader;
import java.io.Writer;
import java.nio.charset.Charset;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
import javax.net.ssl.SSLSocketFactory;
import com.landawn.abacus.exception.AbacusException;
import com.landawn.abacus.exception.UncheckedIOException;
import com.landawn.abacus.logging.Logger;
import com.landawn.abacus.logging.LoggerFactory;
import com.landawn.abacus.type.Type;
import com.landawn.abacus.util.BufferedReader;
import com.landawn.abacus.util.BufferedWriter;
import com.landawn.abacus.util.ByteArrayOutputStream;
import com.landawn.abacus.util.IOUtil;
import com.landawn.abacus.util.N;
import com.landawn.abacus.util.Objectory;
import com.landawn.abacus.util.URLEncodedUtil;
import okhttp3.ConnectionPool;
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.RequestBody;
/**
* Any header can be set into the parameter settings
*
*
HttpClient is thread safe.
*
* @since 0.8
*
* @author Haiyang Li
*/
public final class OKHttpClient extends AbstractHttpClient {
static final Logger logger = LoggerFactory.getLogger(OKHttpClient.class);
private static final Map mediaTypePool = new ConcurrentHashMap<>();
private final OkHttpClient client;
private final AtomicInteger _activeConnectionCounter;
protected OKHttpClient(String url) {
this(url, DEFAULT_MAX_CONNECTION);
}
protected OKHttpClient(String url, int maxConnection) {
this(url, maxConnection, DEFAULT_CONNECTION_TIMEOUT, DEFAULT_READ_TIMEOUT);
}
protected OKHttpClient(String url, int maxConnection, long connTimeout, long readTimeout) {
this(url, maxConnection, connTimeout, readTimeout, null);
}
protected OKHttpClient(String url, int maxConnection, long connTimeout, long readTimeout, HttpSettings settings) throws UncheckedIOException {
this(url, maxConnection, connTimeout, readTimeout, settings, new AtomicInteger(0));
}
protected OKHttpClient(String url, int maxConnection, long connTimeout, long readTimeout, HttpSettings settings,
final AtomicInteger sharedActiveConnectionCounter) {
super(url, maxConnection, connTimeout, readTimeout, settings);
final SSLSocketFactory ssf = settings == null ? null : settings.getSSLSocketFactory();
final OkHttpClient.Builder builder = new OkHttpClient.Builder();
if (ssf != null) {
builder.socketFactory(ssf);
}
this.client = builder.connectionPool(new ConnectionPool(Math.min(8, maxConnection), 5, TimeUnit.MINUTES))
.connectTimeout(connTimeout, TimeUnit.MILLISECONDS)
.readTimeout(readTimeout, TimeUnit.MILLISECONDS)
.build();
this._activeConnectionCounter = sharedActiveConnectionCounter;
}
protected OKHttpClient(OkHttpClient client, String url, int maxConnection) {
this(client, url, maxConnection, null);
}
protected OKHttpClient(OkHttpClient client, String url, int maxConnection, HttpSettings settings) throws UncheckedIOException {
this(client, url, maxConnection, settings, new AtomicInteger(0));
}
protected OKHttpClient(OkHttpClient client, String url, int maxConnection, HttpSettings settings, final AtomicInteger sharedActiveConnectionCounter) {
super(url, maxConnection, client.connectTimeoutMillis(), client.readTimeoutMillis(), settings);
this.client = client;
this._activeConnectionCounter = sharedActiveConnectionCounter;
}
public static OKHttpClient create(String url) {
return new OKHttpClient(url);
}
public static OKHttpClient create(String url, int maxConnection) {
return new OKHttpClient(url, maxConnection);
}
public static OKHttpClient create(String url, long connTimeout, long readTimeout) {
return new OKHttpClient(url, DEFAULT_MAX_CONNECTION, connTimeout, readTimeout);
}
public static OKHttpClient create(String url, int maxConnection, long connTimeout, long readTimeout) {
return new OKHttpClient(url, maxConnection, connTimeout, readTimeout);
}
public static OKHttpClient create(String url, int maxConnection, long connTimeout, long readTimeout, HttpSettings settings) throws UncheckedIOException {
return new OKHttpClient(url, maxConnection, connTimeout, readTimeout, settings);
}
public static OKHttpClient create(String url, int maxConnection, long connTimeout, long readTimeout, HttpSettings settings,
final AtomicInteger sharedActiveConnectionCounter) {
return new OKHttpClient(url, maxConnection, connTimeout, readTimeout, settings, sharedActiveConnectionCounter);
}
public static OKHttpClient create(OkHttpClient client, String url, int maxConnection) {
return new OKHttpClient(client, url, maxConnection);
}
public static OKHttpClient create(OkHttpClient client, String url, int maxConnection, HttpSettings settings) throws UncheckedIOException {
return new OKHttpClient(client, url, maxConnection, settings);
}
public static OKHttpClient create(OkHttpClient client, String url, int maxConnection, HttpSettings settings,
final AtomicInteger sharedActiveConnectionCounter) {
return new OKHttpClient(client, url, maxConnection, settings, sharedActiveConnectionCounter);
}
@Override
public T execute(final Class resultClass, final HttpMethod httpMethod, final Object request, final HttpSettings settings)
throws UncheckedIOException {
return execute(resultClass, null, null, httpMethod, request, settings);
}
@Override
public void execute(final File output, final HttpMethod httpMethod, final Object request, final HttpSettings settings) throws UncheckedIOException {
OutputStream os = null;
try {
os = new FileOutputStream(output);
execute(os, httpMethod, request, settings);
} catch (FileNotFoundException e) {
throw new UncheckedIOException(e);
} finally {
IOUtil.close(os);
}
}
@Override
public void execute(final OutputStream output, final HttpMethod httpMethod, final Object request, final HttpSettings settings) throws UncheckedIOException {
execute(null, output, null, httpMethod, request, settings);
}
@Override
public void execute(final Writer output, final HttpMethod httpMethod, final Object request, final HttpSettings settings) throws UncheckedIOException {
execute(null, null, output, httpMethod, request, settings);
}
private T execute(final Class resultClass, final OutputStream outputStream, final Writer outputWriter, final HttpMethod httpMethod,
final Object request, final HttpSettings settings) throws UncheckedIOException {
if (_activeConnectionCounter.incrementAndGet() > _maxConnection) {
_activeConnectionCounter.decrementAndGet();
throw new AbacusException("Can not get connection, exceeded max connection number: " + _maxConnection);
}
final ContentFormat requestContentFormat = getContentFormat(settings);
final String contentType = getContentType(settings);
final String contentEncoding = getContentEncoding(settings);
final Charset requestCharset = HTTP.getCharset(settings == null || settings.headers().isEmpty() ? _settings.headers() : settings.headers());
okhttp3.Request httpRequest = null;
okhttp3.Response httpResponse = null;
boolean closeOkHttpResponse = true;
try {
final okhttp3.Request.Builder requestBuilder = new okhttp3.Request.Builder()
.url((request != null && (httpMethod.equals(HttpMethod.GET) || httpMethod.equals(HttpMethod.DELETE))) ? URLEncodedUtil.encode(_url, request)
: _url);
setHeaders(requestBuilder, settings == null ? _settings : settings);
if (request != null && (httpMethod.equals(HttpMethod.POST) || httpMethod.equals(HttpMethod.PUT))) {
MediaType mediaType = null;
if (N.notNullOrEmpty(contentType)) {
mediaType = mediaTypePool.get(contentType);
if (mediaType == null) {
mediaType = MediaType.parse(contentType);
if (mediaType != null) {
mediaTypePool.put(contentType, mediaType);
}
}
}
RequestBody body = null;
final Type