Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Painless: Fix bug for static method calls on interfaces #31348

Merged
merged 2 commits into from
Jun 15, 2018

Conversation

jdconrad
Copy link
Contributor

We were not calling static interface methods correctly leading to errors. Java 8 didn't care, but Java 9+ is stricter. Example --

java.lang.IncompatibleClassChangeError: Method java.util.Comparator.comparing(Ljava/util/function/Function;)Ljava/util/Comparator; must be InterfaceMethodref constant

StackOverflow explanation -- (https://stackoverflow.com/questions/34360718/invokestatic-on-static-method-in-interface?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa)

@jdconrad jdconrad added >bug :Core/Infra/Scripting Scripting abstractions, Painless, and Mustache v7.0.0 v6.4.0 v6.3.1 labels Jun 14, 2018
@jdconrad jdconrad requested a review from nik9000 June 14, 2018 21:41
@elasticmachine
Copy link
Collaborator

Pinging @elastic/es-core-infra

type = owner.type;
}

if (java.lang.reflect.Modifier.isStatic(modifiers)) {
writer.invokeStatic(type, method);
} else if (java.lang.reflect.Modifier.isInterface(owner.clazz.getModifiers())) {
// special case for interfaces where the interface function needs to be set to true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this'd be more clear if you said something like "invokeStatic assumes that it is not invoking a method on an interface."

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed. Cleaned up a bit.

@@ -66,6 +66,9 @@
/** delegate method type method as type */
public final Type delegateType;

/** whether a call is made on a delegate interface */
public final int isDelegateInterface;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if it'd be worth making this a boolean for readability. I'm fine with it staying an integer if you like but I think it is worth a comment why it is an integer and that it can only be 0 or 1.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed and commented.

} else if (delegateMethod.augmentation != null) {
delegateClassName = delegateMethod.augmentation.getName();
isDelegateInterface = delegateMethod.augmentation.isInterface() ? 1 : 0;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This'd only come up if the target augmentation method is defined on an interface, right? Maybe we should not allow that at all.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed, but I'd like to do that in a follow up PR as we discussed.

Copy link
Member

@nik9000 nik9000 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should forbid augmentation methods on interfaces. That just feels so weird. And we can't make a test case for it anyway. But maybe that should be in a followup?

I think you should add a test for method references to static methods on an interface. Once you do that, merge away!

@jdconrad
Copy link
Contributor Author

@nik9000 Thanks for the fast turn around on this review! Added a test for method references triggering an invokeStatic through lambdaBootstrap and fixed up a couple things based on your comments.

@jdconrad
Copy link
Contributor Author

Will commit this as soon as it passes CI

@jdconrad jdconrad merged commit 0324103 into elastic:master Jun 15, 2018
jdconrad added a commit that referenced this pull request Jun 15, 2018
Static method calls on interfaces were not being called correctly
which was causing JVM crashes.  This change fixes the issue.
jdconrad added a commit that referenced this pull request Jun 15, 2018
Static method calls on interfaces were not being called correctly
which was causing JVM crashes.  This change fixes the issue.
tlrx added a commit that referenced this pull request Jun 15, 2018
* master:
  992c788 Uncouple persistent task state and status (#31031)
  8c6ee7d Describe how to add a plugin in Dockerfile (#31340)
  1c5cec0 Remove http status code maps (#31350)
  87a676e Do not set vm.max_map_count when unnecessary (#31285)
  e5b7137 TEST: getCapturedRequestsAndClear should be atomic (#31312)
  0324103 Painless: Fix bug for static method calls on interfaces (#31348)
  d6d0727 QA: Fix resolution of default distribution (#31351)
  fcf1e41 Extract common http logic to server (#31311)
  6dd81ea Build: Fix the license in the pom zip and tar (#31336)
  8f886cd Treat ack timeout more like a publish timeout (#31303)
  9b29327 [ML] Add description to ML filters (#31330)
  f7a0caf SQL: Fix build on Java 10
  375d09c [TEST] Fix RemoteClusterClientTests#testEnsureWeReconnect
  4877cec More detailed tracing when writing metadata (#31319)
  bbfe1ec [Tests] Mutualize fixtures code in BaseHttpFixture (#31210)
tlrx added a commit that referenced this pull request Jun 15, 2018
* 6.x:
  6d711fa (origin/6.x, 6.x) Uncouple persistent task state and status (#31031)
  f0f16b7 [TEST] Make SSL restrictions update atomic (#31050)
  652193f Describe how to add a plugin in Dockerfile (#31340)
  bb568ab TEST: getCapturedRequestsAndClear should be atomic (#31312)
  6f94914 Do not set vm.max_map_count when unnecessary (#31285)
  c12f3c7 Painless: Fix bug for static method calls on interfaces (#31348)
  21128e2 QA: Fix resolution of default distribution (#31351)
  df17a83 Build: Fix the license in the pom zip and tar (#31336)
  3e76b15 Treat ack timeout more like a publish timeout (#31303)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
>bug :Core/Infra/Scripting Scripting abstractions, Painless, and Mustache v6.3.1 v6.4.0 v7.0.0-beta1
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants