美文网首页
Android AOP面向切面架构设计

Android AOP面向切面架构设计

作者: 佼佼者Mr | 来源:发表于2019-12-20 18:00 被阅读0次

1.概念

  什么是AOP? Aspect Oriented Programming的缩写。意为:面向切面编程。是oop的延续。通过预编译和动态代理来实现程序的功能,统一维护的一种技术。AOP可以对业务逻辑的各个部分进行分离,从而使业务逻辑之间的耦合度降低。提高程序的可重用性。

动态代理

动态代理


预编译方式

预编译方式

如何理解切面,把需要的抽取的相同的功能业务抽取出来。

验证用户

取款,查询,转账每一步不同的功能都有验证用户的需求,就可以把验证用户抽取出来做成切面。

动态代理模式

利用动态代理做切面

预编译模式--面向切面思想之集中式登录思想架构

采用预编译模式由java文件编译成class文件就不能采用javac,而是要用AspectJ来代替。

AspectJ需要注意的是as和gradle版本。

as3.0.1 gradle4.4-all,这个版本需要配置ndk r17.

as3.2.1 gradle4.6-all,

as3.4.0 gradle5.1.1-all,这个版本会有api过时的警告

集成AspectJ步骤:

1.在project gradle中加入AspectJ classpath

dependencies {

classpath'com.android.tools.build:gradle:3.2.1'

    // NOTE: Do not place your application dependencies here; they belong

  // in the individual module build.gradle files

    classpath'org.aspectj:aspectjtools:1.8.9'

    classpath'org.aspectj:aspectjweaver:1.8.9'

}

2.在module gradle中主要有三部

  1.buildscript {//编译时需要用AspectJ专门的编译器

    repositories {

mavenCentral()

}

dependencies {

// NOTE: Do not place your application dependencies here; they belong

// in the individual module build.gradle files

        classpath'org.aspectj:aspectjtools:1.8.9'

        classpath'org.aspectj:aspectjweaver:1.8.9'

    }

}

2.添加依赖

dependencies {

implementation fileTree(dir:'libs',include: ['*.jar'])

implementation'androidx.appcompat:appcompat:1.0.2'

    testImplementation'junit:junit:4.12'

    implementation'org.aspectj:aspectjrt:1.8.13'

}

3.import org.aspectj.bridge.IMessage

import org.aspectj.bridge.MessageHandler

import org.aspectj.tools.ajc.Main

final def log =project.logger

final def variants =project.android.applicationVariants

variants.all { variant ->

if (!variant.buildType.isDebuggable()) {

log.debug("Skipping non-debuggable build type '${variant.buildType.name}'.")

return;

}

JavaCompile javaCompile = variant.javaCompile

javaCompile.doLast {

String[] args = ["-showWeaveInfo",

"-1.8",

"-inpath", javaCompile.destinationDir.toString(),

"-aspectpath", javaCompile.classpath.asPath,

"-d", javaCompile.destinationDir.toString(),

"-classpath", javaCompile.classpath.asPath,

"-bootclasspath",project.android.bootClasspath.join(File.pathSeparator)]

log.debug"ajc args: " + Arrays.toString(args)

MessageHandler handler =new MessageHandler(true);

new Main().run(args, handler);

for (IMessage message : handler.getMessages(null,true)) {

switch (message.getKind()) {

case IMessage.ABORT:

case IMessage.ERROR:

case IMessage.FAIL:

log.error message.message, message.thrown

                    break;

case IMessage.WARNING:

log.warn message.message, message.thrown

                    break;

case IMessage.INFO:

log.info message.message, message.thrown

                    break;

case IMessage.DEBUG:

log.debug message.message, message.thrown

                    break;

}

}

}

}

自定义标签

//用户使用统计

@Target(ElementType.METHOD)

@Retention(RetentionPolicy.RUNTIME)

public @interface ClickBehavior {

Stringvalue();

}

添加标签

@ClickBehavior("登录")

public void land(View view) {

Log.e(TAG, "验证成功,登陆成功");

}

定义一个切面类

@Aspect//定义一个切面类

public class ClickBehaviorAspect {

private static final StringTAG ="AOP_Login";

    //找到需要处理的切入点 execution,以方法执行时作为切点,触发Aspect类

    //**(..)可以处理ClickBehavior这个类所有的方法,该切入点一点错误都不能有,有一处拼写错误就不会实现

    @Pointcut("execution(@com.dezerlin.aop_login.annotation.ClickBehavior * *(..))")

public void abc() {//方法名无所谓

}

//对切入点如何处理 通过advice通知来执行  Around表示在我们切入的代码前后都可以执行,after在切入点之后执行,before在切入点之前执行

    @Around(" abc()")

public ObjectjointPotin(ProceedingJoinPoint joinPoint)throws Throwable {

//获取签名方法

        MethodSignature methodSignature = (MethodSignature) joinPoint.getSignature();

        //获取方法所属的类名

        String className=methodSignature.getDeclaringType().getSimpleName();

        //获取方法名

        String methodName=methodSignature.getName();

        //获取方法的注解值

        String funName=methodSignature.getMethod().getAnnotation(ClickBehavior.class).value();

        long begin=System.currentTimeMillis();

        Log.e(TAG,"start");

        Object result=  joinPoint.proceed();

        long duration=System.currentTimeMillis()-begin;

        Log.e(TAG,"end");

        Log.e(TAG,String.format("统计了:%s功能,在%s类中的%s方法,用时$d ms",funName,className,methodName,duration));

        return result;

    }

}

效果图

通过 Object result=  joinPoint.proceed()  return result执行了自定义标签中的代码,而切入点前后的代码也执行了

相关文章

  • Android AOP面向切面架构设计

    1.概念 什么是AOP? Aspect Oriented Programming的缩写。意为:面向切面编程。是o...

  • Android AOP面向切片

    一. AOP 面向切面架构设计 - 动态代理切面需求 需求:在数据操作前进行备份操作,进行横向切片 DBOpera...

  • 来自于宏的黑魔法 --- 简单实现面向切面编程

    Elixir Macro AOP 面向切面 宏 元编程 什么是 AOP (面向切面编程)? 面向切面编程 AOP(...

  • AOP

    AOP切面编程 AOP: Aspect Oriented Programming 面向切面编程 面向切面编程(也叫...

  • 面向切面的程序设计(AOP)

    面向切面的程序设计(AOP) Spring 框架的一个关键组件是面向切面的程序设计(AOP)框架。一个程序中跨越多...

  • AOP面向切面架构设计

    1、AOP(Aspect Oriented Programming)面向切面编程,通过预编译方式和运行期动态代理实...

  • Spring源码分析之AOP

    AOP是什么 面向切面的程序设计(Aspect-oriented programming,AOP,又译作面向方面的...

  • iOS:AOP面向切片编程

    AOP简介AOP: Aspect Oriented Programming 面向切面编程。面向切面编程(也叫面向方...

  • Android中AOP的实际运用

    Android中AOP的实际运用 一、AOP简介 AOP即面向切面编程,区别于OOP(面向对象编程)的功能模块化,...

  • iOS AOP编程之路

    1. AOP简介 AOP: Aspect Oriented Programming 面向切面编程。 面向切面编程(...

网友评论

      本文标题:Android AOP面向切面架构设计

      本文链接:https://www.haomeiwen.com/subject/idsunctx.html