com.baidu.bjf.remoting.protobuf.utils.compiler.CacheableJdkCompiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jprotobuf Show documentation
Show all versions of jprotobuf Show documentation
A useful utility library for java programmer using google protobuf.
/*
* Copyright (c) Baidu Inc. All rights reserved.
*
* 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 com.baidu.bjf.remoting.protobuf.utils.compiler;
import java.io.OutputStream;
import com.baidu.bjf.remoting.protobuf.utils.ClassHelper;
/**
* Cacheable support compiler.
*
* @author xiemalin
* @since 1.8.6
*/
public abstract class CacheableJdkCompiler implements Compiler {
/** The compiler. */
protected Compiler compiler;
/**
* Instantiates a new cacheable jdk compiler.
*
* @param compiler the compiler
*/
public CacheableJdkCompiler(Compiler compiler) {
this.compiler = compiler;
}
/*
* (non-Javadoc)
*
* @see com.baidu.bjf.remoting.protobuf.utils.compiler.Compiler#compile(java.lang.String, java.lang.String,
* java.lang.ClassLoader, java.io.OutputStream, long)
*/
@Override
public Class> compile(String className, String code, ClassLoader classLoader, OutputStream os, long timestamp) {
Class> cls = null;
try {
cls = ClassHelper.forName(className, classLoader);
} catch (ClassNotFoundException e) {
// ignore this exception
} catch (LinkageError e) {
// ignore this exception
}
if (cls != null) {
return cls;
}
// to check cache
byte[] bytes = cached(className, timestamp);
// if has cached and timestamp is not changed will return a not null byte array
if (bytes != null) {
LoadableClassLoader loadableClassLoader = new LoadableClassLoader(classLoader);
loadableClassLoader.defineNewClass(className, bytes, 0, bytes.length);
try {
return loadableClassLoader.loadClass(className);
} catch (ClassNotFoundException e) {
// ignore this exception
}
}
cls = compiler.compile(className, code, classLoader, os, timestamp);
cache(className, compiler.loadBytes(className), timestamp);
return cls;
}
/**
* Cached.
*
* @param className the class name
* @param timestamp the timestamp
* @return the byte[]
*/
protected abstract byte[] cached(String className, long timestamp);
/**
* Cache.
*
* @param className the class name
* @param bytes the bytes
* @param timestamp the timestamp
*/
protected abstract void cache(String className, byte[] bytes, long timestamp);
/**
* The Class LoadableClassLoader.
*/
protected static class LoadableClassLoader extends ClassLoader {
/**
* Instantiates a new loadable class loader.
*
* @param parent the parent
*/
protected LoadableClassLoader(ClassLoader parent) {
super(parent);
}
/**
* Define new class.
*
* @param name the name
* @param b the b
* @param off the off
* @param len the len
*/
public void defineNewClass(String name, byte[] b, int off, int len) {
defineClass(name, b, off, len);
}
}
}