代理

写在前面的话

动态代理,很早就听过了,在很多框架源码中都能看到proxy的影子,显然他对于我们来说,很重要。学习代理基于两个方面的原因,我在这里分享一下。

  • 一次面试,面试提出一个问题,有一个toString方法,我怎么在之前和之后做一些事情。当时我有些懵,其实,在实际开发中,这是可以办到的。

  • 在一次Android公开课,讲师带领我们写网络访问框架,我突然意识到proxy真的很重要。

基于此,故来学习proxy,如果你还没有学习,那正好。如果你学习,但还是有些迷茫,不知道如何使用,那你也来看看吧。诚然我也是初学者,但这并不能阻止我们能一起探讨proxy的世界。

常见的代理模式

  • 远程代理

  • 虚拟代理

  • 保护代理

  • 智能引用代理

下面,通过静态代理和动态代理来实现能能引用代理代理

场景描述

我们记录一辆车在行驶过程中的一些数据,比如纪录日志,计算行驶时间……

super

这个demo我们通过super这个关键字来实现

@Override
public void move() {
    System.out.println("行驶前");
    long startTime = System.currentTimeMillis();
    
    super.move();

    long endTime = System.currentTimeMillis();
    System.out.println("行驶结束");
    long time = endTime - startTime;
    System.out.println("行驶的时间 " + time + "ms");
}

测试:


super-test.png

会写Android的兄弟都知道super这个家伙经常见到。

simple

这是一个简单的静态代理实例

obj

我们通过代理对象来实现

这里我们需要在行驶中,纪录日志。我们通过代理对象的方式来实现,显然日记代理类和时间时间代理类大致差不多,所以,我们来看下 TimeProxy

package com.fengwenyi.demo.proxy.obj;

/**
 * @author Wenyi Feng
 */
public class TimeProxy implements IMoveable {

    private IMoveable m;

    public TimeProxy(IMoveable m) {
        this.m = m;
    }

    @Override
    public void move() {
        System.out.println("行驶前");
        long startTime = System.currentTimeMillis();

        m.move();

        long endTime = System.currentTimeMillis();
        System.out.println("行驶结束");
        long time = endTime - startTime;
        System.out.println("行驶的时间 " + time + "ms");
    }
}

测试:

    Car car = new Car();

    LogProxy logProxy = new LogProxy(car);
    TimeProxy timeProxy = new TimeProxy(logProxy);

    timeProxy.move();
time-log.png

动态代理

上面的例子,是不是感觉我们写的代理很厉害,哈哈!现在有这样一个问题,我们的基类是Car,如果要有其他类,那应该怎么办呢?因此我们有必要学习一下动态代理。

我们先来写一个TimeHandler(注意:测试代码在资料里面,这里仅看部分代码):

/**
 *
 * @param proxy 被代理对象
 * @param method 被代理的方法
 * @param args 被理的参数
 * @return Object方法的返回值
 * @throws Throwable
 */
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
    System.out.println("行驶前");
    long startTime = System.currentTimeMillis();

    method.invoke(target);

    long endTime = System.currentTimeMillis();
    System.out.println("行驶结束");
    long time = endTime - startTime;
    System.out.println("行驶的时间 " + time + "ms");

    return null;
}

我们再来写测试代码:

    Car car = new Car();
    InvocationHandler h = new TimeHandler(car);
    Class<?> cls = car.getClass();
    /**
     * newProxyInstance(ClassLoader loader,
     *                  Class<?>[] interfaces,
     *                  InvocationHandler h)
     * loader 类加载器
     * interfaces 实现接口
     * h InvocationHandler
     */
    IMoveable moveable = (IMoveable) Proxy.newProxyInstance(cls.getClassLoader(),
                                                            cls.getInterfaces(),
                                                            h);
    moveable.move();

就这样我们也就完成了jdk动态代理的实例代码。我们来总结一下:

1、创建一个实现接口InvocationHandler的类,并实现它的invoke方法。

2、创建被代理的类 和 接口。

3、调用Proxy的静态方法,创建一个静态代理类。

4、通过代理调用方法

显然,jdk动态代理类是基于接口的方法来实现代理。而类的代理是CGLIB。这样我们也就明白在代码里面写接口的用途了,是不是也能明白Spring AOP模块了,当然,可能他还是很复杂的。到学习Spring系列的时候,我们再来研究他。

jdk动态代理

温馨提示:

jdk动态代理非常强大,著名的Spring AOP模块,我估计就基于此。所以,我们有必要花一定的时间来学一下源码,看一下Proxy是如何实现的。

我们首先来看 newProxyInstance

    public static Object newProxyInstance(ClassLoader loader,
                                          Class<?>[] interfaces,
                                          InvocationHandler h)
        throws IllegalArgumentException
    {
        Objects.requireNonNull(h);

        final Class<?>[] intfs = interfaces.clone();
        final SecurityManager sm = System.getSecurityManager();
        if (sm != null) {
            checkProxyAccess(Reflection.getCallerClass(), loader, intfs);
        }

        /*
         * Look up or generate the designated proxy class.
         */
        Class<?> cl = getProxyClass0(loader, intfs);

        /*
         * Invoke its constructor with the designated invocation handler.
         */
        try {
            if (sm != null) {
                checkNewProxyPermission(Reflection.getCallerClass(), cl);
            }

            final Constructor<?> cons = cl.getConstructor(constructorParams);
            final InvocationHandler ih = h;
            if (!Modifier.isPublic(cl.getModifiers())) {
                AccessController.doPrivileged(new PrivilegedAction<Void>() {
                    public Void run() {
                        cons.setAccessible(true);
                        return null;
                    }
                });
            }
            return cons.newInstance(new Object[]{h});
        } catch (IllegalAccessException|InstantiationException e) {
            throw new InternalError(e.toString(), e);
        } catch (InvocationTargetException e) {
            Throwable t = e.getCause();
            if (t instanceof RuntimeException) {
                throw (RuntimeException) t;
            } else {
                throw new InternalError(t.toString(), t);
            }
        } catch (NoSuchMethodException e) {
            throw new InternalError(e.toString(), e);
        }
    }

你一定留意到这一段代码Class<?> cl = getProxyClass0(loader, intfs);,显然是生成class的地方,我们来看下代码:

    private static Class<?> getProxyClass0(ClassLoader loader,
                                           Class<?>... interfaces) {
        if (interfaces.length > 65535) {
            throw new IllegalArgumentException("interface limit exceeded");
        }

        // If the proxy class defined by the given loader implementing
        // the given interfaces exists, this will simply return the cached copy;
        // otherwise, it will create the proxy class via the ProxyClassFactory
        return proxyClassCache.get(loader, interfaces);
    }

显然,这里使用了缓存(WeakCache),这不是我们的重点,注意注释里面最后一个词 ProxyClassFactory,好吧我们去看一下:

    /**
     * A factory function that generates, defines and returns the proxy class given
     * the ClassLoader and array of interfaces.
     */
    private static final class ProxyClassFactory
        implements BiFunction<ClassLoader, Class<?>[], Class<?>>
    {
        // prefix for all proxy class names
        private static final String proxyClassNamePrefix = "$Proxy";

        // next number to use for generation of unique proxy class names
        private static final AtomicLong nextUniqueNumber = new AtomicLong();

        @Override
        public Class<?> apply(ClassLoader loader, Class<?>[] interfaces) {

            Map<Class<?>, Boolean> interfaceSet = new IdentityHashMap<>(interfaces.length);
            for (Class<?> intf : interfaces) {
                /*
                 * Verify that the class loader resolves the name of this
                 * interface to the same Class object.
                 */
                Class<?> interfaceClass = null;
                try {
                    interfaceClass = Class.forName(intf.getName(), false, loader);
                } catch (ClassNotFoundException e) {
                }
                if (interfaceClass != intf) {
                    throw new IllegalArgumentException(
                        intf + " is not visible from class loader");
                }
                /*
                 * Verify that the Class object actually represents an
                 * interface.
                 */
                if (!interfaceClass.isInterface()) {
                    throw new IllegalArgumentException(
                        interfaceClass.getName() + " is not an interface");
                }
                /*
                 * Verify that this interface is not a duplicate.
                 */
                if (interfaceSet.put(interfaceClass, Boolean.TRUE) != null) {
                    throw new IllegalArgumentException(
                        "repeated interface: " + interfaceClass.getName());
                }
            }

            String proxyPkg = null;     // package to define proxy class in
            int accessFlags = Modifier.PUBLIC | Modifier.FINAL;

            /*
             * Record the package of a non-public proxy interface so that the
             * proxy class will be defined in the same package.  Verify that
             * all non-public proxy interfaces are in the same package.
             */
            for (Class<?> intf : interfaces) {
                int flags = intf.getModifiers();
                if (!Modifier.isPublic(flags)) {
                    accessFlags = Modifier.FINAL;
                    String name = intf.getName();
                    int n = name.lastIndexOf('.');
                    String pkg = ((n == -1) ? "" : name.substring(0, n + 1));
                    if (proxyPkg == null) {
                        proxyPkg = pkg;
                    } else if (!pkg.equals(proxyPkg)) {
                        throw new IllegalArgumentException(
                            "non-public interfaces from different packages");
                    }
                }
            }

            if (proxyPkg == null) {
                // if no non-public proxy interfaces, use com.sun.proxy package
                proxyPkg = ReflectUtil.PROXY_PACKAGE + ".";
            }

            /*
             * Choose a name for the proxy class to generate.
             */
            long num = nextUniqueNumber.getAndIncrement();
            String proxyName = proxyPkg + proxyClassNamePrefix + num;

            /*
             * Generate the specified proxy class.
             */
            byte[] proxyClassFile = ProxyGenerator.generateProxyClass(
                proxyName, interfaces, accessFlags);
            try {
                return defineClass0(loader, proxyName,
                                    proxyClassFile, 0, proxyClassFile.length);
            } catch (ClassFormatError e) {
                /*
                 * A ClassFormatError here means that (barring bugs in the
                 * proxy class generation code) there was some other
                 * invalid aspect of the arguments supplied to the proxy
                 * class creation (such as virtual machine limitations
                 * exceeded).
                 */
                throw new IllegalArgumentException(e.toString());
            }
        }
    }

这一段的代码大概的意思是,他为我们建一个新的类,通过字节码,全类名大概是com.sun.proxy.$Proxy0,这个是可以一次增加的,但是是有个数限制的,并且他集成了Proxy,实现了我们写的接口(如IMoveable)。

代理类写好之后,调用Constructor.newInstance(Object ... initargs)方法返回代理类实例。就这样代理过程就算结束。

后记

先就这样吧,改天再来

资料

1、模式的秘密---代理模式

2、proxy-demo

3、细说JDK动态代理的实现原理

学习图片

S80508-010917.jpg
S80508-010936.jpg
S80508-010957.jpg
S80508-011730.jpg
S80508-012052.jpg
S80508-012219.jpg
S80508-012747.jpg
S80508-012843.jpg
S80508-013519.jpg
S80508-013821.jpg
S80508-014528.jpg
S80508-014725.jpg
S80508-015214.jpg
S80508-135611.jpg
S80509-205335.jpg
S80509-205442.jpg
S80509-205517.jpg
S80509-205531.jpg
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容