<div dir="ltr"><div><span style="line-height:21.6667px">Personally I do not see this distinction as the important factor.  I get what you are saying, and if we intentionally were exposing Javassist as an API detail I would agree that copying and shading would be bad.  But I say it is not important because even though I do *not* view Javassist as something we intentionally expose as an API detail I still think it is important to copy/shade only as a last resort.</span><br></div><div><span style="line-height:21.6667px"><br></span></div><div><span style="line-height:21.6667px">The mistake in our current OOTB </span><span style="line-height:21.6667px">bytecode manipulation implementation seems to be that we expose some of its impl details (usage of Javassist) into the manipulated bytecode.  What I like specifically about the some of the suggestions here so far (and Gunnar&#39;s work IIUC) is that it splits this problem into distinct concerns:</span></div><div><ol><li><span style="line-height:21.6667px">Actually performing the manipulation and/or proxy generation</span></li><li><span style="line-height:21.6667px">Runtime usage of that manipulated class or proxy.</span></li></ol></div><div></div><div>So I can use Javassist or ByteBuddy or ASM or ... to deal with (1) as long as that choice does not leak into (2).  That is the important part to me.</div><div><br></div><div>That&#39;s the best option IMO if possible.  And I think it is.</div></div><br><div class="gmail_quote"><div dir="ltr">On Fri, Feb 19, 2016 at 1:56 PM Paul Benedict &lt;<a href="mailto:pbenedict@apache.org">pbenedict@apache.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I think the answer should depend on how the Hibernate developers view Javassist. Is Javassist seen as a pluggable part of the API? Or is it seen as fundamentally an internal component? If it&#39;s the former, then do not shade it; otherwise do shade it. I think the latter is very sensible as long as that perspective is maintained in the code base.<br></div><div class="gmail_extra"><br clear="all"><div><div><div dir="ltr"><div><div dir="ltr">Cheers,<br>Paul</div></div></div></div></div></div><div class="gmail_extra">
<br><div class="gmail_quote">On Fri, Feb 19, 2016 at 11:47 AM, Scott Marlow <span dir="ltr">&lt;<a href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
<br>
On 02/18/2016 01:17 PM, Carlo de Wolf wrote:<br>
&gt; Looks to me like Hibernate is exposing bad proxies to the user.<br>
<br>
Its not bad or new, just how we always did it.  Other Javassist users<br>
have also done the same and ended up shading Javassist classes.<br>
<br>
&gt;<br>
&gt; Would it not be possible to use a custom class loader at the point where<br>
&gt; the proxy is defined?<br>
&gt; Than you could use one that takes the version of javassist that<br>
&gt; Hibernate requires and delegates everything else to the deployment class<br>
&gt; loader.<br>
<br>
This sounds similar to my <a href="https://github.com/wildfly/wildfly/pull/8474" rel="noreferrer" target="_blank">https://github.com/wildfly/wildfly/pull/8474</a><br>
pull request that changes the Hibernate ORM static module to export the<br>
Javassist classes.<br>
<br>
&gt;<br>
&gt; I don&#39;t like to see any sort of shading as this means the full<br>
&gt; maintenance burden of those classes are carried over into Hibernate.<br>
&gt;<br>
&gt; Carlo<br>
<div><div>&gt;<br>
&gt; On 02/18/2016 12:11 PM, Sanne Grinovero wrote:<br>
&gt;&gt; It seems we&#39;re discussing this issue in multiple places,<br>
&gt;&gt; so to let you all know I&#39;ll repeat it hare:<br>
&gt;&gt; I think shading is a really really bad idea :)<br>
&gt;&gt;<br>
&gt;&gt; Could we try to have the enhanced entities to not need Javassist in in<br>
&gt;&gt; their *direct* classloader; we can still have a normal Javassist as a<br>
&gt;&gt; module dependency of Hibernate?<br>
&gt;&gt; That would require to just make sure the generated bytecode doesn&#39;t<br>
&gt;&gt; directly refer to Javassist types but uses an indirection controlled<br>
&gt;&gt; by Hibernate code.. which in turn can use Javassist or even<br>
&gt;&gt; alternatives in future, if we&#39;d like to experiment.<br>
&gt;&gt;<br>
&gt;&gt; I&#39;m not familiar enough with Javassist to know if that&#39;s an option<br>
&gt;&gt; as-is but we can either improve Javassist to allow such a thing or use<br>
&gt;&gt; some alternatives, like Gunnar and Hardy also suggested on the<br>
&gt;&gt; hibernate-dev mailing list.<br>
&gt;&gt;<br>
&gt;&gt; To summarize, I agree with Stuart and would hope that Scott&#39;s branch<br>
&gt;&gt; can be improved by minimizing the amount of Javassist code which<br>
&gt;&gt; actually needs to be copied by using some simple delegation to<br>
&gt;&gt; Hibernte types, which in turn can use a private, non-shaded Javassist<br>
&gt;&gt; taking advantage of the isolation provided by JBoss Modules.<br>
&gt;&gt;<br>
&gt;&gt; --Sanne<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On 12 February 2016 at 03:19, Scott Marlow &lt;<a href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt; wrote:<br>
&gt;&gt;&gt; What if Javassist packaged these same (proxy/runtime) classes in a<br>
&gt;&gt;&gt; separate javassist-runtime jar and we shaded only the proxy/runtime<br>
&gt;&gt;&gt; classes?  That way we only repackage the same classes that we included<br>
&gt;&gt;&gt; for this hack test (e.g.<br>
&gt;&gt;&gt; org.hibernate.bytecode.internal.javassist.proxy.*).<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Early testing results of the hack test look good<br>
&gt;&gt;&gt; (<a href="https://gist.github.com/scottmarlow/ad878968c5a7c6fbbfb7" rel="noreferrer" target="_blank">https://gist.github.com/scottmarlow/ad878968c5a7c6fbbfb7</a>).<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Scott<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On 02/11/2016 09:04 PM, Stuart Douglas wrote:<br>
&gt;&gt;&gt;&gt; It depends if you are going to shade all the javassist classes or just<br>
&gt;&gt;&gt;&gt; the &quot;javassist.util.proxy&quot; package (not sure if this is actually<br>
&gt;&gt;&gt;&gt; possible with the shade plugin).<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; The main advantage is that you can upgrade javassist to get fixes to<br>
&gt;&gt;&gt;&gt; issues that affect bytecode generation. So if JDK9 comes out with new<br>
&gt;&gt;&gt;&gt; bytecodes that the current version of Javassist does not understand<br>
&gt;&gt;&gt;&gt; then<br>
&gt;&gt;&gt;&gt; upgrading javassist will allow the older version of hibernate to work<br>
&gt;&gt;&gt;&gt; with classes compiled against the newer JDK version. If all of<br>
&gt;&gt;&gt;&gt; javassist<br>
&gt;&gt;&gt;&gt; is shaded into hibernate then that version of hibernate will never work<br>
&gt;&gt;&gt;&gt; with the newer bytecodes.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I think this is less of an issue if you are still publishing the<br>
&gt;&gt;&gt;&gt; non-Javassist shaded hibernate as well as a shaded version, but if the<br>
&gt;&gt;&gt;&gt; only published artifact has javassist shaded in then it may limit<br>
&gt;&gt;&gt;&gt; forward compatibility.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Stuart<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On Fri, 12 Feb 2016 at 12:53 Steve Ebersole &lt;<a href="mailto:steve@hibernate.org" target="_blank">steve@hibernate.org</a><br>
&gt;&gt;&gt;&gt; &lt;mailto:<a href="mailto:steve@hibernate.org" target="_blank">steve@hibernate.org</a>&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;      Ugh.  That is an awful lot of classes copied over.  What<br>
&gt;&gt;&gt;&gt; exactly was<br>
&gt;&gt;&gt;&gt;      the benefit of this over shading again?  I mean both case lose the<br>
&gt;&gt;&gt;&gt;      ability to simply drop in fixes from upstream Javassist.  So what<br>
&gt;&gt;&gt;&gt;      does this &quot;clone&quot; approach gain versus shadowing?<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;      On Thu, Feb 11, 2016 at 7:13 PM Scott Marlow &lt;<a href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a><br>
&gt;&gt;&gt;&gt;      &lt;mailto:<a href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt;&gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;           &gt;&gt;<br>
&gt;&gt;&gt;&gt;           &gt;&gt;      On 02/11/2016 03:02 PM, Stuart Douglas wrote:<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt; Have you considered a 3rd alternative, which is to<br>
&gt;&gt;&gt;&gt;          use a custom<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt; ProxyFactory instead of javassists built in one?<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt;<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt; AFAIK the main issue is that javassist proxies<br>
&gt;&gt;&gt;&gt;          require access to the<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt;<br>
&gt;&gt;&gt;&gt; &#39;javassist.util.proxy.MethodHandler|RuntimeSupport&#39;<br>
&gt;&gt;&gt;&gt;          classes. You<br>
&gt;&gt;&gt;&gt;           &gt;&gt;      could<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt; create a similar org.hibernate interface, and a<br>
&gt;&gt;&gt;&gt;          proxy factory<br>
&gt;&gt;&gt;&gt;           &gt;&gt;      that uses<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt; this method handler instead.<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt;<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt; Basically you just copy the code from<br>
&gt;&gt;&gt;&gt;          javassist.util.proxy into<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt; hibernate. This is a relatively small amount of<br>
&gt;&gt;&gt;&gt;          code, so it<br>
&gt;&gt;&gt;&gt;           &gt;&gt;      should not<br>
&gt;&gt;&gt;&gt;           &gt;&gt;       &gt; really add any maintenance burden.<br>
&gt;&gt;&gt;&gt;           &gt;&gt;<br>
&gt;&gt;&gt;&gt;           &gt;&gt;      We talked about this as well via [1].  I<br>
&gt;&gt;&gt;&gt; understand the<br>
&gt;&gt;&gt;&gt;          concept but have<br>
&gt;&gt;&gt;&gt;           &gt;&gt;      not tried doing this.  I like this approach as<br>
&gt;&gt;&gt;&gt; well, if<br>
&gt;&gt;&gt;&gt;          it works.  One<br>
&gt;&gt;&gt;&gt;           &gt;&gt;      of the cons with cloning that Steve Ebersole pointed<br>
&gt;&gt;&gt;&gt;          out (see response<br>
&gt;&gt;&gt;&gt;           &gt;&gt;      on Feb-03-2016 9:01am), is that that users lose the<br>
&gt;&gt;&gt;&gt;          ability to drop a<br>
&gt;&gt;&gt;&gt;           &gt;&gt;      different version of Javassist in (since we maintain<br>
&gt;&gt;&gt;&gt;          our own cloned copy<br>
&gt;&gt;&gt;&gt;           &gt;&gt;      of the Javassist proxy/runtime code).<br>
&gt;&gt;&gt;&gt;           &gt;&gt;<br>
&gt;&gt;&gt;&gt;           &gt;&gt;<br>
&gt;&gt;&gt;&gt;           &gt;&gt; The proxy code is a relatively small part of javassist, so<br>
&gt;&gt;&gt;&gt;          unless a bug<br>
&gt;&gt;&gt;&gt;           &gt;&gt; is in the proxy code itself this should not be that big<br>
&gt;&gt;&gt;&gt; a deal.<br>
&gt;&gt;&gt;&gt;           &gt;<br>
&gt;&gt;&gt;&gt;           &gt; Thanks for the encouragement to go down this path.  :)<br>
&gt;&gt;&gt;&gt;           &gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;          Started a hack attempt at the clone via<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; <a href="https://github.com/scottmarlow/hibernate-orm/tree/javassistproxy" rel="noreferrer" target="_blank">https://github.com/scottmarlow/hibernate-orm/tree/javassistproxy</a>.<br>
&gt;&gt;&gt;&gt;          Seems<br>
&gt;&gt;&gt;&gt;          to pass the Hibernate ORM unit tests.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;          Scott<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;          _______________________________________________<br>
&gt;&gt;&gt;&gt;          wildfly-dev mailing list<br>
&gt;&gt;&gt;&gt;          <a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a><br>
&gt;&gt;&gt;&gt; &lt;mailto:<a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a>&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;          <a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; wildfly-dev mailing list<br>
&gt;&gt;&gt; <a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a><br>
&gt;&gt;&gt; <a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; wildfly-dev mailing list<br>
&gt;&gt; <a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a><br>
&gt;&gt; <a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
_______________________________________________<br>
wildfly-dev mailing list<br>
<a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
</div></div></blockquote></div><br></div>
_______________________________________________<br>
wildfly-dev mailing list<br>
<a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a></blockquote></div>