1
1
/*
2
- * Copyright (c) 1999, 2018 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1999, 2021 , 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
29
29
import java .lang .ref .WeakReference ;
30
30
import java .util .*;
31
31
import java .util .function .BiConsumer ;
32
+ import java .util .function .Predicate ;
32
33
33
34
import com .sun .tools .javac .code .Symbol .CompletionFailure ;
34
35
import com .sun .tools .javac .code .Symbol .TypeSymbol ;
@@ -70,7 +71,7 @@ public final Iterable<Symbol> getSymbols() {
70
71
71
72
/**Returns Symbols that match the given filter. Symbols from outward Scopes are included.
72
73
*/
73
- public final Iterable <Symbol > getSymbols (Filter <Symbol > sf ) {
74
+ public final Iterable <Symbol > getSymbols (Predicate <Symbol > sf ) {
74
75
return getSymbols (sf , RECURSIVE );
75
76
}
76
77
@@ -84,7 +85,7 @@ public final Iterable<Symbol> getSymbols(LookupKind lookupKind) {
84
85
/**Returns Symbols that match the given filter. Symbols from outward Scopes are included
85
86
* iff lookupKind == RECURSIVE.
86
87
*/
87
- public abstract Iterable <Symbol > getSymbols (Filter <Symbol > sf , LookupKind lookupKind );
88
+ public abstract Iterable <Symbol > getSymbols (Predicate <Symbol > sf , LookupKind lookupKind );
88
89
89
90
/**Returns Symbols with the given name. Symbols from outward Scopes are included.
90
91
*/
@@ -95,7 +96,7 @@ public final Iterable<Symbol> getSymbolsByName(Name name) {
95
96
/**Returns Symbols with the given name that match the given filter.
96
97
* Symbols from outward Scopes are included.
97
98
*/
98
- public final Iterable <Symbol > getSymbolsByName (final Name name , final Filter <Symbol > sf ) {
99
+ public final Iterable <Symbol > getSymbolsByName (final Name name , final Predicate <Symbol > sf ) {
99
100
return getSymbolsByName (name , sf , RECURSIVE );
100
101
}
101
102
@@ -109,7 +110,7 @@ public final Iterable<Symbol> getSymbolsByName(Name name, LookupKind lookupKind)
109
110
/**Returns Symbols with the given name that match the given filter.
110
111
* Symbols from outward Scopes are included iff lookupKind == RECURSIVE.
111
112
*/
112
- public abstract Iterable <Symbol > getSymbolsByName (final Name name , final Filter <Symbol > sf ,
113
+ public abstract Iterable <Symbol > getSymbolsByName (final Name name , final Predicate <Symbol > sf ,
113
114
final LookupKind lookupKind );
114
115
115
116
/** Return the first Symbol from this or outward scopes with the given name.
@@ -122,15 +123,15 @@ public final Symbol findFirst(Name name) {
122
123
/** Return the first Symbol from this or outward scopes with the given name that matches the
123
124
* given filter. Returns null if none.
124
125
*/
125
- public Symbol findFirst (Name name , Filter <Symbol > sf ) {
126
+ public Symbol findFirst (Name name , Predicate <Symbol > sf ) {
126
127
Iterator <Symbol > it = getSymbolsByName (name , sf ).iterator ();
127
128
return it .hasNext () ? it .next () : null ;
128
129
}
129
130
130
131
/** Returns true iff there are is at least one Symbol in this scope matching the given filter.
131
132
* Does not inspect outward scopes.
132
133
*/
133
- public boolean anyMatch (Filter <Symbol > filter ) {
134
+ public boolean anyMatch (Predicate <Symbol > filter ) {
134
135
return getSymbols (filter , NON_RECURSIVE ).iterator ().hasNext ();
135
136
}
136
137
@@ -160,7 +161,7 @@ public boolean isEmpty() {
160
161
*/
161
162
public abstract boolean isStaticallyImported (Symbol byName );
162
163
163
- private static final Filter <Symbol > noFilter = null ;
164
+ private static final Predicate <Symbol > noFilter = null ;
164
165
165
166
/** A list of scopes to be notified if items are to be removed from this scope.
166
167
*/
@@ -514,16 +515,16 @@ protected Entry lookup(Name name) {
514
515
return lookup (name , noFilter );
515
516
}
516
517
517
- protected Entry lookup (Name name , Filter <Symbol > sf ) {
518
+ protected Entry lookup (Name name , Predicate <Symbol > sf ) {
518
519
Entry e = table [getIndex (name )];
519
520
if (e == null || e == sentinel )
520
521
return sentinel ;
521
- while (e .scope != null && (e .sym .name != name || (sf != null && !sf .accepts (e .sym ))))
522
+ while (e .scope != null && (e .sym .name != name || (sf != null && !sf .test (e .sym ))))
522
523
e = e .shadowed ;
523
524
return e ;
524
525
}
525
526
526
- public Symbol findFirst (Name name , Filter <Symbol > sf ) {
527
+ public Symbol findFirst (Name name , Predicate <Symbol > sf ) {
527
528
return lookup (name , sf ).sym ;
528
529
}
529
530
@@ -563,11 +564,11 @@ int getIndex (Name name) {
563
564
}
564
565
}
565
566
566
- public boolean anyMatch (Filter <Symbol > sf ) {
567
+ public boolean anyMatch (Predicate <Symbol > sf ) {
567
568
return getSymbols (sf , NON_RECURSIVE ).iterator ().hasNext ();
568
569
}
569
570
570
- public Iterable <Symbol > getSymbols (final Filter <Symbol > sf ,
571
+ public Iterable <Symbol > getSymbols (final Predicate <Symbol > sf ,
571
572
final LookupKind lookupKind ) {
572
573
return () -> new Iterator <Symbol >() {
573
574
private ScopeImpl currScope = ScopeImpl .this ;
@@ -616,15 +617,15 @@ private void update() {
616
617
}
617
618
618
619
void skipToNextMatchingEntry () {
619
- while (currEntry != null && sf != null && !sf .accepts (currEntry .sym )) {
620
+ while (currEntry != null && sf != null && !sf .test (currEntry .sym )) {
620
621
currEntry = currEntry .nextSibling ;
621
622
}
622
623
}
623
624
};
624
625
}
625
626
626
627
public Iterable <Symbol > getSymbolsByName (final Name name ,
627
- final Filter <Symbol > sf ,
628
+ final Predicate <Symbol > sf ,
628
629
final LookupKind lookupKind ) {
629
630
return () -> new Iterator <Symbol >() {
630
631
Entry currentEntry = lookup (name , sf );
@@ -729,8 +730,8 @@ public Entry next() {
729
730
return shadowed ;
730
731
}
731
732
732
- public Entry next (Filter <Symbol > sf ) {
733
- if (shadowed .sym == null || sf == null || sf .accepts (shadowed .sym )) return shadowed ;
733
+ public Entry next (Predicate <Symbol > sf ) {
734
+ if (shadowed .sym == null || sf == null || sf .test (shadowed .sym )) return shadowed ;
734
735
else return shadowed .next (sf );
735
736
}
736
737
@@ -815,7 +816,7 @@ private Scope appendScope(Scope newScope, Name name) {
815
816
}
816
817
817
818
@ Override
818
- public Iterable <Symbol > getSymbolsByName (Name name , Filter <Symbol > sf , LookupKind lookupKind ) {
819
+ public Iterable <Symbol > getSymbolsByName (Name name , Predicate <Symbol > sf , LookupKind lookupKind ) {
819
820
Scope [] scopes = name2Scopes .get (name );
820
821
if (scopes == null )
821
822
return Collections .emptyList ();
@@ -848,16 +849,16 @@ public SingleEntryScope(Symbol owner, Symbol sym, Scope origin) {
848
849
}
849
850
850
851
@ Override
851
- public Iterable <Symbol > getSymbols (Filter <Symbol > sf , LookupKind lookupKind ) {
852
- return sf == null || sf .accepts (sym ) ? content : Collections .emptyList ();
852
+ public Iterable <Symbol > getSymbols (Predicate <Symbol > sf , LookupKind lookupKind ) {
853
+ return sf == null || sf .test (sym ) ? content : Collections .emptyList ();
853
854
}
854
855
855
856
@ Override
856
857
public Iterable <Symbol > getSymbolsByName (Name name ,
857
- Filter <Symbol > sf ,
858
+ Predicate <Symbol > sf ,
858
859
LookupKind lookupKind ) {
859
860
return sym .name == name &&
860
- (sf == null || sf .accepts (sym )) ? content : Collections .emptyList ();
861
+ (sf == null || sf .test (sym )) ? content : Collections .emptyList ();
861
862
}
862
863
863
864
@ Override
@@ -928,7 +929,7 @@ public FilterImportScope(Types types,
928
929
}
929
930
930
931
@ Override
931
- public Iterable <Symbol > getSymbols (final Filter <Symbol > sf , final LookupKind lookupKind ) {
932
+ public Iterable <Symbol > getSymbols (final Predicate <Symbol > sf , final LookupKind lookupKind ) {
932
933
if (filterName != null )
933
934
return getSymbolsByName (filterName , sf , lookupKind );
934
935
try {
@@ -951,7 +952,7 @@ Iterable<Symbol> doLookup(TypeSymbol tsym) {
951
952
952
953
@ Override
953
954
public Iterable <Symbol > getSymbolsByName (final Name name ,
954
- final Filter <Symbol > sf ,
955
+ final Predicate <Symbol > sf ,
955
956
final LookupKind lookupKind ) {
956
957
if (filterName != null && filterName != name )
957
958
return Collections .emptyList ();
@@ -1075,7 +1076,7 @@ public String toString() {
1075
1076
}
1076
1077
1077
1078
@ Override
1078
- public Iterable <Symbol > getSymbols (final Filter <Symbol > sf ,
1079
+ public Iterable <Symbol > getSymbols (final Predicate <Symbol > sf ,
1079
1080
final LookupKind lookupKind ) {
1080
1081
return () -> Iterators .createCompoundIterator (subScopes ,
1081
1082
scope -> scope .getSymbols (sf ,
@@ -1085,7 +1086,7 @@ public Iterable<Symbol> getSymbols(final Filter<Symbol> sf,
1085
1086
1086
1087
@ Override
1087
1088
public Iterable <Symbol > getSymbolsByName (final Name name ,
1088
- final Filter <Symbol > sf ,
1089
+ final Predicate <Symbol > sf ,
1089
1090
final LookupKind lookupKind ) {
1090
1091
return () -> Iterators .createCompoundIterator (subScopes ,
1091
1092
scope -> scope .getSymbolsByName (name ,
0 commit comments