1
1
/*
2
- * Copyright (c) 1998, 2022 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1998, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
27
27
28
28
import jdk .javadoc .internal .doclets .toolkit .BaseConfiguration ;
29
29
30
- import javax .lang .model .element .AnnotationValue ;
31
30
import javax .lang .model .element .Element ;
32
- import javax .lang .model .element .ExecutableElement ;
33
31
import java .util .HashMap ;
34
32
import java .util .Map ;
35
33
import java .util .Objects ;
36
34
import java .util .Set ;
37
35
import java .util .TreeSet ;
36
+ import java .util .stream .Collectors ;
38
37
39
38
/**
40
39
* Build list of all the preview packages, classes, constructors, fields and methods.
@@ -43,6 +42,7 @@ public class PreviewAPIListBuilder extends SummaryAPIListBuilder {
43
42
44
43
private final Map <Element , JEP > elementJeps = new HashMap <>();
45
44
private final Map <String , JEP > jeps = new HashMap <>();
45
+ private static final JEP NULL_SENTINEL = new JEP (0 , "" , "" );
46
46
47
47
/**
48
48
* The JEP for a preview feature in this release.
@@ -60,40 +60,51 @@ public int compareTo(JEP o) {
60
60
* @param configuration the current configuration of the doclet
61
61
*/
62
62
public PreviewAPIListBuilder (BaseConfiguration configuration ) {
63
- super (configuration , configuration . utils :: isPreviewAPI );
63
+ super (configuration );
64
64
buildSummaryAPIInfo ();
65
65
}
66
66
67
67
@ Override
68
- protected void handleElement (Element e ) {
69
- String feature = Objects .requireNonNull (utils .getPreviewFeature (e ),
68
+ protected boolean belongsToSummary (Element element ) {
69
+ if (!utils .isPreviewAPI (element )) {
70
+ return false ;
71
+ }
72
+ String feature = Objects .requireNonNull (utils .getPreviewFeature (element ),
70
73
"Preview feature not specified" ).toString ();
71
- JEP jep = jeps .computeIfAbsent (feature , (featureName ) -> {
72
- Map <? extends ExecutableElement , ? extends AnnotationValue > anno = configuration .workArounds .getJepInfo (featureName );
73
- int number = 0 ;
74
- String title = "" ;
75
- String status = "Preview" ; // Default value is not returned by the method we use above.
76
- for (var entry : anno .entrySet ()) {
77
- if ("number" .equals (entry .getKey ().getSimpleName ().toString ())) {
78
- number = (int ) entry .getValue ().getValue ();
79
- } else if ("title" .equals (entry .getKey ().getSimpleName ().toString ())) {
80
- title = (String ) entry .getValue ().getValue ();
81
- } else if ("status" .equals (entry .getKey ().getSimpleName ().toString ())) {
82
- status = (String ) entry .getValue ().getValue ();
83
- } else {
84
- throw new IllegalArgumentException (entry .getKey ().getSimpleName ().toString ());
74
+ JEP jep = jeps .computeIfAbsent (feature , featureName -> {
75
+ Map <String , Object > jepInfo = configuration .workArounds .getJepInfo (featureName );
76
+ if (!jepInfo .isEmpty ()) {
77
+ int number = 0 ;
78
+ String title = "" ;
79
+ String status = "Preview" ; // Default value is not returned by the method we used above.
80
+ for (var entry : jepInfo .entrySet ()) {
81
+ switch (entry .getKey ()) {
82
+ case "number" -> number = (int ) entry .getValue ();
83
+ case "title" -> title = (String ) entry .getValue ();
84
+ case "status" -> status = (String ) entry .getValue ();
85
+ default -> throw new IllegalArgumentException (entry .getKey ());
86
+ }
85
87
}
88
+ return new JEP (number , title , status );
86
89
}
87
- return new JEP ( number , title , status ) ;
90
+ return NULL_SENTINEL ;
88
91
});
89
- elementJeps .put (e , jep );
92
+ if (jep != NULL_SENTINEL ) {
93
+ elementJeps .put (element , jep );
94
+ return true ;
95
+ }
96
+ // Preview features without JEP are not included.
97
+ return false ;
90
98
}
91
99
92
100
/**
93
101
* {@return a sorted set of preview feature JEPs in this release}
94
102
*/
95
103
public Set <JEP > getJEPs () {
96
- return new TreeSet <>(jeps .values ());
104
+ return jeps .values ()
105
+ .stream ()
106
+ .filter (jep -> jep != NULL_SENTINEL )
107
+ .collect (Collectors .toCollection (TreeSet ::new ));
97
108
}
98
109
99
110
/**
0 commit comments