mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Rename org.ow2.asm to org.teavm.asm in class loader during JPS build. Fix IDEA plugin deployment in travis
This commit is contained in:
parent
b3f52409a7
commit
7d876668c5
|
@ -29,7 +29,7 @@ after_success: >
|
||||||
export TEAVM_FTP_HOST
|
export TEAVM_FTP_HOST
|
||||||
export TEAVM_FTP_LOGIN
|
export TEAVM_FTP_LOGIN
|
||||||
export TEAVM_FTP_PASSWORD
|
export TEAVM_FTP_PASSWORD
|
||||||
mvn deploy -Dteavm.build.all=false --settings travis-settings.xml -P deploy-to-bintray -P with-idea && \
|
mvn deploy -Dteavm.build.all=false -DskipTests --settings travis-settings.xml -P deploy-to-bintray -P with-idea && \
|
||||||
./update-idea-repository.sh
|
./update-idea-repository.sh
|
||||||
fi
|
fi
|
||||||
after_script:
|
after_script:
|
||||||
|
|
|
@ -0,0 +1,70 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Alexey Andreev.
|
||||||
|
*
|
||||||
|
* Licensed 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.teavm.idea.jps;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.net.URLClassLoader;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import org.teavm.asm.ClassReader;
|
||||||
|
import org.teavm.asm.ClassWriter;
|
||||||
|
|
||||||
|
public class RenamingClassLoader extends URLClassLoader {
|
||||||
|
private List<Rename> renameList = new ArrayList<>();
|
||||||
|
|
||||||
|
public RenamingClassLoader(URL[] urls, ClassLoader parent) {
|
||||||
|
super(urls, parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void rename(String prefix, String to) {
|
||||||
|
renameList.add(new Rename(prefix, to));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Class<?> findClass(String name) throws ClassNotFoundException {
|
||||||
|
try {
|
||||||
|
return getParent().loadClass(name);
|
||||||
|
} catch (ClassNotFoundException e) {
|
||||||
|
// continue
|
||||||
|
}
|
||||||
|
|
||||||
|
try (InputStream input = getResourceAsStream(name.replace('.', '/') + ".class")) {
|
||||||
|
ClassReader classReader = new ClassReader(input);
|
||||||
|
ClassWriter writer = new ClassWriter(0);
|
||||||
|
RenamingVisitor visitor = new RenamingVisitor(writer);
|
||||||
|
for (Rename rename : renameList) {
|
||||||
|
visitor.rename(rename.prefix, rename.to);
|
||||||
|
}
|
||||||
|
classReader.accept(visitor, 0);
|
||||||
|
byte[] data = writer.toByteArray();
|
||||||
|
return defineClass(name, data, 0, data.length);
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new ClassNotFoundException(name, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static class Rename {
|
||||||
|
final String prefix;
|
||||||
|
final String to;
|
||||||
|
|
||||||
|
Rename(String prefix, String to) {
|
||||||
|
this.prefix = prefix;
|
||||||
|
this.to = to;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,287 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Alexey Andreev.
|
||||||
|
*
|
||||||
|
* Licensed 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.teavm.idea.jps;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
import org.teavm.asm.AnnotationVisitor;
|
||||||
|
import org.teavm.asm.ClassVisitor;
|
||||||
|
import org.teavm.asm.FieldVisitor;
|
||||||
|
import org.teavm.asm.Handle;
|
||||||
|
import org.teavm.asm.Label;
|
||||||
|
import org.teavm.asm.MethodVisitor;
|
||||||
|
import org.teavm.asm.Opcodes;
|
||||||
|
import org.teavm.asm.Type;
|
||||||
|
import org.teavm.asm.TypePath;
|
||||||
|
|
||||||
|
public class RenamingVisitor extends ClassVisitor {
|
||||||
|
private List<Rename> renameList = new ArrayList<>();
|
||||||
|
|
||||||
|
public RenamingVisitor(ClassVisitor inner) {
|
||||||
|
super(Opcodes.ASM5, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void rename(String prefix, String newName) {
|
||||||
|
renameList.add(new Rename(prefix, newName));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) {
|
||||||
|
for (int i = 0; i < interfaces.length; ++i) {
|
||||||
|
interfaces[i] = renameClass(interfaces[i]);
|
||||||
|
}
|
||||||
|
super.visit(version, access, name, signature, renameClass(superName), interfaces);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
return new RenamingAnnotationVisitor(super.visitAnnotation(desc, visible));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitTypeAnnotation(int typeRef, TypePath typePath, String desc, boolean visible) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
return new RenamingAnnotationVisitor(super.visitTypeAnnotation(typeRef, typePath, desc, visible));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
|
||||||
|
desc = renameMethodDesc(desc);
|
||||||
|
return new RenamingMethodVisitor(super.visitMethod(access, name, desc, signature, exceptions));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) {
|
||||||
|
return new RenamingFieldVisitor(super.visitField(access, name, renameValueDesc(desc), signature, value));
|
||||||
|
}
|
||||||
|
|
||||||
|
class RenamingMethodVisitor extends MethodVisitor {
|
||||||
|
RenamingMethodVisitor(MethodVisitor inner) {
|
||||||
|
super(Opcodes.ASM5, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start,
|
||||||
|
Label[] end, int[] index, String desc, boolean visible) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
return new RenamingAnnotationVisitor(super.visitLocalVariableAnnotation(typeRef, typePath,
|
||||||
|
start, end, index, desc, visible));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
|
||||||
|
return new RenamingAnnotationVisitor(super.visitAnnotation(desc, visible));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitAnnotationDefault() {
|
||||||
|
return new RenamingAnnotationVisitor(super.visitAnnotationDefault());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitInsnAnnotation(int typeRef, TypePath typePath, String desc, boolean visible) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
return new RenamingAnnotationVisitor(super.visitInsnAnnotation(typeRef, typePath, desc, visible));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitParameterAnnotation(int parameter, String desc, boolean visible) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
return new RenamingAnnotationVisitor(super.visitParameterAnnotation(parameter, desc, visible));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitTryCatchAnnotation(int typeRef, TypePath typePath, String desc, boolean visible) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
return new RenamingAnnotationVisitor(super.visitTryCatchAnnotation(typeRef, typePath, desc, visible));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitTypeAnnotation(int typeRef, TypePath typePath, String desc, boolean visible) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
return new RenamingAnnotationVisitor(super.visitTypeAnnotation(typeRef, typePath, desc, visible));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visitFieldInsn(int opcode, String owner, String name, String desc) {
|
||||||
|
owner = renameClass(owner);
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
super.visitFieldInsn(opcode, owner, name, desc);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visitLdcInsn(Object cst) {
|
||||||
|
if (cst instanceof Type) {
|
||||||
|
cst = Type.getType(renameType((Type) cst));
|
||||||
|
}
|
||||||
|
super.visitLdcInsn(cst);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
super.visitLocalVariable(name, desc, signature, start, end, index);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) {
|
||||||
|
owner = renameClass(owner);
|
||||||
|
desc = renameMethodDesc(desc);
|
||||||
|
super.visitMethodInsn(opcode, owner, name, desc, itf);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visitTypeInsn(int opcode, String type) {
|
||||||
|
if (type.startsWith("[")) {
|
||||||
|
type = renameValueDesc(type);
|
||||||
|
} else {
|
||||||
|
type = renameClass(type);
|
||||||
|
}
|
||||||
|
super.visitTypeInsn(opcode, type);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visitTryCatchBlock(Label start, Label end, Label handler, String type) {
|
||||||
|
type = renameClass(type);
|
||||||
|
super.visitTryCatchBlock(start, end, handler, type);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) {
|
||||||
|
for (int i = 0; i < local.length; ++i) {
|
||||||
|
if (local[i] instanceof String) {
|
||||||
|
local[i] = renameClass((String) local[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int i = 0; i < stack.length; ++i) {
|
||||||
|
if (stack[i] instanceof String) {
|
||||||
|
stack[i] = renameClass((String) stack[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
super.visitFrame(type, nLocal, local, nStack, stack);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visitInvokeDynamicInsn(String name, String desc, Handle bsm, Object... bsmArgs) {
|
||||||
|
desc = renameMethodDesc(desc);
|
||||||
|
bsm = renameHandle(bsm);
|
||||||
|
for (int i = 0; i < bsmArgs.length; ++i) {
|
||||||
|
Object arg = bsmArgs[i];
|
||||||
|
if (arg instanceof Type) {
|
||||||
|
arg = Type.getType(renameType((Type) arg));
|
||||||
|
} else if (arg instanceof Handle) {
|
||||||
|
arg = renameHandle((Handle) arg);
|
||||||
|
}
|
||||||
|
bsmArgs[i] = arg;
|
||||||
|
}
|
||||||
|
super.visitInvokeDynamicInsn(name, desc, bsm, bsmArgs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RenamingFieldVisitor extends FieldVisitor {
|
||||||
|
RenamingFieldVisitor(FieldVisitor inner) {
|
||||||
|
super(Opcodes.ASM5, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
return new RenamingAnnotationVisitor(super.visitAnnotation(desc, visible));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitTypeAnnotation(int typeRef, TypePath typePath, String desc, boolean visible) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
return new RenamingAnnotationVisitor(super.visitTypeAnnotation(typeRef, typePath, desc, visible));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RenamingAnnotationVisitor extends AnnotationVisitor {
|
||||||
|
RenamingAnnotationVisitor(AnnotationVisitor inner) {
|
||||||
|
super(Opcodes.ASM5, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitArray(String name) {
|
||||||
|
return new RenamingAnnotationVisitor(super.visitArray(name));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnnotationVisitor visitAnnotation(String name, String desc) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
return new RenamingAnnotationVisitor(super.visitAnnotation(name, desc));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void visitEnum(String name, String desc, String value) {
|
||||||
|
desc = renameValueDesc(desc);
|
||||||
|
super.visitEnum(name, desc, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private String renameClass(String className) {
|
||||||
|
if (className == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
for (Rename rename : renameList) {
|
||||||
|
if (className.startsWith(rename.prefix)) {
|
||||||
|
return rename.renameTo + className.substring(rename.prefix.length());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return className;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Handle renameHandle(Handle handle) {
|
||||||
|
String desc = handle.getDesc();
|
||||||
|
desc = desc.startsWith("(") ? renameMethodDesc(desc) : renameValueDesc(desc);
|
||||||
|
return new Handle(handle.getTag(), renameClass(handle.getOwner()), handle.getName(), desc);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String renameValueDesc(String desc) {
|
||||||
|
return renameType(Type.getType(desc));
|
||||||
|
}
|
||||||
|
|
||||||
|
private String renameMethodDesc(String desc) {
|
||||||
|
return renameType(Type.getMethodType(desc));
|
||||||
|
}
|
||||||
|
|
||||||
|
private String renameType(Type type) {
|
||||||
|
switch (type.getSort()) {
|
||||||
|
case Type.ARRAY:
|
||||||
|
return "[" + renameType(type.getElementType());
|
||||||
|
case Type.METHOD:
|
||||||
|
return "(" + Arrays.stream(type.getArgumentTypes()).map(this::renameType)
|
||||||
|
.collect(Collectors.joining("")) + ")" + renameType(type.getReturnType());
|
||||||
|
case Type.OBJECT:
|
||||||
|
return "L" + renameClass(type.getInternalName()) + ";";
|
||||||
|
default:
|
||||||
|
return type.getDescriptor();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static class Rename {
|
||||||
|
final String prefix;
|
||||||
|
final String renameTo;
|
||||||
|
|
||||||
|
Rename(String prefix, String renameTo) {
|
||||||
|
this.prefix = prefix;
|
||||||
|
this.renameTo = renameTo;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -24,7 +24,6 @@ import java.io.InputStreamReader;
|
||||||
import java.io.Reader;
|
import java.io.Reader;
|
||||||
import java.net.MalformedURLException;
|
import java.net.MalformedURLException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.net.URLClassLoader;
|
|
||||||
import java.util.ArrayDeque;
|
import java.util.ArrayDeque;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
@ -488,7 +487,9 @@ class TeaVMBuild {
|
||||||
}
|
}
|
||||||
}).toArray(URL[]::new);
|
}).toArray(URL[]::new);
|
||||||
|
|
||||||
return new URLClassLoader(urls, TeaVMBuilder.class.getClassLoader());
|
RenamingClassLoader classLoader = new RenamingClassLoader(urls, TeaVMBuilder.class.getClassLoader());
|
||||||
|
classLoader.rename("org/objectweb/asm/", "org/teavm/asm/");
|
||||||
|
return classLoader;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void buildClassPath(JpsModule module, Set<JpsModule> visited) {
|
private void buildClassPath(JpsModule module, Set<JpsModule> visited) {
|
||||||
|
|
|
@ -3,16 +3,13 @@
|
||||||
cat <<EOF >.idea-repository.xml
|
cat <<EOF >.idea-repository.xml
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin id="org.teavm.idea" url="https://dl.bintray.com/konsoletyper/teavm/org/teavm/teavm-idea-plugin/$NEW_VERSION/teavm-idea-plugin-$NEW_VERSION.zip" version="$NEW_VERSION">
|
<plugin id="org.teavm.idea" url="https://dl.bintray.com/konsoletyper/teavm/org/teavm/teavm-idea/$NEW_VERSION/:teavm-idea-$NEW_VERSION.zip" version="$NEW_VERSION">
|
||||||
<idea-version since-build="163.12024.16" until-build="172.*" />
|
<idea-version since-build="163.12024.16" until-build="172.*" />
|
||||||
<description>TeaVM support</description>
|
<description>TeaVM support</description>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
ftp -nv $TEAVM_FTP_HOST <<EOF
|
curl --ftp-create-dirs -T .idea-repository.xml \
|
||||||
quot USER $TEAVM_FTP_LOGIN
|
-u $TEAVM_FTP_USER:$TEAVM_FTP_PASSWORD \
|
||||||
quot PASS $TEAVM_FTP_PASSWORD
|
ftp://$TEAVM_FTP_HOST/httpdocs/idea/dev/teavmRepository.xml
|
||||||
put .idea-repository.xml httpdocs/idea/dev/teavmRepository.xml
|
|
||||||
quit
|
|
||||||
EOF
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user