Child: [r24] (diff)

Download this file

showProductDetails.java    467 lines (397 with data), 15.6 kB

  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
/*
* SPDXVersion: SPDX-1.1
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
* Creator: Organization: TripleCheck (contact@triplecheck.de)
* Created: 2013-11-01T00:00:00Z
* LicenseName: NOASSERTION
* FileName: showProductDetails.java
* FileType: SOURCE
* FileCopyrightText: <text> Copyright 2013 Nuno Brito, TripleCheck </text>
* FileComment: <text> When the user clicks on tree node that belongs to a
* product, show either the SPDX content or a summary with the highlights
* </text>
*/
package spdx;
import GUI.NodeType;
import GUI.TreeNodeSPDX;
import GUI.swingUtils;
import definitions.Messages;
import definitions.is;
import www.Table;
import java.util.ArrayList;
import script.Plugin;
import script.log;
import spdxlib.tools;
import spdxlib.FileInfo;
import spdxlib.SPDXfile;
import main.core;
import utils.html;
/**
*
* @author Nuno Brito, 10th of November 2013 in Darmstadt, Germany.
* nuno.brito@triplecheck.de | http://nunobrito.eu
*/
public class showProductDetails extends Plugin{
// node currently selected on the tree, we use this object across the script
private TreeNodeSPDX node;
@Override
public void startup(){
// react whenever a tree node is changed
log.hooks.addAction(Messages.TreeNodeChanged, thisFile, "processNode");
}
/**
* This is the method that proceed with the initial filtering. This is
* important to decide if we should continue or not
*/
void processNode(){
// ensure we get to know which node is selected
node = swingUtils.getSelectedNode();
// no need to continue if there is nothing selected
if(node == null){
return;
}
// now we want to know if this is either:
// a) a root node called "Products" or "Library"
// b) a components inside one of the nodes from a)
String nodeUID = node.getUID();
// are we clicking on the root of packages?
if(nodeUID.equals(">> Products ")){
showPackageRoot("Products ", core.products);
return;
}
// // do the same, this time for libraries
// if(nodeUID.equals(">> Library ")){
// showPackageRoot("Library ",core.components);
// return;
// }
// process files
if(node.nodeType == NodeType.sectionPackage){
showPackageDetails(node);
}
}
/**
* Shows a summary of details about the selected package
*/
private void showPackageRoot(String title, ArrayList list) {
int
counterFiles = 0,
counterCreators = 0,
counterLicensesDeclared = 0
;
// pre-flight check
if(list.isEmpty()){
core.studio.editorPane(is.contentHTML, false, 0, "");
return;
}
// get some statistical data
for(Object object : list){
SPDXfile spdx = (SPDXfile) object;
counterFiles += spdx.fileSection.files.size();
counterCreators += spdx.creatorSection.people.size();
counterLicensesDeclared += doStatistics(spdx);
}
// calculate percentage of files with a license declared
String percentage =
" ("
+ (counterLicensesDeclared * 100)/counterFiles
+ "% in total)" + html.br;
String result =
html.div()
+ "<h2>"
+ html.getCommonFolderIcon("wooden-box-label.png")
+ title
+ "</h2>"
+ html._div
+ html.div(20)
+ html.getCommonFolderIcon("documents-stack.png")
+ counterFiles + " files in total"
+ html.br
+ html.getCommonFolderIcon("calculator.png")
+ counterLicensesDeclared + " files with declared licenses"
+ percentage
+ html.getCommonFolderIcon("stickman.png")
+ counterCreators + " SPDX creators" + html.br
//+ html.br
+ html._div
+ html.br
+ "";
// write everything on our UI text area
core.studio.editorPane(is.contentHTML, false, 0, result);
}
/**
* Show the details of the selected package
* @param node
*/
private void showPackageDetails(TreeNodeSPDX node) {
// get the SPDX file from the root node
SPDXfile spdx = (SPDXfile) node.getUserObject();
// place this node on our temp queue, useful for links used from here
core.temp.put("showPackageDetails", node);
int counterLicensesDeclared = doStatistics(spdx);
int counterFiles = spdx.fileSection.files.size();
// calculate percentage of files with a license declared
String percentage =
" ("
+ (counterLicensesDeclared * 100)/counterFiles
+ "% in total)" + html.br;
String searchEngines =
html.div(30)
+ html.linkToSearchGoogle(node.id)
// + html.divider
// + html.linkToSearchAntepedia(node.id)
+ html.divider
+ html.linkToSearchGitHub(node.id)
+ html._div
;
String evaluation = doEvaluation(spdx);
// prepare the answer
String result =
swingUtils.getBreadcrumb(node)
+ html.div(20)
+ html.getCommonFolderIcon("documents-stack.png")
+ counterFiles + " files inside the package"
+ html.br
+ html.getCommonFolderIcon("calculator.png")
+ counterLicensesDeclared + " files with declared licenses"
+ percentage
+ evaluation
+ html._div
+ html.div()
+ html.br
+ swingUtils.addIfNotEmpty(
html.getCommonFolderIcon("magnifier-zoom-fit.png")
+ "Look for \""
+ node.id
+"\" around the web"
, searchEngines)
+ html._div
+ html.div()
+ "<b>" + "Other actions" + "</b>" + html.br
+ html._div
+ html.div(20)
+ html.getCommonFolderIcon("receipt--pencil.png")
+ html.linkScript("See the full text of this SPDX document"
, thisFile, "showSPDX")
+ html._div
+ html.br
//+ html.br
+ html.div()
+ "<b>" + "List files" + "</b>" + html.br
+ html._div
+ html.div(20)
+ html.getCommonFolderIcon("folder-smiley-sad.png")
+ html.linkScript("Without a license", thisFile, "showFilesWithoutLicense")
+ html.br
+ html.getCommonFolderIcon("folder-smiley.png")
+ html.linkScript("With a license reported", thisFile, "showFilesWithLicense")
+ html._div
+ "";
// write everything on our UI text area
core.studio.editorPane(is.contentHTML, false, 0, result);
}
/**
* This operation might take a while, so we first launch a menu asking
* people to wait for a while and then launch a thread with the results
*/
void showFilesWithoutLicense(){
String inProgress = ""
+ html.div()
+ "<h2>"
+ html.getCommonFolderIcon("wand.png")
+ "In progress!</h2>"
+ ""
+ "We are creating a list, please wait.."
+ html.br
+ html._div;
// update the text box
core.studio.editorPane(is.contentHTML, false, 0, inProgress);
Thread thread = new Thread(){
@Override
public void run(){
processFilesWithoutLicense();
}
};
thread.start();
}
/**
* This operation might take a while, so we first launch a menu asking
* people to wait for a while and then launch a thread with the results
*/
void showFilesWithLicense(){
String inProgress = ""
+ html.div()
+ "<h2>"
+ html.getCommonFolderIcon("wand.png")
+ "In progress!</h2>"
+ ""
+ "We are creating a list, please wait.."
+ html.br
+ html._div;
// update the text box
core.studio.editorPane(is.contentHTML, false, 0, inProgress);
Thread thread = new Thread(){
@Override
public void run(){
processFilesWithLicense();
}
};
thread.start();
}
/**
* Shows a list of files for the selected package that do not have a license
*/
void processFilesWithoutLicense(){
//node = swingUtils.getSelectedNode();
node = (TreeNodeSPDX) core.temp.get("showPackageDetails");
// no need to continue if there is nothing selected
if(node == null){
return;
}
// get the SPDX file from the root node
SPDXfile spdx = (SPDXfile) node.getUserObject();
// create the HTML data where our info will be placed
String[] columns = new String[]{"File name", "Path", ""};
Table table = new Table(columns);
// iterate through all files
for(FileInfo file : spdx.fileSection.files){
// if there is a license, no need to continue
if(file.hasLicense()){
continue;
}
// create a column with our file information
String[] column = new String[]{
utils.text.shortText(file.toString(), 25),
utils.text.shortText(file.tagFilePath.toString(), 30),
//file.tagFilePath.toString(),
html.linkNode("details", ">> "
+ file.tagFileName.toString()
+ " >> Files >> "
+ node.id
+ " >> Products ")
};
table.add(column);
}
// do the output that is displayed to the end-user
String result = swingUtils.getBreadcrumb(node)
+ html.div(20)
+ table.output()
+ html._div
;
// write everything on our UI text area
core.studio.editorPane(is.contentHTML, false, 0, result, false, null);
}
/**
* Shows a list of files for the selected package that do not have a license
*/
void processFilesWithLicense(){
//node = swingUtils.getSelectedNode();
node = (TreeNodeSPDX) core.temp.get("showPackageDetails");
// no need to continue if there is nothing selected
if(node == null){
return;
}
// get the SPDX file from the root node
SPDXfile spdx = (SPDXfile) node.getUserObject();
// create the HTML data where our info will be placed
String[] columns = new String[]{"File name", "Path", ""};
Table table = new Table(columns);
// iterate through all files
for(FileInfo file : spdx.fileSection.files){
// if there is a license, no need to continue
if(file.hasLicense() == false){
continue;
}
// create a column with our file information
String[] column = new String[]{
utils.text.shortText(file.toString(), 25),
utils.text.shortText(file.tagFilePath.toString(), 30),
//file.tagFilePath.toString(),
html.linkNode("details", ">> "
+ file.tagFileName.toString()
+ " >> Files >> "
+ node.id
+ " >> Products ")
};
table.add(column);
}
// do the output that is displayed to the end-user
String result = swingUtils.getBreadcrumb(node)
+ html.div(20)
+ table.output()
+ html._div
;
// write everything on our UI text area
core.studio.editorPane(is.contentHTML, false, 0, result, false, null);
}
/**
* Show the SPDX document on the text area
*/
public void showSPDX(){
node = swingUtils.getSelectedNode();
// no need to continue if there is nothing selected
if(node == null){
return;
}
// get the SPDX file from the root node
SPDXfile spdx = (SPDXfile) node.getUserObject();
// write everything on our UI text area
String content = spdx.rawText;
core.studio.editorPane(is.contentText, true, 0, content);
}
/**
* When given a SPDX object, provide some statistics
* about the number of licenses that are not declared
*/
int doStatistics(SPDXfile spdx){
int counterLicensesDeclared = 0;
// get the number of licenses declared
for(Object fileObject : spdx.fileSection.files){
FileInfo file = (FileInfo) fileObject;
// go deep into the license information
if(file.hasLicense()){
counterLicensesDeclared++;
}
}
return counterLicensesDeclared;
}
/**
* Create a list with all the files inside this SPDX document
* @return
*/
private String doFileSummary(SPDXfile spdx) {
String result = html.br;
for(FileInfo file : spdx.fileSection.files){
result = result.concat(
file.toString()
+ html.br
)
;
}
return result;
}
/**
* Provides an evaluation if the SPDX file has quality or not
* @param spdx an object from where we will read all data
* @return A string used for the HTML output
*/
private String doEvaluation(SPDXfile spdx) {
String result = "";
Boolean hasSVNfiles = false;
ArrayList<FileInfo> list = spdx.fileSection.files;
for(FileInfo file : list){
if(file.tagFileName.toString().contains(".svn")){
hasSVNfiles = true;
break;
}
}
if(hasSVNfiles){
result = html.br
+ html.h2(html.getCommonFolderIcon("exclamation.png") + "Defects")
+ "Source code has SVN files that should be removed"
+ html.br
+ html.br
;
}
return result;
}
}