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

act.aaa.model.AAAObjectBaseEnhancer Maven / Gradle / Ivy

package act.aaa.model;

/*-
 * #%L
 * ACT AAA Plugin
 * %%
 * Copyright (C) 2015 - 2019 ActFramework
 * %%
 * 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.
 * #L%
 */

import act.asm.AnnotationVisitor;
import act.asm.ClassVisitor;
import act.asm.FieldVisitor;
import act.util.AppByteCodeEnhancer;
import org.osgl.$;

/**
 * Add {@link javax.persistence.MappedSuperclass} to
 * {@link org.osgl.aaa.impl.AAAObjectBase}
 */
public class AAAObjectBaseEnhancer extends AppByteCodeEnhancer {

    private static final $.Predicate PREDICATE = new $.Predicate() {
        @Override
        public boolean test(String s) {
            return s.equalsIgnoreCase("org.osgl.aaa.impl.AAAObjectBase")
                    || s.startsWith("org.osgl.aaa.impl.SimpleP")
                    ||s.startsWith("org.osgl.aaa.impl.SimpleR");
        }
    };

    public AAAObjectBaseEnhancer() {
        super(PREDICATE);
    }

    public AAAObjectBaseEnhancer(ClassVisitor cv) {
        super(PREDICATE, cv);
    }

    @Override
    protected Class subClass() {
        return AAAObjectBaseEnhancer.class;
    }

    @Override
    public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) {
        FieldVisitor fv = super.visitField(access, name, desc, signature, value);
        if (name.equals("props") || name.equals("implied")) {
            return new FieldVisitor(ASM5, fv) {
                @Override
                public void visitEnd() {
                    super.visitEnd();
                    visitAnnotation("Ljavax/persistence/Transient;", true);
                }
            };
        }
        return fv;
    }

    @Override
    public void visitEnd() {
        visitAnnotation("Ljavax/persistence/MappedSuperclass;", true);
        super.visitEnd();
    }

    @Override
    public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
        return super.visitAnnotation(desc, visible);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy