HadoopIntellijPlugin插件HDFS文件系统常用操作类

  本节介绍一下使用Hadoop的Java的API进行HDFS的相关操作,包括判断目录、文件是否存在;获目录、文件的ACL权限;获取目录或文件的属性信息;下载目录或文件;上传目录或文件等等。这里我就不做详细分析了,贴出整个类的代码

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
/**
* HDFS文件操作工具类
* Created by fangyuzhong on 17-7-27.
*/
public class HDFSUtil
{
/*
定义文件读取的缓冲区长度
*/
private static final int BUFFERSIZE=4096;
/**
* 判断目录是否存在
* @param strPath 目录路径
* @param fileSystem 文件系统
* @return 存在返回true,否则返回false
*/
public static boolean dirExists(String strPath,FileSystem fileSystem)
{
try
{
return fileSystem.getFileStatus(new Path(strPath)).isDirectory();
}
catch (Exception ex)
{
return false;
}
}
/**
* 判断文件是否存在
* @param strPath 文件路径
* @param fileSystem 文件系统
* @return 存在返回true,否则返回false
*/
public static boolean fileExists(String strPath,FileSystem fileSystem)
{
try
{
return fileSystem.getFileStatus(new Path(strPath)).isFile();
}
catch (Exception ex)
{
return false;
}
}
/**
*获取指定目录或者文件的ACL权限对象
* @param fileSystem
* @param strDirPath
* @param strUserName
* @return
*/
public static FsAction getDirFileActionByUser(FileSystem fileSystem,String strDirPath,String strUserName)
{
Path path = new Path(strDirPath);
try
{
AclStatus aclStatus= fileSystem.getAclStatus(path);
if(aclStatus.getOwner().equals(strUserName))
{
return aclStatus.getPermission().getUserAction();
}
List<AclEntry> aclEntries= aclStatus.getEntries();
for(AclEntry aclEntry:aclEntries)
{
if(aclEntry.getType()== AclEntryType.USER)
{
if(aclEntry.getName().equals(strUserName))
{
return aclEntry.getPermission();
}
}
}
return aclStatus.getPermission().getOtherAction();
}
catch (IOException ex)
{
return null;
}
}
/**
* 获取文件系统的相关信息
*
* @param fileStatus
* @return
*/
public synchronized static Map<String, String> getFileSystemInformation(FileStatus fileStatus)
{
Map<String, String> fileSystemInformations = new TreeMap();
ResourceBundle resourceBundle = LocaleLanguageManager.getInstance().getResourceBundle();
if (fileStatus.isDirectory())
{
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.DIRECTORYPATH), fileStatus.getPath().toString());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.DIRECTORYOWNER), fileStatus.getOwner());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.DIRECTORYPERMISSION), fileStatus.getPermission().toString());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.DIRECTORYGROUP), fileStatus.getGroup());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.DIRECTORYMODIFICATIONTIME), new Timestamp(fileStatus.getModificationTime()).toString());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.DIRECTORYACCESSTIME), new Timestamp(fileStatus.getAccessTime()).toString());
} else
{
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.FILEPATH), fileStatus.getPath().toString());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.FILELEN), FormatUtil.sizeFormatNum2String(fileStatus.getLen()));
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.FILEREPLICATION), new Short(fileStatus.getReplication()).toString());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.FILEBLOCKSIZE), FormatUtil.sizeFormatNum2String(fileStatus.getBlockSize()));
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.FILEOWNER), fileStatus.getOwner());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.FILEGROUP), fileStatus.getGroup());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.FILEPERMISSION), fileStatus.getPermission().toString());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.FILEMODIFICATIONTIME), new Timestamp(fileStatus.getModificationTime()).toString());
fileSystemInformations.put(resourceBundle.getString(LanguageKeyWord.FILEACCESSTIME), new Timestamp(fileStatus.getAccessTime()).toString());

}
return fileSystemInformations;
}
/**
* @param strhdfspath HDFS中选中的单个文件路径
* @param strLocalPath 下载要保存到本地的文件路径
* @param fileSystem HDFS文件系统对象
* @param progressIndicator IDEA进度对象
* @return 是否下载成功
* @throws IOException
*/
@Deprecated
public synchronized static boolean copyFile(String strhdfspath, String strLocalPath, FileSystem fileSystem,
ProgressIndicator progressIndicator) throws IOException
{
OutputStream out = null;
InputStream in = null;
try
{
progressIndicator.setIndeterminate(false);//确定进度
String fileName = strhdfspath.trim().substring(strhdfspath.lastIndexOf("/") + 1);
//事先获取文件的大小
long fileSize = fileSystem.getFileStatus(new Path(strhdfspath)).getLen() / 1024L;
int pageSize = (int) Math.ceil(fileSize / 100.00);//进度条进度设置100
in = fileSystem.open(new Path(strhdfspath), 0);
out = new FileOutputStream(strLocalPath + "/" + fileName);
PrintStream ps = out instanceof PrintStream ? (PrintStream) out : null;
byte[] buf = new byte[HDFSUtil.BUFFERSIZE];
long count = 0;
int progressCount = 0;
for (int bytesRead = in.read(buf); bytesRead >= 0; bytesRead = in.read(buf))
{
count++;
if (count % pageSize == 0)
{
progressCount++;
progressIndicator.setIndeterminate(false);
progressIndicator.setFraction(progressCount * 0.1);
}
out.write(buf, 0, bytesRead);
if (ps != null && ps.checkError())
{
throw new IOException("Unable to write to output stream.");
}
}
if (true)
{
out.close();
out = null;
in.close();
in = null;
}
} finally
{
if (true)
{
closeStream(out);
closeStream(in);
}
}
return true;
}
/**
* 下载单个文件
*
* @param strhdfspath HDFS中选中的单个文件路径
* @param strLocalPath 下载要保存到本地的文件路径
* @param fileSystem HDFS文件系统对象
* @param progressIndicator IDEA进度对象
* @param project IDEA工程
*/
@Deprecated
public synchronized static void copyFile(String strhdfspath, String strLocalPath, FileSystem fileSystem,
ProgressIndicator progressIndicator, Project project)
{
boolean isSuccess = false;
try
{
isSuccess = copyFile(strhdfspath, strLocalPath, fileSystem, progressIndicator);

} catch (Exception ex)
{
isSuccess = false;

}
if (!isSuccess)
{
MessageUtil.showErrorDialog(project, LocaleLanguageManager.getInstance().getResourceBundle().getString(LanguageKeyWord.MESSAGETILE),
LocaleLanguageManager.getInstance().getResourceBundle().getString(LanguageKeyWord.DOWNFAILED));
} else
{
MessageUtil.showInfoDialog(project, LocaleLanguageManager.getInstance().getResourceBundle().getString(LanguageKeyWord.MESSAGETILE),
LocaleLanguageManager.getInstance().getResourceBundle().getString(LanguageKeyWord.DOWNSUCCESS));

}
}
/**
* 将文件或目录拷贝到本地系统(即下载目录或文件)
* @param src 远程的文件或者目录
* @param dst 本地的文件或者目录
* @param conf 系统配置
* @param overwrite 是否覆盖
* @param srcFileSystem 源系统对象
* @param progressIndicator 进度对象
*
*/
public synchronized static boolean copyToLocalFile(String src,String dst,Configuration conf,boolean overwrite,
FileSystem srcFileSystem,ProgressIndicator progressIndicator)
{
boolean isSuccess=false;
try
{
FileSystem dstFileSystem = getLocal(conf);//获取目标(本地文件系统)
FileStatus fileStatus = srcFileSystem.getFileStatus(new Path(src));
isSuccess= copyFile(srcFileSystem,fileStatus,dstFileSystem,new Path(dst),
overwrite,progressIndicator,LocaleLanguageManager.getInstance().getResourceBundle().getString(LanguageKeyWord.DOWNPROGRESSTEXT));
}
catch (Exception ex)
{
LoggerFactory.createLogger(HDFSUtil.class).error("Error",ex);
}
return isSuccess;
}
/**
* 将本地文件或者目录拷贝到目标系统中(HDFS)
* @param src 源路径(本地路径)
* @param dst 目标路径(HDFS路径)
* @param conf 配置
* @param overwrite 是否覆盖
* @param dstFileSystem 目标文件系统(HDFS)
* @param progressIndicator 进度对象
* @return
*/
public synchronized static boolean copyFromLocalFile(String src,String dst,Configuration conf,boolean overwrite,
FileSystem dstFileSystem,ProgressIndicator progressIndicator)
{
boolean isSuccess=false;
try
{
FileSystem srcFileSystem = getLocal(conf);//获取本地选中的目录或者文件
FileStatus fileStatus = srcFileSystem.getFileStatus(new Path(src));
isSuccess= copyFile(srcFileSystem,fileStatus,dstFileSystem,new Path(dst),
overwrite,progressIndicator,LocaleLanguageManager.getInstance().getResourceBundle().getString(LanguageKeyWord.UPPROGRESSTEXT));
}
catch (Exception ex)
{

}
return isSuccess;
}
/**
*
* @param srcFS
* @param srcStatus
* @param dstFS
* @param dst
* @param overwrite
* @param progressIndicator
* @param strProgressText
* @return
* @throws IOException
*/
public synchronized static boolean copyFile(FileSystem srcFS, FileStatus srcStatus,
FileSystem dstFS, Path dst,
boolean overwrite,ProgressIndicator progressIndicator,String strProgressText) throws IOException
{
Path src = srcStatus.getPath();
dst = checkDest(src.getName(), dstFS, dst, overwrite);
if (srcStatus.isDirectory())
{
checkDependencies(srcFS, src, dstFS, dst);
if (!dstFS.mkdirs(dst))
{
return false;
}
FileStatus contents[] = srcFS.listStatus(src);
int fileCount= (int)Math.ceil(contents.length/100.00);
int k=0;
String dir = LocaleLanguageManager.getInstance().getResourceBundle().getString(LanguageKeyWord.OBJECTTYPEDIRECTORY);
for (int i = 0; i < contents.length; i++)
{
if(i%fileCount==0)
{
k++;
progressIndicator.setIndeterminate(false);
progressIndicator.setFraction(k * 0.01);
String strMessage = String.format("%s:%s",strProgressText+dir,contents[i].getPath().getParent().toString());
progressIndicator.setText(strMessage);
}
copyFile(srcFS, contents[i], dstFS,
new Path(dst, contents[i].getPath().getName()), overwrite, progressIndicator,strProgressText);
}
} else
{
InputStream in = null;
OutputStream out = null;
try
{
in = srcFS.open(src);
out = dstFS.create(dst, overwrite);
PrintStream ps = out instanceof PrintStream ? (PrintStream) out : null;
byte[] buf = new byte[HDFSUtil.BUFFERSIZE];
long fileSize=srcStatus.getLen();
int bufCount =(int) Math.ceil(fileSize / (HDFSUtil.BUFFERSIZE*1.00));//缓冲区个数
int count =0;
int showProgressCount= (int)Math.ceil(bufCount/100.00);//计算多少个缓冲区后,显示进度条的一个刻度
int k=0;
String strFile=LocaleLanguageManager.getInstance().getResourceBundle().getString(LanguageKeyWord.OBJECTTYPEFILE);
for (int bytesRead = in.read(buf); bytesRead >= 0; bytesRead = in.read(buf))
{
count++;
if (count % showProgressCount == 0)
{
k++;
progressIndicator.setIndeterminate(false);
progressIndicator.setFraction(k * 0.01);
progressIndicator.setText2(strProgressText+strFile+"("+k+"%):"+src.toString());
}
out.write(buf, 0, bytesRead);
if (ps != null && ps.checkError())
{
throw new IOException("Unable to write to output stream.");
}
}
out.close();
out = null;
in.close();
in = null;
} catch (IOException e)
{
IOUtils.closeStream(out);
IOUtils.closeStream(in);
throw e;
}
}
return true;
}


/**
*
* @param srcName
* @param dstFS
* @param dst
* @param overwrite
* @return
* @throws IOException
*/
private synchronized static Path checkDest(String srcName, FileSystem dstFS, Path dst,
boolean overwrite) throws IOException
{
FileStatus sdst;
try
{
sdst = dstFS.getFileStatus(dst);
} catch (FileNotFoundException e)
{
sdst = null;
}
if (null != sdst)
{
if (sdst.isDirectory())
{
if (null == srcName)
{
throw new IOException("Target " + dst + " is a directory");
}
return checkDest(null, dstFS, new Path(dst, srcName), overwrite);
} else if (!overwrite)
{
throw new IOException("Target " + dst + " already exists");
}
}
return dst;
}

/**
*
* @param srcFS
* @param src
* @param dstFS
* @param dst
* @throws IOException
*/
private synchronized static void checkDependencies(FileSystem srcFS, Path src,
FileSystem dstFS, Path dst)
throws IOException
{
if (srcFS == dstFS)
{
String srcq = src.makeQualified(srcFS).toString() + Path.SEPARATOR;
String dstq = dst.makeQualified(dstFS).toString() + Path.SEPARATOR;
if (dstq.startsWith(srcq))
{
if (srcq.length() == dstq.length())
{
throw new IOException("Cannot copy " + src + " to itself.");
} else
{
throw new IOException("Cannot copy " + src + " to its subdirectory " +
dst);
}
}
}
}
}