26
26
import java .io .File ;
27
27
import java .nio .file .Path ;
28
28
import java .nio .file .Paths ;
29
- import java .util .Iterator ;
30
29
31
30
import jdk .jfr .Configuration ;
32
31
import jdk .jfr .Recording ;
@@ -60,26 +59,26 @@ public static void main(String[] args) throws Exception {
60
59
61
60
private static void testDumpFilename () throws Exception {
62
61
OutputAnalyzer output = JcmdHelper .jcmd ("JFR.dump" );
63
- verifyFile (readFilename (output ), null );
62
+ verifyFile (JcmdHelper . readFilename (output ), null );
64
63
}
65
64
66
65
private static void testDumpFilename (Recording r ) throws Exception {
67
66
OutputAnalyzer output = JcmdHelper .jcmd ("JFR.dump" , "name=" + r .getId ());
68
- verifyFile (readFilename (output ), r .getId ());
67
+ verifyFile (JcmdHelper . readFilename (output ), r .getId ());
69
68
}
70
69
71
70
private static void testDumpDiectory () throws Exception {
72
71
Path directory = Paths .get ("." ).toAbsolutePath ().normalize ();
73
72
OutputAnalyzer output = JcmdHelper .jcmd ("JFR.dump" , "filename=" + directory );
74
- String filename = readFilename (output );
73
+ String filename = JcmdHelper . readFilename (output );
75
74
verifyFile (filename , null );
76
75
verifyDirectory (filename , directory );
77
76
}
78
77
79
78
private static void testDumpDiectory (Recording r ) throws Exception {
80
79
Path directory = Paths .get ("." ).toAbsolutePath ().normalize ();
81
80
OutputAnalyzer output = JcmdHelper .jcmd ("JFR.dump" , "name=" + r .getId (), "filename=" + directory );
82
- String filename = readFilename (output );
81
+ String filename = JcmdHelper . readFilename (output );
83
82
verifyFile (filename , r .getId ());
84
83
verifyDirectory (filename , directory );
85
84
}
@@ -98,16 +97,4 @@ private static void verifyFile(String filename, Long id) throws Exception {
98
97
}
99
98
FileHelper .verifyRecording (new File (filename ));
100
99
}
101
-
102
- private static String readFilename (OutputAnalyzer output ) throws Exception {
103
- Iterator <String > it = output .asLines ().iterator ();
104
- while (it .hasNext ()) {
105
- String line = it .next ();
106
- if (line .contains ("written to" )) {
107
- line = it .next (); // blank line
108
- return it .next ();
109
- }
110
- }
111
- throw new Exception ("Could not find filename of dumped recording." );
112
- }
113
100
}
0 commit comments