-
Notifications
You must be signed in to change notification settings - Fork 24
/
HttpClientUtil.java
488 lines (423 loc) · 18.1 KB
/
HttpClientUtil.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
package me.rowkey.libs.util;
/**
* Author: Bryant
* Date: 14/11/19
* Time: 下午3:36
*/
import com.google.common.collect.Maps;
import me.rowkey.libs.meta.http.ApplicationType;
import me.rowkey.libs.meta.http.ContentEncoding;
import me.rowkey.libs.meta.http.HttpResult;
import me.rowkey.libs.support.Urls;
import org.apache.http.*;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.entity.GzipDecompressingEntity;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.*;
import org.apache.http.client.utils.URLEncodedUtils;
import org.apache.http.config.RegistryBuilder;
import org.apache.http.config.SocketConfig;
import org.apache.http.conn.ConnectionKeepAliveStrategy;
import org.apache.http.conn.socket.ConnectionSocketFactory;
import org.apache.http.conn.socket.PlainConnectionSocketFactory;
import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
import org.apache.http.entity.ContentType;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
import org.apache.http.message.BasicHeaderElementIterator;
import org.apache.http.protocol.HTTP;
import org.apache.http.protocol.HttpContext;
import org.apache.http.util.EntityUtils;
import org.apache.log4j.Logger;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import javax.net.ssl.KeyManager;
import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManager;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.nio.charset.Charset;
import java.util.Collections;
import java.util.List;
import java.util.Map;
/**
* 带连接池的HTTP
*/
public class HttpClientUtil {
private final Map<String, HttpClient> httpClientMap = Maps.newHashMap();
private static final String TAG_CHARSET = "charset=";
private final static Logger logger = Logger.getLogger(HttpClientUtil.class);
private static final int CONNECTION_TIMEOUT = 3000;// 连接超时时间
private static final int SO_TIMEOUT = 5000;// 等待数据超时时间
private PoolingHttpClientConnectionManager pool = null;
private int maxConnection = 32;
private static final String DEFAULT_CHARSET = "UTF-8";
private int conntimeout = CONNECTION_TIMEOUT;
private int sotimeout = SO_TIMEOUT;
private String reqCharset = DEFAULT_CHARSET;
private String resCharset = DEFAULT_CHARSET;
private static final String COMMON_USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36;rokey.me/0.1";
private static final String MOBILE_USER_AGENT = "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53;rowkey.me/0.1";
private String agentHeader = COMMON_USER_AGENT;
public HttpClientUtil() {
}
public HttpClientUtil(int conntimeout, int sotimeout) {
this.sotimeout = sotimeout;
this.conntimeout = conntimeout;
}
public HttpClientUtil(int maxConnection, int conntimeout, int sotimeout) {
this(conntimeout, sotimeout);
this.maxConnection = maxConnection;
}
public HttpClientUtil(int maxConnection, String charset, int conntimeout, int sotimeout) {
this(conntimeout, sotimeout);
this.maxConnection = maxConnection;
this.reqCharset = charset;
}
public HttpClientUtil(int maxConnection) {
this.maxConnection = maxConnection;
}
public HttpClientUtil(int maxConnection, String charset) {
this.maxConnection = maxConnection;
this.reqCharset = charset;
}
public HttpClientUtil(int maxConnection, String charset, String resCharset) {
this.maxConnection = maxConnection;
this.reqCharset = charset;
this.resCharset = resCharset;
}
public HttpClient getHttpClient() {
return getHttpClient("");
}
public HttpClient getHttpClient(String url) {
String domain = Urls.getDomain(url);
HttpClient httpClient = httpClientMap.get(domain);
if (httpClient == null) {
synchronized (this) {
if (httpClient == null) {
if (pool == null) { //初始化pool
try {
afterPropertiesSet();
} catch (Exception e) {
logger.error(e, e);
}
}
HttpClientBuilder httpClientBuilder = HttpClients.custom();
httpClientBuilder.setConnectionManager(pool);
httpClientBuilder.setDefaultRequestConfig(
RequestConfig.custom()
.setConnectTimeout(conntimeout)
.setSocketTimeout(sotimeout)
.build());
httpClientBuilder.setKeepAliveStrategy(new ConnectionKeepAliveStrategy() {
public long getKeepAliveDuration(HttpResponse response, HttpContext context) {
HeaderElementIterator it = new BasicHeaderElementIterator(response
.headerIterator(HTTP.CONN_KEEP_ALIVE));
while (it.hasNext()) {
HeaderElement he = it.nextElement();
String param = he.getName();
String value = he.getValue();
if (value != null && param.equalsIgnoreCase("timeout")) {
try {
return Long.parseLong(value) * 1000;
} catch (NumberFormatException ignore) {
}
}
}
// 否则保持活动5秒
return 5 * 1000;
}
});
httpClient = httpClientBuilder.build();
httpClientMap.put(domain, httpClient);
}
}
}
return httpClient;
}
@PreDestroy
public void destroy() throws Exception {
logger.info("Http connection pool will destory...");
if (pool != null) {
pool.shutdown();
}
logger.info("Http connection pool destroyed!");
}
@PostConstruct
public void afterPropertiesSet() throws Exception {
RegistryBuilder<ConnectionSocketFactory> schemeRegistry = RegistryBuilder.create();
schemeRegistry.register("http", PlainConnectionSocketFactory.getSocketFactory());
SSLContext sslcontext = SSLContext.getInstance("TLS");
sslcontext.init(new KeyManager[0], new TrustManager[]{new SimpleTrustManager()}, null);
SSLConnectionSocketFactory sf = new SSLConnectionSocketFactory(sslcontext);
schemeRegistry.register("https", sf);
pool = new PoolingHttpClientConnectionManager(schemeRegistry.build());
pool.setMaxTotal(maxConnection);
pool.setDefaultMaxPerRoute(maxConnection);
pool.setDefaultSocketConfig(SocketConfig.custom().setSoTimeout(sotimeout).build());
}
/**
* 直接返回字符
*
* @param url
* @return
* @throws java.io.IOException
*/
public String getData(String url, List<NameValuePair> params) throws IOException {
return getData(url, params, null);
}
public String getData(String url) throws IOException {
return getData(url, Collections.EMPTY_LIST, null, false);
}
public String getData(String url, ApplicationType type) throws IOException {
return getData(url, Collections.EMPTY_LIST, type, false);
}
public String getData(String url, List<NameValuePair> params, ApplicationType type) throws IOException {
return getData(url, params, type, false);
}
/**
* @param url
* @param params
* @param type
* @param isGzip 是否使用gzip解压
* @return
* @throws IOException
*/
public String getData(String url, List<NameValuePair> params, ApplicationType type, boolean isGzip) throws IOException {
return fetchData(createGet(url, params, type));
}
public String putData(String url, List<NameValuePair> params) throws IOException {
return putData(url, params, null, false);
}
public String putData(String url, List<NameValuePair> params, ApplicationType type) throws IOException {
return putData(url, params, type, false);
}
/**
* @param url
* @param params
* @param type
* @param isGzip 是否使用gzip解压
* @return
* @throws IOException
*/
public String putData(String url, List<NameValuePair> params, ApplicationType type, boolean isGzip) throws IOException {
return fetchData(createPut(url, params, type));
}
public String deleteData(String url, List<NameValuePair> params) throws IOException {
return deleteData(url, params, null, false);
}
public String deleteData(String url, List<NameValuePair> params, ApplicationType type) throws IOException {
return deleteData(url, params, type, false);
}
/**
* @param url
* @param params
* @param type
* @param isGzip 是否使用gzip解压
* @return
* @throws IOException
*/
public String deleteData(String url, List<NameValuePair> params, ApplicationType type, boolean isGzip) throws IOException {
return fetchData(createDelete(url, params, type));
}
public String postData(String url, final HttpEntity entity, ApplicationType type) throws IOException {
return postData(url, entity, type, false);
}
public String postData(String url, final HttpEntity entity) throws IOException {
return postData(url, entity, null, false);
}
/**
* @param url
* @param entity
* @param type
* @param isGzip 是否使用gzip解压
* @return
* @throws IOException
*/
public String postData(String url, final HttpEntity entity, ApplicationType type, boolean isGzip) throws IOException {
return fetchData(this.createPost(url, entity, type));
}
public String postData(String url, final List<NameValuePair> params) throws IOException {
return postData(url, params, null, false);
}
public String postData(String url, final List<NameValuePair> params, ApplicationType type) throws IOException {
return postData(url, params, type, false);
}
/**
* @param url
* @param params
* @param type
* @param isGzip 是否使用gzip解压
* @return
* @throws IOException
*/
public String postData(String url, final List<NameValuePair> params, ApplicationType type, boolean isGzip) throws IOException {
return fetchData(this.createPost(url, params, type));
}
public HttpResult postDetailData(String url, final List<NameValuePair> params) throws IOException {
return fetchDetailData(this.createPost(url, params, null));
}
public HttpResult getDetailData(String url, List<NameValuePair> params) throws IOException {
return fetchDetailData(createGet(url, params, null));
}
public HttpClientUtil mobileClient() {
this.agentHeader = MOBILE_USER_AGENT;
return this;
}
public String fetchData(HttpRequestBase request) {
HttpResult result = fetchDetailData(request);
return result.getResult();
}
public HttpResult fetchDetailData(HttpRequestBase request) {
HttpResult httpResult = null;
if (request == null) {
return new HttpResult(HttpStatus.SC_BAD_REQUEST, "null request");
}
request.setProtocolVersion(HttpVersion.HTTP_1_1);
HttpClient client = null;
String result = null;
long watch = System.nanoTime();
HttpResponse response = null;
HttpEntity rsentity = null;
try {
client = getHttpClient(request.getURI().toString());
request.addHeader("User-Agent", agentHeader);
this.agentHeader = COMMON_USER_AGENT;
request.addHeader("Connection", "keep-alive");
response = client.execute(request);
rsentity = response.getEntity();
if (rsentity.getContentEncoding() != null &&
rsentity.getContentEncoding().getValue().toLowerCase().contains(ContentEncoding.GZIP.getName())) {
rsentity = new GzipDecompressingEntity(rsentity);
}
if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
Charset rescharset = ContentType.getOrDefault(rsentity).getCharset();
if (rescharset != null && rescharset.name().equals(HTTP.DEFAULT_CONTENT_CHARSET)) {
result = EntityUtils.toString(rsentity);
if (resCharset == null) {
result = new String(result.getBytes(rescharset), DEFAULT_CHARSET);
} else {
result = new String(result.getBytes(rescharset), resCharset);
}
} else {
if (resCharset == null) {
result = EntityUtils.toString(rsentity);
} else {
result = EntityUtils.toString(rsentity, resCharset);
}
}
if (logger.isDebugEnabled()) {
logger.debug(" fetch request " + result);
}
httpResult = new HttpResult(result);
} else {
logger.error("fetch request return error status:" + request.getURI()
+ response.getStatusLine().getStatusCode());
result = EntityUtils.toString(rsentity);
httpResult = new HttpResult(response.getStatusLine().getStatusCode(), result);
}
} catch (ClientProtocolException e) {
logger.error("fetch request error " + request.getURI() + " msg" + e.getMessage());
httpResult = new HttpResult(HttpStatus.SC_BAD_REQUEST, e.getMessage());
} catch (ParseException e) {
logger.error("fetch request error " + request.getURI() + " msg" + e.getMessage());
httpResult = new HttpResult(HttpStatus.SC_BAD_REQUEST, e.getMessage());
} catch (IOException e) {
logger.error("fetch request error " + request.getURI() + " msg" + e.getMessage());
httpResult = new HttpResult(HttpStatus.SC_BAD_REQUEST, e.getMessage());
} finally {
try {
EntityUtils.consume(rsentity);
} catch (IOException e) {
logger.error("Ensures that the entity content is fully consumed " + e.getMessage());
}
request.releaseConnection();
if (logger.isDebugEnabled())
logger.debug("fetch url " + request.getURI() + ",consume: " + (System.nanoTime() - watch) / 1000);
}
return httpResult;
}
/**
* 创建post请求
* <p/>
* <p/>
* 路径
*
* @return 请求
* @throws java.io.UnsupportedEncodingException
*/
public HttpPost createPost(String url, final List<NameValuePair> params, ApplicationType type)
throws UnsupportedEncodingException {
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(params, reqCharset);
return createPost(url, entity, type);
}
public HttpPost createPost(String url, final List<NameValuePair> params) throws UnsupportedEncodingException {
return createPost(url, params, null);
}
public HttpPost createPost(String url, HttpEntity entity) {
return createPost(url, entity);
}
public HttpPost createPost(String url, HttpEntity entity, ApplicationType accept) {
HttpPost method = new HttpPost(url);
if (null != accept) {
method.addHeader("accept", accept.val());
}
method.setEntity(entity);
return method;
}
public HttpGet createGet(String url, final List<NameValuePair> params) throws IOException {
return createGet(url, params, null);
}
public HttpGet createGet(String url, final List<NameValuePair> params, ApplicationType accept) throws IOException {
HttpGet method = new HttpGet(urlEncode(url, params));
if (null != accept) {
method.addHeader("accept", accept.val());
}
return method;
}
private String urlEncode(String url, final List<NameValuePair> params) {
if (params == null)
return url;
String param = URLEncodedUtils.format(params, reqCharset);
if (url.indexOf("?") == -1) {
url += "?" + param;
} else {
url += param;
}
return url;
}
public HttpPut createPut(String url, final List<NameValuePair> params, ApplicationType accept) throws IOException {
HttpPut method = new HttpPut(url);
if (params != null) {
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(params, reqCharset);
method.setEntity(entity);
}
if (null != accept) {
method.addHeader("accept", accept.val());
}
return method;
}
public HttpPut createPut(String url, final List<NameValuePair> params) throws IOException {
return createPut(url, params, null);
}
public HttpDelete createDelete(String url, final List<NameValuePair> params) throws IOException {
return createDelete(url, params, null);
}
public HttpDelete createDelete(String url, final List<NameValuePair> params, ApplicationType accept)
throws IOException {
HttpDelete method = new HttpDelete(urlEncode(url, params));
if (null != accept) {
method.addHeader("accept", accept.val());
}
return method;
}
public String getAgentHeader() {
return agentHeader;
}
public void setAgentHeader(String agentHeader) {
this.agentHeader = agentHeader;
}
}