aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-server/src/main/java/org/onap/sdc/workflowdesigner/utils/FileCommonUtils.java
blob: 6e65a96be6ba7cc10b6eaeb0619d9589a2527d83 (plain)
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
/**
 * Copyright (c) 2017 ZTE Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the Apache License, Version 2.0
 * and the Eclipse Public License v1.0 which both accompany this distribution,
 * and are available at http://www.eclipse.org/legal/epl-v10.html
 * and http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *     ZTE - initial API and implementation and/or initial documentation
 */

package org.onap.sdc.workflowdesigner.utils;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.Reader;
import java.io.UnsupportedEncodingException;
import java.io.Writer;
import java.nio.file.DirectoryStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.List;

import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * common utility class.
 * 
 */
public class FileCommonUtils {
  private static final Logger logger = LoggerFactory.getLogger(FileCommonUtils.class);

  private static final int KILO_BYTE = 1024; // 1K
  private static final int MEGA_BYTE = 1024 * 1024; // 1M
  private static final int GIGA_BYTE = 1024 * 1024 * 1024; // 1G

  private static final int TRY_COUNT = 3;

  /**
   * 
   * @param srcAbsolutePath
   * @param destAbsolutePath
   */
  public static void rename(String srcAbsolutePath, String destAbsolutePath) {
    File dest = new File(destAbsolutePath);
    new File(srcAbsolutePath).renameTo(dest);
  }

  /**
   * 
   * @param filePath
   * @return
   */
  public static String getFileName(String filePath) {
    return new File(filePath).getName();
  }

  /**
   * 
   * @param filePath
   * @return
   */
  public static String getFilePath(String filePath) {
    return new File(filePath).getParent();
  }

  /**
   * @param ins
   */
  public static void closeInputStream(InputStream ins) {
    if (ins != null) {
      try {
        ins.close();
      } catch (IOException e) {
        logger.info("Close InputStream failed.", e);
      }
    }
  }

  /**
   * 
   * @param os
   */
  public static void closeOutputStream(OutputStream os) {
    if (os != null) {
      try {
        os.close();
      } catch (IOException e) {
        logger.info("Close OutputStream failed.", e);
      }
    }
  }

  /**
   * @param reader
   */
  public static void closeReader(Reader reader) {
    if (reader != null) {
      try {
        reader.close();
      } catch (IOException e) {
        logger.info("Close Reader failed.", e);
      }
    }
  }

  /**
   * 
   * @param writer
   */
  public static void closeWriter(Writer writer) {
    if (writer != null) {
      try {
        writer.close();
      } catch (IOException e) {
        logger.info("Close Writer failed.", e);
      }
    }
  }

  /**
   * @param sourecePath
   * @param targetPath
   * @throws IOException
   */
  public static void copy(Path sourecePath, Path targetPath) throws IOException {
    if (!sourecePath.toFile().exists()) {
      return;
    }

    if (Files.isDirectory(sourecePath)) {
      List<Path> paths = list(sourecePath);
      for (Path path : paths) {
        copy(path, targetPath.resolve(path.getFileName()));
      }

      return;
    }

    if (!targetPath.getParent().toFile().exists()) {
      targetPath.getParent().toFile().mkdirs();
    }
    Files.copy(sourecePath, targetPath, StandardCopyOption.REPLACE_EXISTING);
  }

  /**
   * create folder.
   * 
   * @param path folder path to create
   * @return boolean
   */
  public static boolean createDirectory(String path) {
    File folder = new File(path);
    int tryCount = 0;
    while (tryCount < FileCommonUtils.TRY_COUNT) {
      tryCount++;
      if (!folder.exists() && !folder.mkdirs()) {
        continue;
      } else {
        return true;
      }
    }

    return folder.exists();
  }

  /**
   * delete the file and file directory.
   * 
   * @param file file
   * @return boolean
   */
  public static void delete(File file) {
    logger.info("delete file = {}", file);

    if (file.isDirectory()) {
      String[] children = file.list();
      if (children != null) {
        for (int i = 0; i < children.length; i++) {
          delete(new File(file, children[i]));
        }
      }
    }

    deleteFile(file);
  }

  /**
   * 
   * @param file
   */
  public static void deleteFile(File file) {
    logger.info("deleteFile file = {}", file);

    try {
      FileUtils.forceDelete(file);
    } catch (IOException e) {
      logger.warn("deleteFile error. {}", file, e);
    }
  }

  public static String formatFileSize(double fileLength, int fileUnit) {
    DecimalFormat format = new DecimalFormat("#0.00");
    return format.format(fileLength / fileUnit) + "M";
  }

  /**
   * get file size.
   * 
   * @param file file which to get the size
   * @param fileUnit file unit
   * @return String file size
   */
  public static String getFileSize(File file, int fileUnit) {
    String fileSize = "";
    DecimalFormat format = new DecimalFormat("#0.00");
    if (file.exists()) {
      fileSize = format.format((double) file.length() / fileUnit) + "M";
    }
    return fileSize;
  }

  /**
   * get file size by content.
   * 
   * @param contentRange content range
   * @return String
   */
  public static String getFileSizeByContent(String contentRange) {
    String size =
        contentRange.substring(contentRange.indexOf("/") + 1, contentRange.length()).trim();
    return formatFileSize(Double.parseDouble(size), MEGA_BYTE);
  }

  /**
   * get the size format according file size.
   * 
   * @param fileSize file size
   * @return size format
   */
  public static String getFormatFileSize(long fileSize) {
    if (fileSize >= GIGA_BYTE) {
      return String.format("%.1f GB", (float) fileSize / (long) GIGA_BYTE);
    } else if (fileSize >= MEGA_BYTE) {
      float fi = (float) fileSize / (long) MEGA_BYTE;
      return String.format(fi > 100 ? "%.0f MB" : "%.1f MB", fi);
    } else if (fileSize >= KILO_BYTE) {
      float fi = (float) fileSize / (long) KILO_BYTE;
      return String.format(fi > 100 ? "%.0f KB" : "%.1f KB", fi);
    } else {
      return String.format("%d B", fileSize);
    }
  }

  public static long getFileSize(String path) {
    return getFileSize(new File(path));
  }

  /**
   * 
   * @param file
   * @return
   */
  public static long getFileSize(final File file) {
    if (file.isFile()) {
      return file.length();
    }

    final File[] children = file.listFiles();
    long total = 0;
    if (children != null) {
      for (final File child : children) {
        total += getFileSize(child);
      }
    }

    return total;
  }

  /**
   * 
   * @param path
   * @return
   * @throws IOException
   */
  public static List<Path> list(Path path) throws IOException {
    if (!path.toFile().isDirectory()) {
      return new ArrayList<>();
    }

    List<Path> list = new ArrayList<>();
    DirectoryStream<Path> ds = Files.newDirectoryStream(path);
    for (Path p : ds) {
      list.add(p);
    }
    return list;
  }

  /**
   * @param path
   * @return
   * @throws IOException
   */
  public static List<String> listFileName(Path path) throws IOException {
    List<String> list = new ArrayList<>();
    DirectoryStream<Path> ds = Files.newDirectoryStream(path);
    for (Path p : ds) {
      list.add(p.getFileName().toString());
    }

    return list;
  }

  /**
   * 
   * @param srcPath
   * @param destPath
   * @throws IOException
   */
  public static void moveDirectory(String srcPath, String destPath) throws IOException {
    File destDirectory = new File(destPath);
    File srcDirectory = new File(srcPath);
    FileUtils.deleteDirectory(destDirectory);
    FileUtils.copyDirectory(srcDirectory, destDirectory);
    FileUtils.deleteDirectory(srcDirectory);
  }

  /**
   * 
   * @param ins
   * @return
   * @throws IOException
   */
  public static String[] readLines(InputStream ins) throws IOException {
    InputStreamReader insReader = new InputStreamReader(ins);
    BufferedReader reader = new BufferedReader(insReader);

    List<String> lineList = new ArrayList<>();
    String line;
    try {
      while ((line = reader.readLine()) != null) {
        lineList.add(line);
      }
    } finally {
      closeReader(reader);
      closeReader(insReader);
    }

    return lineList.toArray(new String[0]);
  }

  /**
   * 
   * @param ins
   * @return
   * @throws IOException
   */
  public static String readString(InputStream ins) throws IOException {
    return IOUtils.toString(ins, "UTF-8");
  }

  /**
   * 
   * @param filePath
   * @return
   * @throws IOException
   */
  public static String readString(String filePath) throws IOException {
    InputStream ins = null;
    try {
      ins = Files.newInputStream(Paths.get(filePath));
      return readString(ins);
    } finally {
      closeInputStream(ins);
    }
  }

  /**
   * 
   * @param ins
   * @param path
   * @param fileName
   * @return
   * @throws IOException
   */
  public static String saveFile(InputStream ins, String path, String fileName) throws IOException {
    File tmpPath = new File(path);
    if (!tmpPath.exists()) {
      tmpPath.mkdirs();
    }

    File file = new File(path + File.separator + fileName);
    OutputStream os = null;
    try {
      int read = 0;
      byte[] bytes = new byte[1024];
      os = new FileOutputStream(file, true);
      while ((read = ins.read(bytes)) != -1) {
        os.write(bytes, 0, read);
      }
      os.flush();
      return file.getAbsolutePath();
    } finally {
      closeOutputStream(os);
    }
  }

  /**
   * @param s
   * @throws IOException
   * @throws UnsupportedEncodingException
   */
  public static void write(String s, String fileName)
      throws UnsupportedEncodingException, IOException {
    FileOutputStream out = null;
    try {
      out = new FileOutputStream(fileName);
      out.write(s.getBytes("UTF-8"));
      out.close();
    } finally {
      closeOutputStream(out);
    }

  }

  /**
   * @param ss
   * @param fileName
   * @throws IOException
   * @throws UnsupportedEncodingException
   */
  public static void write(String[] ss, String fileName)
      throws UnsupportedEncodingException, IOException {
    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < ss.length; i++) {
      sb.append(ss[i]).append(System.lineSeparator());
    }

    write(sb.toString(), fileName);
  }

  /**
   * 
   * @param rootPath
   * @param more
   * @return
   */
  public static String buildAbsolutePath(String rootPath, String... more) {
    Path absolutePath = Paths.get(rootPath, more);
    return absolutePath.toFile().getAbsolutePath();
  }

}