26
26
public class TaintAnalysisReport {
27
27
private static transient TaintAnalysisReport instance ;
28
28
private String fileName ;
29
- private String day ;
30
29
private ArrayList <TaintAnalysisFinding > findings ;
31
30
private transient TaintAnalysisFinding currentFinding ;
32
31
private transient int currentFindingIndex ;
@@ -44,7 +43,6 @@ private TaintAnalysisReport(){
44
43
sinkColor = new Color (0x1b , 0x89 , 0x7f );
45
44
intermediateColor = new Color (0xe4 , 0xd9 , 0x73 );
46
45
currentFindingIndex = -1 ;
47
- day = LocalDateTime .now ().format (DateTimeFormatter .ofPattern ("yyyy-MM-dd" ));
48
46
reportDialog = new ReportDialog ();
49
47
reportDialog .setVisible (true );
50
48
}
@@ -60,22 +58,14 @@ private static HashMap<String, String> createFindingAttributesJsonKeyToDisplayNa
60
58
HashMap <String , String > result = new HashMap <>();
61
59
result .put ("intraProcedural" , "Intra-procedural" );
62
60
result .put ("interProcedural" , "Inter-procedural" );
63
- result .put ("fieldSensitive" , "Field-sensitive" );
64
- result .put ("flowSensitive" , "Flow-sensitive" );
65
- result .put ("contextSensitive" , "Context-sensitive" );
66
- result .put ("objectSensitive" , "Object-sensitive" );
67
- result .put ("pathSensitive" , "Path-sensitive" );
68
61
result .put ("staticField" , "Static Field" );
69
62
result .put ("array" , "Array" );
70
63
result .put ("reflection" , "Reflection" );
71
64
result .put ("exception" , "Exception" );
72
- result .put ("implicitflows" , "Implicit Flows" );
73
65
result .put ("threading" , "Threading" );
74
- result .put ("lifecycle" , "Lifecycle" );
75
66
result .put ("callbacks" , "Callbacks" );
76
67
result .put ("interComponentCommunication" , "Inter-Component Communication" );
77
68
result .put ("interAppCommunication" , "Inter-App Communication" );
78
- result .put ("emulatorDetection" , "Emulator Detection" );
79
69
result .put ("collections" , "Collections" );
80
70
result .put ("partialFlow" , "Partial Flow" );
81
71
return result ;
@@ -167,13 +157,15 @@ public void selectCurrentFinding(int index, boolean updateReportDialog){
167
157
reportDialog .updateMarkedIntermediates (currentFinding .getIntermediateFlows ());
168
158
reportDialog .updateMarkedSink (currentFinding .getSink ());
169
159
reportDialog .updateAttributes (currentFinding .getAttributes ());
160
+ reportDialog .updateDescription (currentFinding .getDescription ());
170
161
}
171
162
else {
172
163
reportDialog .updateFindings (findings );
173
164
reportDialog .updateMarkedSource (null );
174
165
reportDialog .updateMarkedIntermediates (null );
175
166
reportDialog .updateMarkedSink (null );
176
167
reportDialog .updateAttributes (null );
168
+ reportDialog .updateDescription (null );
177
169
}
178
170
}
179
171
@@ -186,6 +178,9 @@ public void previousFinding(boolean updateReportDialog){
186
178
}
187
179
188
180
public void createAndSwitchToNewFinding (){
181
+ String description = this .reportDialog .getDescription ();
182
+ if (currentFinding !=null )
183
+ currentFinding .setDescription (description );
189
184
TaintAnalysisFinding finding = new TaintAnalysisFinding ();
190
185
currentFindingIndex = findings .size ();
191
186
findings .add (findings .size (), finding );
@@ -216,6 +211,9 @@ public void setFileName(String filename){
216
211
}
217
212
218
213
public void serializeToJson (){
214
+ String description = this .reportDialog .getDescription ();
215
+ if (currentFinding !=null )
216
+ currentFinding .setDescription (description );
219
217
String json = new GsonBuilder ().disableHtmlEscaping ().setPrettyPrinting ().create ().toJson (this );
220
218
JFileChooser fileChooser = new JFileChooser ();
221
219
fileChooser .setAcceptAllFileFilterUsed (false );
@@ -303,4 +301,5 @@ public void setAttributeOfCurrent(String key, boolean value){
303
301
if (currentFinding != null )
304
302
currentFinding .setAttribute (key , value );
305
303
}
304
+
306
305
}
0 commit comments