aboutsummaryrefslogtreecommitdiffstats
path: root/jtosca/src/main/java/org/openecomp/sdc/toscaparser/api/common/ExceptionCollector.java
blob: fa65ae42997cceb143436cf8c14635e41201b519 (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
package org.openecomp.sdc.toscaparser.api.common;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

// Perfectly good enough... 

public class ExceptionCollector {

    private static Logger log = LoggerFactory.getLogger(ExceptionCollector.class.getName());

    private Map<String, String> notAnalyzedExceptions = new HashMap<>();
    private Map<String, String> criticalExceptions = new HashMap<>();
    private Map<String, String> warningExceptions = new HashMap<>();

    private boolean bWantTrace = true;
    private String filePath;

    public enum ReportType {WARNING, CRITICAL, NOT_ANALYZED}

    public ExceptionCollector(String filePath) {
        this.filePath = filePath;
    }

    public void appendException(String exception) {

        addException(exception, ReportType.NOT_ANALYZED);
    }

    public void appendCriticalException(String exception) {

        addException(exception, ReportType.CRITICAL);
    }

    public void appendWarning(String exception) {

        addException(exception, ReportType.WARNING);
    }

    private void addException(String exception, ReportType type) {

        Map<String, String> exceptions = getExceptionCollection(type);

        if (!exceptions.containsKey(exception)) {
            // get stack trace
            StackTraceElement[] ste = Thread.currentThread().getStackTrace();
            StringBuilder sb = new StringBuilder();
            // skip the last 2 (getStackTrace and this)
            for (int i = 2; i < ste.length; i++) {
                sb.append(String.format("  %s(%s:%d)%s", ste[i].getClassName(), ste[i].getFileName(),
                        ste[i].getLineNumber(), i == ste.length - 1 ? " " : "\n"));
            }
            exceptions.put(exception, sb.toString());
        }
    }

    public List<String> getCriticalsReport() {

        return getReport(ReportType.CRITICAL);
    }

    public List<String> getNotAnalyzedExceptionsReport() {

        return getReport(ReportType.NOT_ANALYZED);
    }

    public List<String> getWarningsReport() {

        return getReport(ReportType.WARNING);
    }

    private List<String> getReport(ReportType type) {
        Map<String, String> collectedExceptions = getExceptionCollection(type);

        List<String> report = new ArrayList<>();
        if (collectedExceptions.size() > 0) {
            for (Map.Entry<String, String> exception : collectedExceptions.entrySet()) {
                report.add(exception.getKey());
                if (bWantTrace) {
                    report.add(exception.getValue());
                }
            }
        }

        return report;
    }

    private Map<String, String> getExceptionCollection(ReportType type) {
        switch (type) {
            case WARNING:
                return warningExceptions;
            case CRITICAL:
                return criticalExceptions;
            case NOT_ANALYZED:
                return notAnalyzedExceptions;
            default:
                return notAnalyzedExceptions;
        }
    }

    public int errorsNotAnalyzedCaught() {
        return notAnalyzedExceptions.size();
    }

    public int criticalsCaught() {
        return criticalExceptions.size();
    }

    public int warningsCaught() {
        return warningExceptions.size();
    }

    public void setWantTrace(boolean b) {
        bWantTrace = b;
    }

}