34
34
import java .util .List ;
35
35
import java .util .function .Predicate ;
36
36
37
+ import jdk .jfr .EventType ;
37
38
import jdk .jfr .consumer .RecordedEvent ;
38
39
import jdk .jfr .consumer .RecordingFile ;
39
40
@@ -135,31 +136,43 @@ public void execute(Deque<String> options) throws UserSyntaxException, UserDataE
135
136
}
136
137
ensureUsableOutput (input , output );
137
138
139
+ try (RecordingFile rf = new RecordingFile (input )) {
140
+ List <EventType > types = rf .readEventTypes ();
141
+ Predicate <RecordedEvent > filter = createFilter (options , types );
142
+ rf .write (output , filter );
143
+ } catch (IOException ioe ) {
144
+ couldNotReadError (input , ioe );
145
+ }
146
+ println ("Scrubbed recording file written to:" );
147
+ println (output .toAbsolutePath ().toString ());
148
+ }
149
+
150
+ private Predicate <RecordedEvent > createFilter (Deque <String > options , List <EventType > types ) throws UserSyntaxException , UserDataException {
138
151
List <Predicate <RecordedEvent >> filters = new ArrayList <>();
139
152
int optionCount = options .size ();
140
153
while (optionCount > 0 ) {
141
154
if (acceptFilterOption (options , "--include-events" )) {
142
155
String filter = options .remove ();
143
156
warnForWildcardExpansion ("--include-events" , filter );
144
- var f = Filters .createEventTypeFilter (filter );
157
+ var f = Filters .createEventTypeFilter (filter , types );
145
158
filters .add (Filters .fromEventType (f ));
146
159
}
147
160
if (acceptFilterOption (options , "--exclude-events" )) {
148
161
String filter = options .remove ();
149
162
warnForWildcardExpansion ("--exclude-events" , filter );
150
- var f = Filters .createEventTypeFilter (filter );
163
+ var f = Filters .createEventTypeFilter (filter , types );
151
164
filters .add (Filters .fromEventType (f .negate ()));
152
165
}
153
166
if (acceptFilterOption (options , "--include-categories" )) {
154
167
String filter = options .remove ();
155
168
warnForWildcardExpansion ("--include-categories" , filter );
156
- var f = Filters .createCategoryFilter (filter );
169
+ var f = Filters .createCategoryFilter (filter , types );
157
170
filters .add (Filters .fromEventType (f ));
158
171
}
159
172
if (acceptFilterOption (options , "--exclude-categories" )) {
160
173
String filter = options .remove ();
161
174
warnForWildcardExpansion ("--exclude-categories" , filter );
162
- var f = Filters .createCategoryFilter (filter );
175
+ var f = Filters .createCategoryFilter (filter , types );
163
176
filters .add (Filters .fromEventType (f .negate ()));
164
177
}
165
178
if (acceptFilterOption (options , "--include-threads" )) {
@@ -183,14 +196,7 @@ public void execute(Deque<String> options) throws UserSyntaxException, UserDataE
183
196
}
184
197
optionCount = options .size ();
185
198
}
186
-
187
- try (RecordingFile rf = new RecordingFile (input )) {
188
- rf .write (output , Filters .matchAny (filters ));
189
- } catch (IOException ioe ) {
190
- couldNotReadError (input , ioe );
191
- }
192
- println ("Scrubbed recording file written to:" );
193
- println (output .toAbsolutePath ().toString ());
199
+ return Filters .matchAny (filters );
194
200
}
195
201
196
202
private void ensureUsableOutput (Path input , Path output ) throws UserSyntaxException , UserDataException {
0 commit comments