Skip to content

Commit a024eed

Browse files
committedMay 2, 2024
8331478: JFR: Rename printHelp methods for jdk.jfr.internal.dcmd classes
Reviewed-by: mgronlun
1 parent 9912abf commit a024eed

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed
 

‎src/hotspot/share/jfr/dcmd/jfrDcmds.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ void JfrDCmd::execute(DCmdSource source, TRAPS) {
221221
return;
222222
}
223223
if (source == DCmd_Source_Internal && _args != nullptr && strcmp(_args, "help") == 0) {
224-
print_java_help("printStartupHelp");
224+
print_java_help("getStartupHelp");
225225
vm_exit(0);
226226
}
227227

@@ -246,17 +246,17 @@ void JfrDCmd::execute(DCmdSource source, TRAPS) {
246246
handle_dcmd_result(output(), result.get_oop(), source, THREAD);
247247
}
248248

249-
void JfrDCmd::print_java_help(const char* help_method) const {
249+
void JfrDCmd::print_java_help(const char* get_help_method) const {
250250
static const char signature[] = "()[Ljava/lang/String;";
251251
JavaThread* thread = JavaThread::current();
252252
JavaValue result(T_OBJECT);
253-
JfrJavaArguments printHelp(&result, javaClass(), help_method, signature, thread);
254-
invoke(printHelp, thread);
253+
JfrJavaArguments java_method(&result, javaClass(), get_help_method, signature, thread);
254+
invoke(java_method, thread);
255255
handle_dcmd_result(output(), result.get_oop(), DCmd_Source_MBean, thread);
256256
}
257257

258258
void JfrDCmd::print_help(const char* name) const {
259-
print_java_help("printHelp");
259+
print_java_help("getHelp");
260260
}
261261

262262
static void initialize_dummy_descriptors(GrowableArray<DCmdArgumentInfo*>* array) {

‎src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/AbstractDCmd.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -57,7 +57,7 @@ abstract class AbstractDCmd {
5757
private String source;
5858

5959
// Called by native
60-
public abstract String[] printHelp();
60+
public abstract String[] getHelp();
6161

6262
// Called by native. The number of arguments for each command is
6363
// reported to the DCmdFramework as a hardcoded number in native.
@@ -233,7 +233,7 @@ protected final void printPath(SafePath path) {
233233
}
234234

235235
protected final void printHelpText() {
236-
for (String line : printHelp()) {
236+
for (String line : getHelp()) {
237237
println(line);
238238
}
239239
}

‎src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdCheck.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -139,7 +139,7 @@ private static List<EventType> sortByEventPath(Collection<EventType> events) {
139139
}
140140

141141
@Override
142-
public String[] printHelp() {
142+
public String[] getHelp() {
143143
// 0123456789001234567890012345678900123456789001234567890012345678900123456789001234567890
144144
return """
145145
Syntax : JFR.check [options]

‎src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdConfigure.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -248,7 +248,7 @@ private void printMaxChunkSize() {
248248
}
249249

250250
@Override
251-
public String[] printHelp() {
251+
public String[] getHelp() {
252252
throw new InternalError("Should not reach here!");
253253
}
254254

‎src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdDump.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -194,7 +194,7 @@ private PlatformRecording newSnapShot(PlatformRecorder recorder, Recording recor
194194
}
195195

196196
@Override
197-
public String[] printHelp() {
197+
public String[] getHelp() {
198198
// 0123456789001234567890012345678900123456789001234567890012345678900123456789001234567890
199199
return """
200200
Syntax : JFR.dump [options]

‎src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdQuery.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -87,7 +87,7 @@ private String stripQuotes(String text) {
8787
}
8888

8989
@Override
90-
public String[] printHelp() {
90+
public String[] getHelp() {
9191
List<String> lines = new ArrayList<>();
9292
lines.addAll(getOptions().lines().toList());
9393
lines.add("");

‎src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdStart.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ private boolean hasJDKEvents(Map<String, String> settings) {
318318
return false;
319319
}
320320

321-
public String[] printStartupHelp() {
321+
public String[] getStartupHelp() {
322322
Map<String, String> parameters = Map.of(
323323
"$SYNTAX", "-XX:StartFlightRecording:[options]",
324324
"$SOURCE", "-XX:StartFlightRecording:",
@@ -331,7 +331,7 @@ public String[] printStartupHelp() {
331331
}
332332

333333
@Override
334-
public String[] printHelp() {
334+
public String[] getHelp() {
335335
Map<String, String> parameters = Map.of(
336336
"$SYNTAX", "JFR.start [options]",
337337
"$SOURCE", "$ jcmd <pid> JFR.start ",

‎src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdStop.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -71,7 +71,7 @@ protected void execute(ArgumentParser parser) throws DCmdException {
7171
}
7272

7373
@Override
74-
public String[] printHelp() {
74+
public String[] getHelp() {
7575
// 0123456789001234567890012345678900123456789001234567890012345678900123456789001234567890
7676
return """
7777
Syntax : JFR.stop [options]

‎src/jdk.jfr/share/classes/jdk/jfr/internal/dcmd/DCmdView.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -89,7 +89,7 @@ protected final boolean isInteractive() {
8989
}
9090

9191
@Override
92-
public String[] printHelp() {
92+
public String[] getHelp() {
9393
List<String> lines = new ArrayList<>();
9494
lines.addAll(getOptions().lines().toList());
9595
lines.add("");

0 commit comments

Comments
 (0)
Please sign in to comment.