All Downloads are FREE. Search and download functionalities are using the official Maven repository.

instrumentation.AddMethods Maven / Gradle / Ivy

/*
 * Copyright (c) 2017, 2020, Oracle and/or its affiliates.
 *
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License, version 2.0, as published by the
 * Free Software Foundation.
 *
 * This program is also distributed with certain software (including but not
 * limited to OpenSSL) that is licensed under separate terms, as designated in a
 * particular file or component or in included license documentation. The
 * authors of MySQL hereby grant you an additional permission to link the
 * program and your derivative works with the separately licensed software that
 * they have included with MySQL.
 *
 * Without limiting anything contained in the foregoing, this file, which is
 * part of MySQL Connector/J, is also subject to the Universal FOSS Exception,
 * version 1.0, a copy of which can be found at
 * http://oss.oracle.com/licenses/universal-foss-exception.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
 * for more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
 */

package instrumentation;

import java.util.Collection;

import software.aws.rds.jdbc.mysql.shading.com.mysql.cj.conf.BooleanPropertyDefinition;
import software.aws.rds.jdbc.mysql.shading.com.mysql.cj.conf.EnumPropertyDefinition;
import software.aws.rds.jdbc.mysql.shading.com.mysql.cj.conf.IntegerPropertyDefinition;
import software.aws.rds.jdbc.mysql.shading.com.mysql.cj.conf.LongPropertyDefinition;
import software.aws.rds.jdbc.mysql.shading.com.mysql.cj.conf.MemorySizePropertyDefinition;
import software.aws.rds.jdbc.mysql.shading.com.mysql.cj.conf.PropertyDefinition;
import software.aws.rds.jdbc.mysql.shading.com.mysql.cj.conf.PropertyDefinitions;
import software.aws.rds.jdbc.mysql.shading.com.mysql.cj.conf.StringPropertyDefinition;
import software.aws.rds.jdbc.mysql.shading.com.mysql.cj.jdbc.MysqlDataSource;

import javassist.ClassPool;
import javassist.CtClass;
import javassist.CtMethod;
import javassist.CtNewMethod;
import javassist.bytecode.DuplicateMemberException;

public class AddMethods {
    private static boolean verbose = false;

    public static void main(String[] args) throws Exception {

        System.out.println("Applying AddMethods.");

        verbose = "true".equalsIgnoreCase(args[1]);

        ClassPool pool = ClassPool.getDefault();
        pool.insertClassPath(args[0]);

        sysOut("---");
        CtClass clazz = pool.get(MysqlDataSource.class.getName());
        sysOut("Add properties setters/getters to " + clazz.getName());
        addPropertiesGettersSetters(clazz, PropertyDefinitions.PROPERTY_KEY_TO_PROPERTY_DEFINITION.values());
        clazz.writeFile(args[0]);

    }

    private static void sysOut(String s) {
        if (verbose) {
            System.out.println(s);
        }
    }

    private static void addPropertiesGettersSetters(CtClass clazz, Collection> propertyDefinitions) throws Exception {
        for (PropertyDefinition def : propertyDefinitions) {
            if (def.getCategory().equals(PropertyDefinitions.CATEGORY_XDEVAPI)) {
                continue;
            }
            String pname = def.hasCcAlias() ? def.getCcAlias() : def.getName();

            if (def instanceof StringPropertyDefinition) {
                addGetter(clazz, pname, String.class.getName(), "getStringRuntimeProperty");
                addSetter(clazz, pname, String.class.getName(), "setStringRuntimeProperty");

            } else if (def instanceof BooleanPropertyDefinition) {
                addGetter(clazz, pname, Boolean.TYPE.getName(), "getBooleanRuntimeProperty");
                addSetter(clazz, pname, Boolean.TYPE.getName(), "setBooleanRuntimeProperty");

            } else if (def instanceof IntegerPropertyDefinition) {
                addGetter(clazz, pname, Integer.TYPE.getName(), "getIntegerRuntimeProperty");
                addSetter(clazz, pname, Integer.TYPE.getName(), "setIntegerRuntimeProperty");

            } else if (def instanceof LongPropertyDefinition) {
                addGetter(clazz, pname, Long.TYPE.getName(), "getLongRuntimeProperty");
                addSetter(clazz, pname, Long.TYPE.getName(), "setLongRuntimeProperty");

            } else if (def instanceof MemorySizePropertyDefinition) {
                addGetter(clazz, pname, Integer.TYPE.getName(), "getMemorySizeRuntimeProperty");
                addSetter(clazz, pname, Integer.TYPE.getName(), "setMemorySizeRuntimeProperty");

            } else if (def instanceof EnumPropertyDefinition) {
                addGetter(clazz, pname, String.class.getName(), "getEnumRuntimeProperty");
                addSetter(clazz, pname, "java.lang.String", "setEnumRuntimeProperty");

            } else {
                throw new Exception("Unknown " + def.getName() + " property type.");
            }
        }
    }

    private static void addGetter(CtClass clazz, String pname, String paramType, String getPropertyMethod) throws Exception {
        String mname = "get" + pname.substring(0, 1).toUpperCase() + pname.substring(1);
        String mbody = "public " + paramType + " " + mname + "() throws java.sql.SQLException { return " + getPropertyMethod + "(\"" + pname + "\");}";
        sysOut(mbody);
        try {
            CtMethod m = CtNewMethod.make(mbody, clazz);
            clazz.addMethod(m);
            sysOut(m.toString());
        } catch (DuplicateMemberException ex) {
            // ignore
        }
    }

    private static void addSetter(CtClass clazz, String pname, String paramType, String setPropertyMethod) throws Exception {
        String mname = "set" + pname.substring(0, 1).toUpperCase() + pname.substring(1);
        String mbody = "public void " + mname + "(" + paramType + " value) throws java.sql.SQLException { " + setPropertyMethod + "(\"" + pname
                + "\", value);}";
        sysOut(mbody);
        try {
            CtMethod m = CtNewMethod.make(mbody, clazz);
            clazz.addMethod(m);
            sysOut(m.toString());
        } catch (DuplicateMemberException ex) {
            // ignore
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy