-
Notifications
You must be signed in to change notification settings - Fork 0
/
IPSeekerExt.java
322 lines (296 loc) · 8.22 KB
/
IPSeekerExt.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
package com.transformer.util;
import java.io.File;
import java.io.IOException;
import org.apache.commons.lang.StringUtils;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.log4j.Logger;
import com.transformer.common.GlobalConstants;
import com.transformer.util.ip.IPSeeker;
/**
* Ip解析工具类
*
*/
public class IPSeekerExt extends IPSeeker {
private static final Logger logger = Logger.getLogger(IPSeekerExt.class);
/**
* 保存纯真ip库的ip文件路径<br/>
* 如果在集群上运行jar文件,需要将该参数改成具体的linux环境路径或者hdfs上的环境路径,如果是linux环境路径,要求所有机器该文件都存在,
* 如果是hdfs路径,要求给定全称<br/>
* TODO: 自行修改
*/
private static final String ipFilePath = "ip/qqwry.dat";
// HDFS路径
// private static final String ipFilePath =
// "hdfs://hadoop-senior01:8020/ips/qqwry.dat";
/**
* 用于单例对象的属性
*/
private static IPSeekerExt single = null;
/**
* 获取实际环境路径
*
* @return
*/
private static String getActualIpFilePath() {
String actualIpFilePath = "ip/qqwry.dat";
if (StringUtils.isNotBlank(ipFilePath)) {
if (ipFilePath.toLowerCase().startsWith("hdfs:")) {
// 使用的是hdfs路径
try {
final String deleteDirPath = "/tmp/transformer_" + System.currentTimeMillis();
actualIpFilePath = deleteDirPath + "/qqwry.dat";
Path srcPath = new Path(ipFilePath);
Path destPath = new Path(actualIpFilePath);
FileSystem fs = FileSystem.get(new Configuration());
// 复制数据到本地
fs.copyToLocalFile(srcPath, destPath);
// 复制成功,当jvm退出的时候,删除文件
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run() {
try {
// 关闭资源
single.close();
} catch (IOException e) {
// nothings
} finally {
// 设置为空
single = null;
// 删除文件,如果存在,删除
LocalFileDeleteUtil.deleteLocalFile(deleteDirPath);
}
}
}));
} catch (Exception e) {
logger.warn("读取数据异常", e);
actualIpFilePath = "ip/qqwry.dat";
}
} else {
// 使用普通路径
actualIpFilePath = ipFilePath;
}
}
logger.debug("实际IP文件解决路径为:" + actualIpFilePath);
// 返回最终结果
return actualIpFilePath;
}
/**
* 构造函数,private修饰,单例模式
*
* @param ipFilePath
*/
private IPSeekerExt(String ipFilePath) {
super(ipFilePath);
}
/**
* 获取ip解析对象
*
* @return
*/
public static IPSeekerExt getInstance() {
if (single == null) {
synchronized (IPSeekerExt.class) {
if (single == null) {
single = new IPSeekerExt(getActualIpFilePath());
}
}
}
return single;
}
/**
* 解析ip地址<br/>
* 如果解析正常,返回具体的值<br/>
* 如果无法解析,返回unknown<br/>
* 如果解析过程中出现异常信息,直接返回null
*
* @param ip
* 需要进行解析的ip地址库
* @return
*/
public RegionInfo analysisIp(String ip) {
RegionInfo info = new RegionInfo();
// 判断参数是否为空
if (ip != null && !"".equals(ip.trim())) {
// ip不为空
String country = super.getCountry(ip);
if (country == null || country.isEmpty()) {
// 数据库中没有找到ip,直接返回unknown
return info;
}
if (!ERROR_RESULT.equals(country)) {
// 能够正常解析出国家名称
if ("局域网".equals(country) || "IANA".equals(country) || country.trim().endsWith("CZ88")) {
// 都可以认为是本地, 没有找到ip返回的值是空
info.setCountry("中国");
info.setProvince("上海市");
} else {
int length = country.length();
int index = country.indexOf("省");
if (index > 0) {
// 表示是国家的某个省份
info.setCountry("中国");
info.setProvince(country.substring(0, Math.min(index + 1, length)));
int index2 = country.indexOf('市', index);
if (index2 > 0) {
info.setCity(country.substring(index + 1, Math.min(index2 + 1, length)));
}
} else {
// 单独的处理, 自治区以及直辖市 特别行政区
String flag = country.substring(0, 2);
switch (flag) {
case "内蒙":
info.setCountry("中国");
info.setProvince("内蒙古自治区");
country = country.substring(3);
if (country != null && !country.isEmpty()) {
index = country.indexOf('市');
if (index > 0) {
info.setCity(country.substring(0, Math.min(index + 1, country.length())));
}
// :TODO 针对是旗、盟之类的不考虑
}
break;
case "广西":
case "宁夏":
case "西藏":
case "新疆":
info.setCountry("中国");
info.setProvince(flag);
country = country.substring(2);
if (country != null && !country.isEmpty()) {
index = country.indexOf('市');
if (index > 0) {
info.setCity(country.substring(0, Math.min(index + 1, country.length())));
}
}
break;
case "上海":
case "北京":
case "重庆":
case "天津":
info.setCountry("中国");
info.setProvince(flag + "市");
country = country.substring(3);
if (country != null && !country.isEmpty()) {
index = country.indexOf('区');
if (index > 0) {
char ch = country.charAt(index - 1);
if (ch != '小' && ch != '校') {
info.setCity(country.substring(0, Math.min(index + 1, country.length())));
}
}
}
if (GlobalConstants.DEFAULT_VALUE.equals(info.getCity())) {
// 没有区,可能是县
index = country.indexOf('县');
if (index > 0) {
info.setCity(country.substring(0, Math.min(index + 1, country.length())));
}
}
break;
case "香港":
case "澳门":
info.setCountry("中国");
info.setProvince(flag + "特别行政区");
break;
default:
info.setCountry(country); // 针对其他国家
break;
}
}
}
} else {
// 文件异常,直接返回null
info = null;
}
}
return info;
}
/**
* 地域描述信息内部类
*
*/
public static class RegionInfo {
private String country = GlobalConstants.DEFAULT_VALUE;
private String province = GlobalConstants.DEFAULT_VALUE;
private String city = GlobalConstants.DEFAULT_VALUE;
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getProvince() {
return province;
}
public void setProvince(String province) {
this.province = province;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
@Override
public String toString() {
return "RegionInfo [country=" + country + ", province=" + province + ", city=" + city + "]";
}
}
/**
* 删除本地文件的工具类
*
* @author ibf
*
*/
private static class LocalFileDeleteUtil {
/**
* 删除指定文件
*
* @param file
*/
public static void deleteLocalFile(String file) {
// 构建对象
File localFile = new File(file);
if (localFile.exists()) {
// 文件存在,则进行删除操作
if (localFile.isFile()) {
// 是本地文件
deleteFile(localFile);
} else {
// 是本地目录
deleteDirectory(localFile);
}
}
}
/**
* 删除指定文件
*
* @param file
*/
private static void deleteFile(File file) {
file.delete();
}
/**
* 删除指定文件目录,删除规则是:先删除子文件,再删除父文件夹
*
* @param file
*/
private static void deleteDirectory(File file) {
File[] childFiles = file.listFiles();
for (File childFile : childFiles) {
if (childFile.isFile()) {
// 删除文件
deleteFile(childFile);
} else {
// 删除目录
deleteDirectory(childFile);
}
}
// 子文件夹以及文件已经删除完成,开始删除当前文件夹
file.delete();
}
}
}