aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/mass-pnf-sim/pnf-sim-lightweight/src/main/java/org/onap/pnfsimulator/FileProvider.java
blob: beb564da8292761c24c9ff789ea6b369e359a13f (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
package org.onap.pnfsimulator;

import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.onap.pnfsimulator.simulator.validation.NoRopFilesException;

public class FileProvider {

    public List<String> getFiles() throws NoRopFilesException {

        List<String> files = queryFiles();

        files.sort(Collections.reverseOrder());

        List<String> fileListSorted = new ArrayList<>();
        for (String f : files) {
            fileListSorted.add(f);
        }
        return fileListSorted;
    }

    private static List<String> queryFiles() throws NoRopFilesException {

        File folder = new File("./files/onap/");
        File[] listOfFiles = folder.listFiles();
        if (listOfFiles == null || listOfFiles.length == 0) {
            throw new NoRopFilesException("No ROP files found in specified directory");
        }

        List<String> results = new ArrayList<>();
        for (int i = 0; i < listOfFiles.length; i++) {
            if (listOfFiles[i].isFile()) {
                results.add(listOfFiles[i].getName());
            }
        }

        return results;
    }
}