Skip to content

Commit dd8dbb6

Browse files
egahlinchiroito
andcommittedFeb 25, 2020
8223066: "jfr metadata" output the @name annotation twice
Co-authored-by: Chihiro Ito <chiroito107@gmail.com> Reviewed-by: mgronlun, egahlin
1 parent 53ee0c4 commit dd8dbb6

File tree

2 files changed

+29
-11
lines changed

2 files changed

+29
-11
lines changed
 

‎src/jdk.jfr/share/classes/jdk/jfr/internal/tool/PrettyWriter.java

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2020, 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
@@ -37,6 +37,7 @@
3737
import jdk.jfr.DataAmount;
3838
import jdk.jfr.Frequency;
3939
import jdk.jfr.MemoryAddress;
40+
import jdk.jfr.Name;
4041
import jdk.jfr.Percentage;
4142
import jdk.jfr.ValueDescriptor;
4243
import jdk.jfr.consumer.RecordedClass;
@@ -143,15 +144,17 @@ private void printCommentRef(int commentIndex, long typeId) {
143144

144145
private void printAnnotations(int commentIndex, List<AnnotationElement> annotations) {
145146
for (AnnotationElement a : annotations) {
146-
printIndent();
147-
print("@");
148-
print(makeSimpleType(a.getTypeName()));
149-
List<ValueDescriptor> vs = a.getValueDescriptors();
150-
if (!vs.isEmpty()) {
151-
printAnnotation(a);
152-
printCommentRef(commentIndex, a.getTypeId());
153-
} else {
154-
println();
147+
if (!Name.class.getName().equals(a.getTypeName())) {
148+
printIndent();
149+
print("@");
150+
print(makeSimpleType(a.getTypeName()));
151+
List<ValueDescriptor> vs = a.getValueDescriptors();
152+
if (!vs.isEmpty()) {
153+
printAnnotation(a);
154+
printCommentRef(commentIndex, a.getTypeId());
155+
} else {
156+
println();
157+
}
155158
}
156159
}
157160
}

‎test/jdk/jdk/jfr/tool/TestMetadata.java

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, 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
@@ -26,6 +26,8 @@
2626
package jdk.jfr.tool;
2727

2828
import java.nio.file.Path;
29+
import java.util.HashSet;
30+
import java.util.Set;
2931

3032
import jdk.jfr.EventType;
3133
import jdk.jfr.consumer.RecordingFile;
@@ -59,5 +61,18 @@ public static void main(String[] args) throws Throwable {
5961
output.shouldContain(name);
6062
}
6163
}
64+
Set<String> annotations = new HashSet<>();
65+
int lineNumber = 1;
66+
for (String line : output.asLines()) {
67+
if (line.startsWith("@")) {
68+
if (annotations.contains(line)) {
69+
throw new Exception("Line " + lineNumber + ":" + line + " repeats annotation");
70+
}
71+
annotations.add(line);
72+
} else {
73+
annotations.clear();
74+
}
75+
lineNumber++;
76+
}
6277
}
6378
}

0 commit comments

Comments
 (0)
Please sign in to comment.