Skip to content

Commit 54b22a3

Browse files
committed
Add contextual naming strategy and make it default for Graal builds.
1 parent d865202 commit 54b22a3

File tree

4 files changed

+72
-9
lines changed

4 files changed

+72
-9
lines changed

byte-buddy-dep/src/main/java/net/bytebuddy/ByteBuddy.java

+10-4
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,10 @@ public class ByteBuddy {
105105

106106
/**
107107
* A property that controls the default naming strategy. If not set, Byte Buddy is generating
108-
* random names for types that are not named explicitly. If set to {@code fixed}, Byte Buddy is setting
109-
* names deterministically without any random element. If set to a numeric value, Byte Buddy
110-
* is generating random names using the number as a seed.
108+
* random names for types that are not named explicitly. If set to {@code fixed}, Byte Buddy is
109+
* setting names deterministically without any random element, or to {@code caller}, if a name
110+
* should be fixed but contain the name of the caller class and method. If set to a numeric
111+
* value, Byte Buddy is generating random names, using the number as a seed.
111112
*/
112113
public static final String DEFAULT_NAMING_PROPERTY = "net.bytebuddy.naming";
113114

@@ -141,7 +142,7 @@ public class ByteBuddy {
141142
if (value == null) {
142143
if (GraalImageCode.getCurrent().isDefined()) {
143144
namingStrategy = new NamingStrategy.Suffixing(BYTE_BUDDY_DEFAULT_PREFIX,
144-
NamingStrategy.Suffixing.BaseNameResolver.ForUnnamedType.INSTANCE,
145+
new NamingStrategy.Suffixing.BaseNameResolver.WithCallerSuffix(NamingStrategy.Suffixing.BaseNameResolver.ForUnnamedType.INSTANCE),
145146
NamingStrategy.BYTE_BUDDY_RENAME_PACKAGE);
146147
auxiliaryNamingStrategy = new AuxiliaryType.NamingStrategy.Enumerating(BYTE_BUDDY_DEFAULT_SUFFIX);
147148
} else {
@@ -153,6 +154,11 @@ public class ByteBuddy {
153154
NamingStrategy.Suffixing.BaseNameResolver.ForUnnamedType.INSTANCE,
154155
NamingStrategy.BYTE_BUDDY_RENAME_PACKAGE);
155156
auxiliaryNamingStrategy = new AuxiliaryType.NamingStrategy.Enumerating(BYTE_BUDDY_DEFAULT_SUFFIX);
157+
} else if (value.equalsIgnoreCase("caller")) {
158+
namingStrategy = new NamingStrategy.Suffixing(BYTE_BUDDY_DEFAULT_PREFIX,
159+
new NamingStrategy.Suffixing.BaseNameResolver.WithCallerSuffix(NamingStrategy.Suffixing.BaseNameResolver.ForUnnamedType.INSTANCE),
160+
NamingStrategy.BYTE_BUDDY_RENAME_PACKAGE);
161+
auxiliaryNamingStrategy = new AuxiliaryType.NamingStrategy.Enumerating(BYTE_BUDDY_DEFAULT_SUFFIX);
156162
} else {
157163
long seed;
158164
try {

byte-buddy-dep/src/main/java/net/bytebuddy/NamingStrategy.java

+42
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,48 @@ public String resolve(TypeDescription typeDescription) {
272272
return name;
273273
}
274274
}
275+
276+
/**
277+
* A base name resolver that adds the name of the class that is invoking {@link ByteBuddy}. This
278+
* base name resolver can therefore not be invoked directly.
279+
*/
280+
@HashCodeAndEqualsPlugin.Enhance
281+
class WithCallerSuffix implements BaseNameResolver {
282+
283+
/**
284+
* The base name resolver that is resolving the base name.
285+
*/
286+
private final BaseNameResolver delegate;
287+
288+
/**
289+
* Creates a new base name resolver that appends a caller suffix.
290+
*
291+
* @param delegate The base name resolver that is resolving the base name.
292+
*/
293+
public WithCallerSuffix(BaseNameResolver delegate) {
294+
this.delegate = delegate;
295+
}
296+
297+
/**
298+
* {@inheritDoc}
299+
*/
300+
public String resolve(TypeDescription typeDescription) {
301+
boolean matched = false;
302+
String caller = null;
303+
for (StackTraceElement stackTraceElement : new Throwable().getStackTrace()) {
304+
if (stackTraceElement.getClassName().equals(ByteBuddy.class.getName())) {
305+
matched = true;
306+
} else if (matched) {
307+
caller = stackTraceElement.getClassName() + "." + stackTraceElement.getMethodName();
308+
break;
309+
}
310+
}
311+
if (caller == null) {
312+
throw new IllegalStateException("Base name resolver not invoked via " + ByteBuddy.class);
313+
}
314+
return delegate.resolve(typeDescription) + "$" + caller.replace('.', '$');
315+
}
316+
}
275317
}
276318
}
277319

byte-buddy-dep/src/test/java/net/bytebuddy/ByteBuddyTest.java

+14
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,20 @@ public void testClassCompiledToJsr14() throws Exception {
188188
.newInstance(), notNullValue());
189189
}
190190

191+
@Test
192+
public void testCallerSuffixNamingStrategy() throws Exception {
193+
Class<?> type = new ByteBuddy()
194+
.with(new NamingStrategy.Suffixing("SuffixedName", new NamingStrategy.Suffixing.BaseNameResolver.WithCallerSuffix(
195+
new NamingStrategy.Suffixing.BaseNameResolver.ForFixedValue("foo.Bar"))))
196+
.subclass(Object.class)
197+
.make()
198+
.load(ClassLoadingStrategy.BOOTSTRAP_LOADER, ClassLoadingStrategy.Default.WRAPPER)
199+
.getLoaded();
200+
assertThat(type.getName(), is("foo.Bar$"
201+
+ ByteBuddyTest.class.getName().replace('.', '$')
202+
+ "$testCallerSuffixNamingStrategy$SuffixedName"));
203+
}
204+
191205
public static class Recorder {
192206

193207
public int counter;

byte-buddy-dep/src/test/java/net/bytebuddy/NamingStrategyTest.java

+6-5
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,6 @@ public void testSuffixingRandomRedefine() throws Exception {
141141
verifyNoMoreInteractions(rawTypeDescription);
142142
}
143143

144-
145-
146-
147-
148-
149144
@Test
150145
public void testBaseNameResolvers() throws Exception {
151146
assertThat(new NamingStrategy.SuffixingRandom.BaseNameResolver.ForFixedValue(FOO).resolve(rawTypeDescription), is(FOO));
@@ -182,4 +177,10 @@ public void testPrefixingRandomRedefine() throws Exception {
182177
verify(rawTypeDescription).getName();
183178
verifyNoMoreInteractions(rawTypeDescription);
184179
}
180+
181+
@Test(expected = IllegalStateException.class)
182+
public void testCallerSen() {
183+
new NamingStrategy.Suffixing.BaseNameResolver.WithCallerSuffix(mock(NamingStrategy.Suffixing.BaseNameResolver.class))
184+
.resolve(mock(TypeDescription.class));
185+
}
185186
}

0 commit comments

Comments
 (0)