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

com.github.dm.jrt.proxy.annotation.Proxy Maven / Gradle / Ivy

/*
 * 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 com.github.dm.jrt.proxy.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * This annotation is used to indicate interfaces used as templates to generate proxy classes
 * enabling asynchronous calls of the target instance methods.
* The target class is specified in the annotation value. A proxy class implementing the annotated * interface will be generated according to the specific annotation attributes. *

* The routines used for calling the methods will honor the attributes specified in any optional * {@code com.github.dm.jrt.annotation.*} annotations defined for each interface method. *

* Special care must be taken when dealing with proxies of generic classes. First of all, the * proxy interface must declare the same generic types as the wrapped class or interface. * Additionally, the generic parameters must be declared as {@code Object} in order for the proxy * interface methods to match the target ones.
* Be also aware that it is responsibility of the caller to ensure that the same instance is not * wrapped around two different generic interfaces.
* For example, a class of the type: *

 *     
 *
 *             public class MyList<TYPE> {
 *
 *                 private final ArrayList<TYPE> mList = new ArrayList<TYPE>();
 *
 *                 public void add(final TYPE element) {
 *
 *                     mList.add(element);
 *                 }
 *
 *                 public TYPE get(final int i) {
 *
 *                     return mList.get(i);
 *                 }
 *             }
 *     
 * 
* can be correctly wrapped by an interface of the type: *
 *     
 *
 *             @Proxy(MyList.class)
 *             public interface MyListAsync<TYPE> {
 *
 *                 void add(Object element);
 *
 *                 TYPE get(int i);
 *
 *                 @Alias("get")
 *                 @Output
 *                 OutputChannel<TYPE> getAsync(int i);
 *
 *                 @Alias("get")
 *                 @Output(OutputMode.COLLECTION)
 *                 List<TYPE> getList(int i);
 *             }
 *     
 * 
*

* Remember also that, in order for the annotation to properly work at run time, you will need to * add the following rules to your Proguard file (if employing it for shrinking or obfuscation): *

 *     
 *
 *         -keepattributes RuntimeVisibleAnnotations
 *
 *         -keepclassmembers class ** {
 *              @com.github.dm.jrt.proxy.annotation.Proxy *;
 *         }
 *     
 * 
* Be sure also to include a proper rule in your Proguard file, so to keep the name of all the * classes implementing the specific mirror interface, like, for example: *
 *     
 *
 *         -keep public class * extends my.mirror.Interface {
 *              public <init>;
 *         }
 *     
 * 
*

* Created by davide-maestroni on 11/03/2014. * * @see com.github.dm.jrt.annotation Annotations */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface Proxy { /** * Constant indicating a default class name or package. */ String DEFAULT = "*"; /** * Constant indicating the default generated class name prefix. */ String DEFAULT_CLASS_PREFIX = "Proxy_"; /** * Constant indicating the default generated class name suffix. */ String DEFAULT_CLASS_SUFFIX = ""; /** * The generated class name. By default the name is obtained by the interface simple name, * prepending all the outer class names in case it is not a top level class. *

* For instance, an interface named MyItf defined inside a class named * MyClass, will result in the generation of a class named * Proxy_MyClass_MyItf. * * @return the class name. */ String className() default DEFAULT; /** * The generated class package. By default it is the same as the interface one. * * @return the package. */ String classPackage() default DEFAULT; /** * The generated class name prefix. * * @return the name prefix. */ String classPrefix() default DEFAULT_CLASS_PREFIX; /** * The generated class name suffix. * * @return the name suffix. */ String classSuffix() default DEFAULT_CLASS_SUFFIX; /** * The wrapped class. * * @return the class. */ Class value(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy