James Moger
2014-10-10 a74ddc24545ec45d0bb82ca2bb8f628ffdaa9da3
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
/*
 * Copyright 2011 gitblit.com.
 *
 * 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.gitblit.utils;
 
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.nio.charset.Charset;
import java.nio.file.Path;
import java.nio.file.Paths;
 
/**
 * Common file utilities.
 *
 * @author James Moger
 *
 */
public class FileUtils {
 
    /** 1024 (number of bytes in one kilobyte) */
    public static final int KB = 1024;
 
    /** 1024 {@link #KB} (number of bytes in one megabyte) */
    public static final int MB = 1024 * KB;
 
    /** 1024 {@link #MB} (number of bytes in one gigabyte) */
    public static final int GB = 1024 * MB;
 
    /**
     * Returns an int from a string representation of a file size.
     * e.g. 50m = 50 megabytes
     *
     * @param aString
     * @param defaultValue
     * @return an int value or the defaultValue if aString can not be parsed
     */
    public static int convertSizeToInt(String aString, int defaultValue) {
        return (int) convertSizeToLong(aString, defaultValue);
    }
 
    /**
     * Returns a long from a string representation of a file size.
     * e.g. 50m = 50 megabytes
     *
     * @param aString
     * @param defaultValue
     * @return a long value or the defaultValue if aString can not be parsed
     */
    public static long convertSizeToLong(String aString, long defaultValue) {
        // trim string and remove all spaces
        aString = aString.toLowerCase().trim();
        StringBuilder sb = new StringBuilder();
        for (String a : aString.split(" ")) {
            sb.append(a);
        }
        aString = sb.toString();
 
        // identify value and unit
        int idx = 0;
        int len = aString.length();
        while (Character.isDigit(aString.charAt(idx))) {
            idx++;
            if (idx == len) {
                break;
            }
        }
        long value = 0;
        String unit = null;
        try {
            value = Long.parseLong(aString.substring(0, idx));
            unit = aString.substring(idx);
        } catch (Exception e) {
            return defaultValue;
        }
        if (unit.equals("g") || unit.equals("gb")) {
            return value * GB;
        } else if (unit.equals("m") || unit.equals("mb")) {
            return value * MB;
        } else if (unit.equals("k") || unit.equals("kb")) {
            return value * KB;
        }
        return defaultValue;
    }
 
    /**
     * Returns the byte [] content of the specified file.
     *
     * @param file
     * @return the byte content of the file
     */
    public static byte [] readContent(File file) {
        byte [] buffer = new byte[(int) file.length()];
        BufferedInputStream is = null;
        try {
            is = new BufferedInputStream(new FileInputStream(file));
            is.read(buffer,  0,  buffer.length);
        } catch (Throwable t) {
            System.err.println("Failed to read byte content of " + file.getAbsolutePath());
            t.printStackTrace();
        } finally {
            if (is != null) {
                try {
                    is.close();
                } catch (IOException ioe) {
                    System.err.println("Failed to close file " + file.getAbsolutePath());
                    ioe.printStackTrace();
                }
            }
        }
        return buffer;
    }
 
    /**
     * Returns the string content of the specified file.
     *
     * @param file
     * @param lineEnding
     * @return the string content of the file
     */
    public static String readContent(File file, String lineEnding) {
        StringBuilder sb = new StringBuilder();
        InputStreamReader is = null;
        try {
            is = new InputStreamReader(new FileInputStream(file), Charset.forName("UTF-8"));
            BufferedReader reader = new BufferedReader(is);
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line);
                if (lineEnding != null) {
                    sb.append(lineEnding);
                }
            }
        } catch (Throwable t) {
            System.err.println("Failed to read content of " + file.getAbsolutePath());
            t.printStackTrace();
        } finally {
            if (is != null) {
                try {
                    is.close();
                } catch (IOException ioe) {
                    System.err.println("Failed to close file " + file.getAbsolutePath());
                    ioe.printStackTrace();
                }
            }
        }
        return sb.toString();
    }
 
    /**
     * Writes the string content to the file.
     *
     * @param file
     * @param content
     */
    public static void writeContent(File file, String content) {
        OutputStreamWriter os = null;
        try {
            os = new OutputStreamWriter(new FileOutputStream(file), Charset.forName("UTF-8"));
            BufferedWriter writer = new BufferedWriter(os);
            writer.append(content);
            writer.flush();
        } catch (Throwable t) {
            System.err.println("Failed to write content of " + file.getAbsolutePath());
            t.printStackTrace();
        } finally {
            if (os != null) {
                try {
                    os.close();
                } catch (IOException ioe) {
                    System.err.println("Failed to close file " + file.getAbsolutePath());
                    ioe.printStackTrace();
                }
            }
        }
    }
 
    /**
     * Recursively traverses a folder and its subfolders to calculate the total
     * size in bytes.
     *
     * @param directory
     * @return folder size in bytes
     */
    public static long folderSize(File directory) {
        if (directory == null || !directory.exists()) {
            return -1;
        }
        if (directory.isDirectory()) {
            long length = 0;
            for (File file : directory.listFiles()) {
                length += folderSize(file);
            }
            return length;
        } else if (directory.isFile()) {
            return directory.length();
        }
        return 0;
    }
 
    /**
     * Delete a file or recursively delete a folder.
     *
     * @param fileOrFolder
     * @return true, if successful
     */
    public static boolean delete(File fileOrFolder) {
        boolean success = false;
        if (fileOrFolder.isDirectory()) {
            File [] files = fileOrFolder.listFiles();
            if (files != null) {
                for (File file : files) {
                    if (file.isDirectory()) {
                        success |= delete(file);
                    } else {
                        success |= file.delete();
                    }
                }
            }
        }
        success |= fileOrFolder.delete();
        return success;
    }
 
    /**
     * Copies a file or folder (recursively) to a destination folder.
     *
     * @param destinationFolder
     * @param filesOrFolders
     * @return
     * @throws FileNotFoundException
     * @throws IOException
     */
    public static void copy(File destinationFolder, File... filesOrFolders)
            throws FileNotFoundException, IOException {
        destinationFolder.mkdirs();
        for (File file : filesOrFolders) {
            if (file.isDirectory()) {
                copy(new File(destinationFolder, file.getName()), file.listFiles());
            } else {
                File dFile = new File(destinationFolder, file.getName());
                BufferedInputStream bufin = null;
                FileOutputStream fos = null;
                try {
                    bufin = new BufferedInputStream(new FileInputStream(file));
                    fos = new FileOutputStream(dFile);
                    int len = 8196;
                    byte[] buff = new byte[len];
                    int n = 0;
                    while ((n = bufin.read(buff, 0, len)) != -1) {
                        fos.write(buff, 0, n);
                    }
                } finally {
                    try {
                        if (bufin != null) bufin.close();
                    } catch (Throwable t) {
                    }
                    try {
                        if (fos != null) fos.close();
                    } catch (Throwable t) {
                    }
                }
                dFile.setLastModified(file.lastModified());
            }
        }
    }
 
    /**
     * Determine the relative path between two files.  Takes into account
     * canonical paths, if possible.
     *
     * @param basePath
     * @param path
     * @return a relative path from basePath to path
     */
    public static String getRelativePath(File basePath, File path) {
        Path exactBase = Paths.get(getExactFile(basePath).toURI());
        Path exactPath = Paths.get(getExactFile(path).toURI());
        if (exactPath.startsWith(exactBase)) {
            return exactBase.relativize(exactPath).toString();
        }
        // no relative relationship
        return null;
    }
 
    /**
     * Returns the exact path for a file. This path will be the canonical path
     * unless an exception is thrown in which case it will be the absolute path.
     *
     * @param path
     * @return the exact file
     */
    public static File getExactFile(File path) {
        try {
            return path.getCanonicalFile();
        } catch (IOException e) {
            return path.getAbsoluteFile();
        }
    }
 
    public static File resolveParameter(String parameter, File aFolder, String path) {
        if (aFolder == null) {
            // strip any parameter reference
            path = path.replace(parameter, "").trim();
            if (path.length() > 0 && path.charAt(0) == '/') {
                // strip leading /
                path = path.substring(1);
            }
        } else if (path.contains(parameter)) {
            // replace parameter with path
            path = path.replace(parameter, aFolder.getAbsolutePath());
        }
        return new File(path);
    }
}