This is an automated email from the ASF dual-hosted git repository.

rmannibucau pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git


The following commit(s) were added to refs/heads/master by this push:
     new 0d78162  [OPENJPA-2840] light abstraction for asm
0d78162 is described below

commit 0d7816290ea9950a8f1aa02dfe418d877481dc0a
Author: Romain Manni-Bucau <rmannibu...@gmail.com>
AuthorDate: Fri Nov 20 09:43:42 2020 +0100

    [OPENJPA-2840] light abstraction for asm
---
 .../org/apache/openjpa/enhance/AsmAdaptor.java     | 202 +++------------------
 .../org/apache/openjpa/enhance/asm/AsmSpi.java     |  42 +++++
 .../enhance/{AsmAdaptor.java => asm/AsmSpi9.java}  |  50 +++--
 3 files changed, 96 insertions(+), 198 deletions(-)

diff --git 
a/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/AsmAdaptor.java 
b/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/AsmAdaptor.java
index 24f7c61..86d2818 100644
--- a/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/AsmAdaptor.java
+++ b/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/AsmAdaptor.java
@@ -18,24 +18,15 @@
  */
 package org.apache.openjpa.enhance;
 
-import static java.util.Arrays.asList;
+import org.apache.openjpa.enhance.asm.AsmSpi;
+import org.apache.openjpa.enhance.asm.AsmSpi9;
+import serp.bytecode.BCClass;
 
-import java.io.BufferedInputStream;
-import java.io.ByteArrayInputStream;
-import java.io.ByteArrayOutputStream;
 import java.io.File;
-import java.io.FileOutputStream;
 import java.io.IOException;
-import java.io.InputStream;
 import java.io.OutputStream;
-import java.net.URLDecoder;
-
-import org.apache.xbean.asm9.ClassReader;
-import org.apache.xbean.asm9.ClassVisitor;
-import org.apache.xbean.asm9.ClassWriter;
-import org.apache.xbean.asm9.Opcodes;
-
-import serp.bytecode.BCClass;
+import java.util.ServiceLoader;
+import java.util.stream.StreamSupport;
 
 
 /**
@@ -43,179 +34,46 @@ import serp.bytecode.BCClass;
  * Serp.
  */
 public final class AsmAdaptor {
-    private static final int Java7_MajorVersion = 51;
-
-    @SuppressWarnings("deprecation")
-    public static void write(BCClass bc) throws IOException {
-        if (bc.getMajorVersion() < Java7_MajorVersion) {
-            bc.write();
-        } else {
-            String name = bc.getName();
-            int dotIndex = name.lastIndexOf('.') + 1;
-            name = name.substring(dotIndex);
-            Class<?> type = bc.getType();
-
-            OutputStream out = new FileOutputStream(
-                    URLDecoder.decode(type.getResource(name + 
".class").getFile()));
+    private final static AsmSpi impl;
+    static {
+        impl = 
StreamSupport.stream(ServiceLoader.load(AsmSpi.class).spliterator(), 
false).min((a, b) -> {
+            final int v1;
             try {
-                writeJava7(bc, out);
-            } finally {
-                out.flush();
-                out.close();
+                v1 = Integer.parseInt(a.getClass().getName().replace("AsmSpi", 
""));
+            } catch (final Exception e) {
+                // not matching our default naming so an user impl so let's 
use it
+                return -1;
             }
-        }
-    }
-
-    public static void write(BCClass bc, File outFile) throws IOException {
-        if (bc.getMajorVersion() < Java7_MajorVersion) {
-            bc.write(outFile);
-        } else {
-            OutputStream out = new FileOutputStream(outFile);
+            final int v2;
             try {
-                writeJava7(bc, out);
-            } finally {
-                out.flush();
-                out.close();
+                v2 = Integer.parseInt(b.getClass().getName().replace("AsmSpi", 
""));
+            } catch (final Exception e) {
+                // not matching our default naming so an user impl so let's 
use it
+                return 1;
             }
-        }
+            return v2 - v1; // reverse since we want the higher
+        }).orElseGet(AsmSpi9::new);
     }
 
-    public static void write(BCClass bc, OutputStream os) throws IOException {
-        if (bc.getMajorVersion() < Java7_MajorVersion) {
-            bc.write(os);
-        }
-        else {
-            try {
-                writeJava7(bc, os);
-            } finally {
-                os.flush();
-                os.close();
-            }
-        }
+    @SuppressWarnings("deprecation")
+    public static void write(BCClass bc) throws IOException {
+        impl.write(bc);
     }
 
-    public static byte[] toByteArray(BCClass bc, byte[] returnBytes) throws 
IOException {
-        if (bc.getMajorVersion() >= Java7_MajorVersion) {
-            returnBytes = toJava7ByteArray(bc, returnBytes);
-        }
-        return returnBytes;
+    public static void write(BCClass bc, File outFile) throws IOException {
+        impl.write(bc, outFile);
     }
 
-    private static void writeJava7(BCClass bc, OutputStream out) throws 
IOException {
-        byte[] java7Bytes = toJava7ByteArray(bc, bc.toByteArray());
-        out.write(java7Bytes);
+    public static void write(BCClass bc, OutputStream os) throws IOException {
+        impl.write(bc, os);
     }
 
-    private static byte[] toJava7ByteArray(BCClass bc, byte[] classBytes) 
throws IOException {
-        ByteArrayInputStream bais = new ByteArrayInputStream(classBytes);
-        BufferedInputStream bis = new BufferedInputStream(bais);
-
-        ClassWriter cw = new BCClassWriter(ClassWriter.COMPUTE_FRAMES, 
bc.getClassLoader());
-        ClassReader cr = new ClassReader(bis);
-        cr.accept(cw, 0);
-        return cw.toByteArray();
+    public static byte[] toByteArray(BCClass bc, byte[] returnBytes) throws 
IOException {
+        return impl.toByteArray(bc, returnBytes);
     }
 
     public static boolean isEnhanced(final byte[] b)
     {
-        if (b == null)
-        {
-            return false;
-        }
-        final ClassReader cr = new ClassReader(b);
-        try
-        {
-            cr.accept(new ClassVisitor(Opcodes.ASM8)
-            {
-                @Override
-                public void visit(final int i, final int i1,
-                                  final String name, final String s,
-                                  final String parent, final String[] 
interfaces)
-                {
-                    boolean enhanced = interfaces != null && interfaces.length 
> 0 &&
-                        
asList(interfaces).contains("org/apache/openjpa/enhance/PersistenceCapable");
-                    if (!enhanced && name != null && parent != null &&
-                        !"java/lang/Object".equals(parent) && 
!name.equals(parent)) {
-                        enhanced = isEnhanced(bytes(parent));
-                    }
-                    throw new EnhancedStatusException(enhanced);
-                }
-            }, 0);
-            return false;
-        } catch (final EnhancedStatusException e) {
-            return e.status;
-        } catch (final Exception e) {
-            return false;
-        }
-    }
-
-    private static byte[] bytes(final String type)
-    {
-        final ByteArrayOutputStream baos = new ByteArrayOutputStream(1024);
-        final InputStream stream = 
Thread.currentThread().getContextClassLoader()
-            .getResourceAsStream(type + ".class");
-        if (stream == null) {
-            return null;
-        }
-        try {
-            int c;
-            byte[] buffer = new byte[1024];
-            while ((c = stream.read(buffer)) >= 0) {
-                baos.write(buffer, 0, c);
-            }
-        } catch (IOException e) {
-            return null;
-        } finally {
-            try {
-                stream.close();
-            } catch (IOException e) {
-                // no-op
-            }
-        }
-        return baos.toByteArray();
-    }
-
-    private static class BCClassWriter extends ClassWriter {
-        private final ClassLoader _loader;
-
-        BCClassWriter(int flags, ClassLoader loader) {
-            super(flags);
-            _loader = loader;
-        }
-
-        @Override
-        protected String getCommonSuperClass(String type1, String type2) {
-            Class<?> class1;
-            Class<?> class2;
-            try {
-                class1 = _loader.loadClass(type1.replace('/', '.'));
-                class2 = _loader.loadClass(type2.replace('/', '.'));
-            } catch (ClassNotFoundException ex) {
-                throw new RuntimeException(ex);
-            }
-            if (class1.isAssignableFrom(class2)) {
-                return type1;
-            }
-            if (class2.isAssignableFrom(class1)) {
-                return type2;
-            }
-            if (class1.isInterface() || class2.isInterface()) {
-                return "java/lang/Object";
-            }
-            do {
-                class1 = class1.getSuperclass();
-            } while (!class1.isAssignableFrom(class2));
-            return class1.getName().replace('.', '/');
-        }
-    }
-
-    private static class EnhancedStatusException extends RuntimeException {
-        
-        private static final long serialVersionUID = 1L;
-        private final boolean status;
-
-        private EnhancedStatusException(final boolean status) {
-            this.status = status;
-        }
+        return impl.isEnhanced(b);
     }
 }
diff --git 
a/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/asm/AsmSpi.java 
b/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/asm/AsmSpi.java
new file mode 100644
index 0000000..26af22e
--- /dev/null
+++ b/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/asm/AsmSpi.java
@@ -0,0 +1,42 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.openjpa.enhance.asm;
+
+import serp.bytecode.BCClass;
+
+import java.io.File;
+import java.io.IOException;
+import java.io.OutputStream;
+
+/**
+ * Enables to abstract ASM usage for the runtime (not for tests).
+ *
+ * It is recommended to name the impl "AsmSpi{asmVersion}" to let the spi 
loader sort the impl properly.
+ */
+public interface AsmSpi {
+    void write(BCClass bc) throws IOException;
+
+    void write(BCClass bc, File outFile) throws IOException;
+
+    void write(BCClass bc, OutputStream os) throws IOException;
+
+    byte[] toByteArray(BCClass bc, byte[] returnBytes) throws IOException;
+
+    boolean isEnhanced(byte[] b);
+}
diff --git 
a/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/AsmAdaptor.java 
b/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/asm/AsmSpi9.java
similarity index 86%
copy from 
openjpa-kernel/src/main/java/org/apache/openjpa/enhance/AsmAdaptor.java
copy to openjpa-kernel/src/main/java/org/apache/openjpa/enhance/asm/AsmSpi9.java
index 24f7c61..893b9ff 100644
--- a/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/AsmAdaptor.java
+++ b/openjpa-kernel/src/main/java/org/apache/openjpa/enhance/asm/AsmSpi9.java
@@ -16,9 +16,13 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.apache.openjpa.enhance;
+package org.apache.openjpa.enhance.asm;
 
-import static java.util.Arrays.asList;
+import org.apache.xbean.asm9.ClassReader;
+import org.apache.xbean.asm9.ClassVisitor;
+import org.apache.xbean.asm9.ClassWriter;
+import org.apache.xbean.asm9.Opcodes;
+import serp.bytecode.BCClass;
 
 import java.io.BufferedInputStream;
 import java.io.ByteArrayInputStream;
@@ -30,23 +34,14 @@ import java.io.InputStream;
 import java.io.OutputStream;
 import java.net.URLDecoder;
 
-import org.apache.xbean.asm9.ClassReader;
-import org.apache.xbean.asm9.ClassVisitor;
-import org.apache.xbean.asm9.ClassWriter;
-import org.apache.xbean.asm9.Opcodes;
-
-import serp.bytecode.BCClass;
-
+import static java.util.Arrays.asList;
 
-/**
- * Use ASM to add required StackMapTable attribute to the byte code generated 
by
- * Serp.
- */
-public final class AsmAdaptor {
+public class AsmSpi9 implements AsmSpi {
     private static final int Java7_MajorVersion = 51;
 
     @SuppressWarnings("deprecation")
-    public static void write(BCClass bc) throws IOException {
+    @Override
+    public void write(BCClass bc) throws IOException {
         if (bc.getMajorVersion() < Java7_MajorVersion) {
             bc.write();
         } else {
@@ -66,7 +61,8 @@ public final class AsmAdaptor {
         }
     }
 
-    public static void write(BCClass bc, File outFile) throws IOException {
+    @Override
+    public void write(BCClass bc, File outFile) throws IOException {
         if (bc.getMajorVersion() < Java7_MajorVersion) {
             bc.write(outFile);
         } else {
@@ -80,7 +76,8 @@ public final class AsmAdaptor {
         }
     }
 
-    public static void write(BCClass bc, OutputStream os) throws IOException {
+    @Override
+    public void write(BCClass bc, OutputStream os) throws IOException {
         if (bc.getMajorVersion() < Java7_MajorVersion) {
             bc.write(os);
         }
@@ -94,19 +91,20 @@ public final class AsmAdaptor {
         }
     }
 
-    public static byte[] toByteArray(BCClass bc, byte[] returnBytes) throws 
IOException {
+    @Override
+    public byte[] toByteArray(BCClass bc, byte[] returnBytes) throws 
IOException {
         if (bc.getMajorVersion() >= Java7_MajorVersion) {
             returnBytes = toJava7ByteArray(bc, returnBytes);
         }
         return returnBytes;
     }
 
-    private static void writeJava7(BCClass bc, OutputStream out) throws 
IOException {
+    private void writeJava7(BCClass bc, OutputStream out) throws IOException {
         byte[] java7Bytes = toJava7ByteArray(bc, bc.toByteArray());
         out.write(java7Bytes);
     }
 
-    private static byte[] toJava7ByteArray(BCClass bc, byte[] classBytes) 
throws IOException {
+    private byte[] toJava7ByteArray(BCClass bc, byte[] classBytes) throws 
IOException {
         ByteArrayInputStream bais = new ByteArrayInputStream(classBytes);
         BufferedInputStream bis = new BufferedInputStream(bais);
 
@@ -116,7 +114,7 @@ public final class AsmAdaptor {
         return cw.toByteArray();
     }
 
-    public static boolean isEnhanced(final byte[] b)
+    public boolean isEnhanced(final byte[] b)
     {
         if (b == null)
         {
@@ -133,9 +131,9 @@ public final class AsmAdaptor {
                                   final String parent, final String[] 
interfaces)
                 {
                     boolean enhanced = interfaces != null && interfaces.length 
> 0 &&
-                        
asList(interfaces).contains("org/apache/openjpa/enhance/PersistenceCapable");
+                            
asList(interfaces).contains("org/apache/openjpa/enhance/PersistenceCapable");
                     if (!enhanced && name != null && parent != null &&
-                        !"java/lang/Object".equals(parent) && 
!name.equals(parent)) {
+                            !"java/lang/Object".equals(parent) && 
!name.equals(parent)) {
                         enhanced = isEnhanced(bytes(parent));
                     }
                     throw new EnhancedStatusException(enhanced);
@@ -149,11 +147,11 @@ public final class AsmAdaptor {
         }
     }
 
-    private static byte[] bytes(final String type)
+    private byte[] bytes(final String type)
     {
         final ByteArrayOutputStream baos = new ByteArrayOutputStream(1024);
         final InputStream stream = 
Thread.currentThread().getContextClassLoader()
-            .getResourceAsStream(type + ".class");
+                .getResourceAsStream(type + ".class");
         if (stream == null) {
             return null;
         }
@@ -210,7 +208,7 @@ public final class AsmAdaptor {
     }
 
     private static class EnhancedStatusException extends RuntimeException {
-        
+
         private static final long serialVersionUID = 1L;
         private final boolean status;
 

Reply via email to