当前位置:   article > 正文

Android中的AOP编程之AspectJ实战实现数据埋点_android aspectj数据埋点

android aspectj数据埋点


原文地址:http://blog.csdn.net/xinanheishao/article/details/74082605

文章背景

最近在给某某银行做项目的时,涉及到了数据埋点,性能监控等问题,那我们起先想到的有两种方案,方案之一就是借助第三方,比如友盟、Bugly等,由于项目是部署在银行的网络框架之内的,所以该方案不可行。另外一种方案是就是给每一个方法里面数据打点,然后写入SD卡,定时上报给自己的服务器,服务器来进行统计分析,这种方案看上去似乎可行,但有弊端,不仅会给程序员增加巨大工作量、而且最致命的是会严重拖累整个APP的性能。好多都应无奈之举放弃了该需求,但数据埋点实现用户行为的收集分析和性能监控对于技术部和运营部来说是一件非常有价值的事情,所以作为程序的我必应寻找解决方案,庆幸的是我们除了OOP编程思想外,还有一种编程思想就是AOP编程,这种编程思想能解决此类问题。

文章目标

实现用户行为采集 
实现方法性能监控 
探讨AOP编程实战

看图简单解读Android的AOP实战

aop0

aop1

看到没有,在LinearLayoutTestActivity中除了加载布局的操作外,我并没有干其他的什么,但当我点击菜单跳转到该Activity时,onCreate的方法和参数被打印出来,甚至LinearLayoutTestActivity类信息也被打印出来了,干这个事情的是TraceAspect这个类。到这里上面所说的用户的行为跟踪就轻而易举得以实现,那么下面我们开始来了解一下这种技术。

什么是AOP

在讲AOP之前我们首先回顾一下我们经常使用OOP思想,即『面向对象编程』,它提倡的是将功能模块化,对象化,面向对象把所有的事物都当做对象看待,因此每一个对象都有自己的生命周期,都是一个封装的整体。每一个对象都有自己的一套垂直的系列方法和属性,使得我们使用对象的时候不需要太多的关系它的内部细节和实现过程,只需要关注输入和输出,这跟我们的思维方式非常相近,极大的降低了我们的编写代码成本(而不像C那样让人头痛!)。但在现实世界中,并不是所有问题都能完美得划分到模块中。举个最简单而又常见的例子:现在想为每个模块加上日志功能,要求模块运行时候能输出日志。在不知道AOP的情况下,一般的处理都是:先设计一个日志输出模块,这个模块提供日志输出API,比如Android中的Log类。然后,其他模块需要输出日志的时候调用Log类的几个函数,比如e(TAG,…),w(TAG,…),d(TAG,…),i(TAG,…)等。而AOP的思想,则不太一样,它提倡的是针对同一类问题的统一处理,基于AOP的编程可以让我们横向的切割某一类方法和属性(不需要关心他是什么类别!),我觉得AOP并不是与OOP对立的,而是为了弥补OOP的不足,因为有了AOP我们的调试和监控就变得简单清晰,所以很多时候,可能会混合多种编程思想 
面向切面编程(AOP,Aspect-oriented programming)需要把程序逻辑分解成『关注点』(concerns,功能的内聚区域)。这意味着,在 AOP 中,我们不需要显式的修改就可以向代码中添加可执行的代码块。这种编程范式假定『横切关注点』(cross-cutting concerns,多处代码中需要的逻辑,但没有一个单独的类来实现)应该只被实现一次,且能够多次注入到需要该逻辑的地方。

代码注入是 AOP 中的重要部分:它在处理上述提及的横切整个应用的『关注点』时很有用,例如日志或者性能监控。这种方式,并不如你所想的应用甚少,相反的,每个程序员都可以有使用这种注入代码能力的场景,这样可以避免很多痛苦和无奈。

AOP 是一种已经存在了很多年的编程范式。我发现把它应用到 Android 开发中也很有用。经过一番调研后,我认为我们用它可以获得很多好处和有用的东西。

AspectJ是什么

AspectJ实际上是对AOP编程思想的一个实践,它不是一个新的语言,它就是一个代码编译器(ajc),在Java编译器的基础上增加了一些它自己的关键字识别和编译方法。因此,ajc也可以编译Java代码。它在编译期将开发者编写的Aspect程序编织到目标程序中,对目标程序作了重构,目的就是建立目标程序与Aspect程序的连接(耦合,获得对方的引用(获得的是声明类型,不是运行时类型)和上下文信息),从而达到AOP的目的(这里在编译期还是修改了原来程序的代码,但是是ajc替我们做的)。当然,除了AspectJ以外,还有很多其它的AOP实现,例如XPosed、DexPosed、ASMDex。

为什么用 AspectJ?

功能强大:它就是一个编译器+一个库,可以让开发者最大限度的发挥,实现形形色色的AOP程序! 
非侵入式监控: 可以在不修监控目标的情况下监控其运行,截获某类方法,甚至可以修改其参数和运行轨迹! 
支持编译期和加载时代码注入,不影响性能。 
易用易学:它就是Java,只要会Java就可以用它。 
目前最好

在Android项目中使用AspectJ 
使用方法有两种: 
1、 插件的方式:网上有人在github上提供了集成的插件gradle-android-aspectj-plugin。这种方式配置简单方便,但经测试无法兼容databinding框架,这个问题现在作者依然没有解决,希望作者能够快速解决。

2、Gradle配置的方式:配置有点麻烦,不过国外一个大牛在build文件中添加了一些脚本,虽然有点难懂,但可以在AS中使用。文章出处:https://fernandocejas.com/2014/08/03/aspect-oriented-programming-in-android/

Step

1、创建一个AS原工程

aop2

2、再创建一个module(Android Library) 
aop3

3、在gintonic中添加AspectJ依赖,同时编写build脚本,添加任务,使得IDE使用ajc作为编译器编译代码,然后把该Module添加至主工程Module中。

  1. import com.android.build.gradle.LibraryPlugin
  2. import org.aspectj.bridge.IMessage
  3. import org.aspectj.bridge.MessageHandler
  4. import org.aspectj.tools.ajc.Main
  5. buildscript {
  6. repositories {
  7. mavenCentral()
  8. }
  9. dependencies {
  10. classpath 'com.android.tools.build:gradle:2.1.0'
  11. classpath 'org.aspectj:aspectjtools:1.8.1'
  12. }
  13. }
  14. apply plugin: 'com.android.library'
  15. repositories {
  16. mavenCentral()
  17. }
  18. dependencies {
  19. compile 'org.aspectj:aspectjrt:1.8.1'
  20. }
  21. android {
  22. compileSdkVersion 21
  23. buildToolsVersion '21.1.2'
  24. lintOptions {
  25. abortOnError false
  26. }
  27. }
  28. android.libraryVariants.all { variant ->
  29. LibraryPlugin plugin = project.plugins.getPlugin(LibraryPlugin)
  30. JavaCompile javaCompile = variant.javaCompile
  31. javaCompile.doLast {
  32. String[] args = ["-showWeaveInfo",
  33. "-1.5",
  34. "-inpath", javaCompile.destinationDir.toString(),
  35. "-aspectpath", javaCompile.classpath.asPath,
  36. "-d", javaCompile.destinationDir.toString(),
  37. "-classpath", javaCompile.classpath.asPath,
  38. "-bootclasspath", plugin.project.android.bootClasspath.join(
  39. File.pathSeparator)]
  40. MessageHandler handler = new MessageHandler(true);
  41. new Main().run(args, handler)
  42. def log = project.logger
  43. for (IMessage message : handler.getMessages(null, true)) {
  44. switch (message.getKind()) {
  45. case IMessage.ABORT:
  46. case IMessage.ERROR:
  47. case IMessage.FAIL:
  48. log.error message.message, message.thrown
  49. break;
  50. case IMessage.WARNING:
  51. case IMessage.INFO:
  52. log.info message.message, message.thrown
  53. break;
  54. case IMessage.DEBUG:
  55. log.debug message.message, message.thrown
  56. break;
  57. }
  58. }
  59. }
  60. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70

4、在主build.gradle(Module:app)中添加也要添加AspectJ依赖,同时编写build脚本,添加任务,目的就是为了建立两者的通信,使得IDE使用ajc编译代码。

  1. apply plugin: 'com.android.application'
  2. import org.aspectj.bridge.IMessage
  3. import org.aspectj.bridge.MessageHandler
  4. import org.aspectj.tools.ajc.Main
  5. buildscript {
  6. repositories {
  7. mavenCentral()
  8. }
  9. dependencies {
  10. classpath 'org.aspectj:aspectjtools:1.8.1'
  11. }
  12. }
  13. repositories {
  14. mavenCentral()
  15. }
  16. android {
  17. compileSdkVersion 21
  18. buildToolsVersion '21.1.2'
  19. defaultConfig {
  20. applicationId 'com.example.myaspectjapplication'
  21. minSdkVersion 15
  22. targetSdkVersion 21
  23. }
  24. lintOptions {
  25. abortOnError true
  26. }
  27. }
  28. final def log = project.logger
  29. final def variants = project.android.applicationVariants
  30. variants.all { variant ->
  31. if (!variant.buildType.isDebuggable()) {
  32. log.debug("Skipping non-debuggable build type '${variant.buildType.name}'.")
  33. return;
  34. }
  35. JavaCompile javaCompile = variant.javaCompile
  36. javaCompile.doLast {
  37. String[] args = ["-showWeaveInfo",
  38. "-1.5",
  39. "-inpath", javaCompile.destinationDir.toString(),
  40. "-aspectpath", javaCompile.classpath.asPath,
  41. "-d", javaCompile.destinationDir.toString(),
  42. "-classpath", javaCompile.classpath.asPath,
  43. "-bootclasspath", project.android.bootClasspath.join(File.pathSeparator)]
  44. log.debug "ajc args: " + Arrays.toString(args)
  45. MessageHandler handler = new MessageHandler(true);
  46. new Main().run(args, handler);
  47. for (IMessage message : handler.getMessages(null, true)) {
  48. switch (message.getKind()) {
  49. case IMessage.ABORT:
  50. case IMessage.ERROR:
  51. case IMessage.FAIL:
  52. log.error message.message, message.thrown
  53. break;
  54. case IMessage.WARNING:
  55. log.warn message.message, message.thrown
  56. break;
  57. case IMessage.INFO:
  58. log.info message.message, message.thrown
  59. break;
  60. case IMessage.DEBUG:
  61. log.debug message.message, message.thrown
  62. break;
  63. }
  64. }
  65. }
  66. }
  67. dependencies {
  68. compile fileTree(include: ['*.jar'], dir: 'libs')
  69. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  70. exclude group: 'com.android.support', module: 'support-annotations'
  71. })
  72. //compile 'com.android.support:appcompat-v7:25.3.1'
  73. //compile 'com.android.support.constraint:constraint-layout:1.0.2'
  74. testCompile 'junit:junit:4.12'
  75. compile project(':gintonic')
  76. compile 'org.aspectj:aspectjrt:1.8.1'
  77. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88

5、在Module(gintonic)中新建一个名为”TraceAspect”类

  1. @Aspect
  2. public class TraceAspect {
  3. //ydc start
  4. private static final String TAG = "ydc";
  5. @Before("execution(* android.app.Activity.on**(..))")
  6. public void onActivityMethodBefore(JoinPoint joinPoint) throws Throwable {
  7. String key = joinPoint.getSignature().toString();
  8. Log.d(TAG, "onActivityMethodBefore: " + key+"\n"+joinPoint.getThis());
  9. }
  10. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

上面的代码片段中有两处地方值得注意,一个是把这个类注解为@Aspect,另一个是给方法的的注解并加上了类似正则表达式的过滤条件,我们先按照我的步骤走,后面会一一讲解。

6、LinearLayoutTestActivity类

  1. public class LinearLayoutTestActivity extends Activity {
  2. private LinearLayout myLinearLayout;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_linear_layout_test);
  7. myLinearLayout = (LinearLayout) findViewById(R.id.linearLayoutOne);
  8. myLinearLayout.invalidate();
  9. }
  10. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

然后运行我们的程序看日志打印效果

aop8

上面的代码片段中有两处地方值得注意,一个是把这个类注解为@Aspect,另一个是给方法的的注解并加上了类似正则表达式的过滤条件,我们先按照我的步骤走,后面会一一讲解。

根据图片我们会惊奇的发现LinearLayoutTestActivity中的onCreate(Bundle savedInstanceState)方法被TraceAspect类赤裸裸的监控了,不仅截取到了LinearLayoutTestActivity类信息和方法及方法参数。

那这到底是怎么回事呢?我们可以使用反编译我的apk看一下相关的代码

aop7

我们可以发现,在onCreate执行之前,插入了一些AspectJ的代码,并且调用了TraceAspect中的 onActivityMethodBefore(JoinPoint joinPoint)方法。这个就是AspectJ的主要功能,抛开AOP的思想来说,我们想做的,实际上就是『在不侵入原有代码的基础上,增加新的代码』。

监控Activity的下其它被调用的方法

aop9

看到没有我们仅仅在TraceAspect类中编写一个方法就可以监控RelativeLayoutTestActivity中被用户点击的方法,这样就可以轻轻松松采集用户行为

  1. @Around("execution(* com.example.myaspectjapplication.activity.RelativeLayoutTestActivity.testAOP())")
  2. public void onActivityMethodAround(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
  3. String key = proceedingJoinPoint.getSignature().toString();
  4. Log.d(TAG, "onActivityMethodAroundFirst: " + key);
  5. proceedingJoinPoint.proceed();
  6. Log.d(TAG, "onActivityMethodAroundSecond: " + key);
  7. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

我们还是照样看来看一下反编译的代码 
这是在RelativeLayoutTestActivity类中调用testAOP()我们的源码:

  1. public class RelativeLayoutTestActivity extends Activity {
  2. Button btn_test,btn_test2;
  3. //public static String A="88888";
  4. @Override
  5. protected void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. setContentView(R.layout.activity_relative_layout_test);
  8. btn_test=(Button)findViewById(R.id.btn_test);
  9. btn_test.setOnClickListener(new View.OnClickListener() {
  10. @Override
  11. public void onClick(View v) {
  12. testAOP();
  13. }
  14. });
  15. btn_test2=(Button)findViewById(R.id.btn_test2);
  16. btn_test2.setOnClickListener(new View.OnClickListener() {
  17. @Override
  18. public void onClick(View v) {
  19. mytestDebug();
  20. }
  21. });
  22. }
  23. private void testAOP(){
  24. int cunt=0;
  25. for ( int i=0;i<1000;i++){
  26. cunt++;
  27. }
  28. //Log.d("ydc","cunt:"+cunt+"");
  29. }
  30. private void method4Call() {
  31. //System.out.println("in method method4Call");
  32. }
  33. @DebugTrace
  34. private void mytestDebug(){
  35. }
  36. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

下面是反编译的代码,读者只要关注testAOP()方法即可

  1. package com.example.myaspectjapplication.activity;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.view.View.OnClickListener;
  6. import android.widget.Button;
  7. import org.android10.gintonic.annotation.DebugTrace;
  8. import org.android10.gintonic.aspect.TraceAspect;
  9. import org.aspectj.lang.JoinPoint;
  10. import org.aspectj.lang.JoinPoint.StaticPart;
  11. import org.aspectj.runtime.internal.AroundClosure;
  12. import org.aspectj.runtime.reflect.Factory;
  13. public class RelativeLayoutTestActivity extends Activity
  14. {
  15. private static final JoinPoint.StaticPart ajc$tjp_0;
  16. private static final JoinPoint.StaticPart ajc$tjp_1;
  17. private static final JoinPoint.StaticPart ajc$tjp_2;
  18. Button btn_test;
  19. Button btn_test2;
  20. static
  21. {
  22. ajc$preClinit();
  23. }
  24. private static void ajc$preClinit()
  25. {
  26. Factory localFactory = new Factory("RelativeLayoutTestActivity.java", RelativeLayoutTestActivity.class);
  27. ajc$tjp_0 = localFactory.makeSJP("method-execution", localFactory.makeMethodSig("4", "onCreate", "com.example.myaspectjapplication.activity.RelativeLayoutTestActivity", "android.os.Bundle", "savedInstanceState", "", "void"), 27);
  28. ajc$tjp_1 = localFactory.makeSJP("method-execution", localFactory.makeMethodSig("2", "testAOP", "com.example.myaspectjapplication.activity.RelativeLayoutTestActivity", "", "", "", "void"), 48);
  29. ajc$tjp_2 = localFactory.makeSJP("method-execution", localFactory.makeMethodSig("2", "mytestDebug", "com.example.myaspectjapplication.activity.RelativeLayoutTestActivity", "", "", "", "void"), 63);
  30. }
  31. private void method4Call()
  32. {
  33. }
  34. @DebugTrace
  35. private void mytestDebug()
  36. {
  37. JoinPoint localJoinPoint = Factory.makeJP(ajc$tjp_2, this, this);
  38. TraceAspect.aspectOf().weaveJoinPoint(new RelativeLayoutTestActivity.AjcClosure3(new Object[] { this, localJoinPoint }).linkClosureAndJoinPoint(69648));
  39. }
  40. static final void mytestDebug_aroundBody2(RelativeLayoutTestActivity paramRelativeLayoutTestActivity, JoinPoint paramJoinPoint)
  41. {
  42. }
  43. private void testAOP()
  44. {
  45. JoinPoint localJoinPoint = Factory.makeJP(ajc$tjp_1, this, this);
  46. TraceAspect.aspectOf().onActivityMethodAround(new RelativeLayoutTestActivity.AjcClosure1(new Object[] { this, localJoinPoint }).linkClosureAndJoinPoint(69648));
  47. }
  48. static final void testAOP_aroundBody0(RelativeLayoutTestActivity paramRelativeLayoutTestActivity, JoinPoint paramJoinPoint)
  49. {
  50. int i = 0;
  51. for (int j = 0; j < 1000; j++)
  52. i++;
  53. }
  54. protected void onCreate(Bundle paramBundle)
  55. {
  56. JoinPoint localJoinPoint = Factory.makeJP(ajc$tjp_0, this, this, paramBundle);
  57. TraceAspect.aspectOf().onActivityMethodBefore(localJoinPoint);
  58. super.onCreate(paramBundle);
  59. setContentView(2130903043);
  60. this.btn_test = ((Button)findViewById(2131230727));
  61. this.btn_test.setOnClickListener(new View.OnClickListener()
  62. {
  63. public void onClick(View paramAnonymousView)
  64. {
  65. RelativeLayoutTestActivity.this.testAOP();
  66. }
  67. });
  68. this.btn_test2 = ((Button)findViewById(2131230728));
  69. this.btn_test2.setOnClickListener(new View.OnClickListener()
  70. {
  71. public void onClick(View paramAnonymousView)
  72. {
  73. RelativeLayoutTestActivity.this.mytestDebug();
  74. }
  75. });
  76. }
  77. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87

我们不难发现我们的代码轻松被AspectJ重构了,而且这种重构是在不修改原有代码的情况下无缝的被插入。

Fragment的中的方法监控 
上面我已经演示过Activity中的方法强势插入,在Fragment中依然可行

  1. @Before("execution(* android.app.Fragment.on**(..))")
  2. public void onActivityMethodBefore(JoinPoint joinPoint) throws Throwable {
  3. String key = joinPoint.getSignature().toString();
  4. Log.d(TAG, "onActivityMethodBefore: " + key+"\n"+joinPoint.getThis());
  5. }
  • 1
  • 2
  • 3
  • 4
  • 5

aop14

AspectJ原理剖析

1、Join Points(连接点) 
Join Points,简称JPoints,是AspectJ的核心思想之一,它就像一把刀,把程序的整个执行过程切成了一段段不同的部分。例如,构造方法调用、调用方法、方法执行、异常等等,这些都是Join Points,实际上,也就是你想把新的代码插在程序的哪个地方,是插在构造方法中,还是插在某个方法调用前,或者是插在某个方法中,这个地方就是Join Points,当然,不是所有地方都能给你插的,只有能插的地方,才叫Join Points。

2、Pointcuts(切入点) 
告诉代码注入工具,在何处注入一段特定代码的表达式。例如,在哪些 joint points 应用一个特定的 Advice。切入点可以选择唯一一个,比如执行某一个方法,也可以有多个选择,可简单理解为带条件的Join Points,作为我们需要的代码切入点。

3、Advice(通知) 
如何注入到我的class文件中的代码。典型的 Advice 类型有 before、after 和 around,分别表示在目标方法执行之前、执行后和完全替代目标方法执行的代码。 上面的例子中用的就是最简单的Advice——Before。

4、Aspect(切面): Pointcut 和 Advice 的组合看做切面。例如,我们在应用中通过定义一个 pointcut 和给定恰当的advice,添加一个日志切面。

5、Weaving(织入): 注入代码(advices)到目标位置(joint points)的过程。

AspectJ之切点语法解析

拿上面的代码片段说明

  1. private static final String TAG = "ydc";
  2. @Before("execution(* android.app.Activity.on**(..))")
  3. public void onActivityMethodBefore(JoinPoint joinPoint) throws Throwable {
  4. String key = joinPoint.getSignature().toString();
  5. Log.d(TAG, "onActivityMethodBefore: " + key+"\n"+joinPoint.getThis());
  6. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

拆分说明 
1、@Before:Advice,也就是具体的插入点 
2、execution:处理Join Point的类型,例如call、execution 
3、(* android.app.Activity.on**(..)):这个是最重要的表达式,第一个『』表示返回值,『』表示返回值为任意类型,后面这个就是典型的包名路径,其中可以包含『』来进行通配,几个『』没区别。同时,这里可以通过『&&、||、!』来进行条件组合。()代表这个方法的参数,你可以指定类型,例如android.os.Bundle,或者(..)这样来代表任意类型、任意个数的参数。 
4、public void onActivityMethodBefore:实际切入的代码。

Before和After的使用方法 
这两个Advice应该是使用的最多的,所以,我们先来看下这两个Advice的实例,首先看下Before和After。

  1. @Before("execution(* android.app.Activity.on*(android.os.Bundle))")
  2. public void onActivityMethodBefore(JoinPoint joinPoint) throws Throwable {
  3. String key = joinPoint.getSignature().toString();
  4. Log.d(TAG, "onActivityMethodBefore: " + key);
  5. }
  6. @After("execution(* android.app.Activity.on*(android.os.Bundle))")
  7. public void onActivityMethodAfter(JoinPoint joinPoint) throws Throwable {
  8. String key = joinPoint.getSignature().toString();
  9. Log.d(TAG, "onActivityMethodAfter: " + key);
  10. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

反编译之后在原始代码的基础上,增加了Before和After的代码,Log也能被正确的插入并打印出来。

aop15

Around的使用方法 
Before和After其实还是很好理解的,也就是在Pointcuts之前和之后,插入代码,那么Around呢,从字面含义上来讲,也就是在方法前后各插入代码,是的,他包含了Before和After的全部功能,代码如下:

  1. //Around的用法
  2. @Around("execution(* com.example.myaspectjapplication.activity.RelativeLayoutTestActivity.testAOP())")
  3. public void onActivityMethodAround(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
  4. String key = proceedingJoinPoint.getSignature().toString();
  5. Log.d(TAG, "onActivityMethodAroundFirst: " + key);
  6. proceedingJoinPoint.proceed();
  7. Log.d(TAG, "onActivityMethodAroundSecond: " + key);
  8. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

其中,proceedingJoinPoint.proceed()代表执行原始的方法,在这之前、之后,都可以进行各种逻辑处理。

原始代码:

  1. /**
  2. *
  3. */
  4. public class RelativeLayoutTestActivity extends Activity {
  5. Button btn_test,btn_test2;
  6. @Override
  7. protected void onCreate(Bundle savedInstanceState) {
  8. super.onCreate(savedInstanceState);
  9. setContentView(R.layout.activity_relative_layout_test);
  10. btn_test=(Button)findViewById(R.id.btn_test);
  11. btn_test.setOnClickListener(new View.OnClickListener() {
  12. @Override
  13. public void onClick(View v) {
  14. testAOP();
  15. }
  16. });
  17. btn_test2=(Button)findViewById(R.id.btn_test2);
  18. btn_test2.setOnClickListener(new View.OnClickListener() {
  19. @Override
  20. public void onClick(View v) {
  21. mytestDebug();
  22. }
  23. });
  24. }
  25. private void testAOP(){
  26. int cunt=0;
  27. for ( int i=0;i<1000;i++){
  28. cunt++;
  29. }
  30. //Log.d("ydc","cunt:"+cunt+"");
  31. }
  32. private void method4Call() {
  33. //System.out.println("in method method4Call");
  34. }
  35. @DebugTrace
  36. private void mytestDebug(){
  37. }
  38. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47

执行效果: 
aop16

反编译后的代码

  1. package com.example.myaspectjapplication.activity;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.view.View.OnClickListener;
  6. import android.widget.Button;
  7. import org.android10.gintonic.annotation.DebugTrace;
  8. import org.android10.gintonic.aspect.TraceAspect;
  9. import org.aspectj.lang.JoinPoint;
  10. import org.aspectj.lang.JoinPoint.StaticPart;
  11. import org.aspectj.runtime.internal.AroundClosure;
  12. import org.aspectj.runtime.reflect.Factory;
  13. public class RelativeLayoutTestActivity extends Activity
  14. {
  15. private static final JoinPoint.StaticPart ajc$tjp_0;
  16. private static final JoinPoint.StaticPart ajc$tjp_1;
  17. Button btn_test;
  18. Button btn_test2;
  19. static
  20. {
  21. ajc$preClinit();
  22. }
  23. private static void ajc$preClinit()
  24. {
  25. Factory localFactory = new Factory("RelativeLayoutTestActivity.java", RelativeLayoutTestActivity.class);
  26. ajc$tjp_0 = localFactory.makeSJP("method-execution", localFactory.makeMethodSig("2", "testAOP", "com.example.myaspectjapplication.activity.RelativeLayoutTestActivity", "", "", "", "void"), 46);
  27. ajc$tjp_1 = localFactory.makeSJP("method-execution", localFactory.makeMethodSig("2", "mytestDebug", "com.example.myaspectjapplication.activity.RelativeLayoutTestActivity", "", "", "", "void"), 61);
  28. }
  29. private void method4Call()
  30. {
  31. }
  32. @DebugTrace
  33. private void mytestDebug()
  34. {
  35. JoinPoint localJoinPoint = Factory.makeJP(ajc$tjp_1, this, this);
  36. TraceAspect.aspectOf().weaveJoinPoint(new RelativeLayoutTestActivity.AjcClosure3(new Object[] { this, localJoinPoint }).linkClosureAndJoinPoint(69648));
  37. }
  38. static final void mytestDebug_aroundBody2(RelativeLayoutTestActivity paramRelativeLayoutTestActivity, JoinPoint paramJoinPoint)
  39. {
  40. }
  41. private void testAOP()
  42. {
  43. JoinPoint localJoinPoint = Factory.makeJP(ajc$tjp_0, this, this);
  44. TraceAspect.aspectOf().onActivityMethodAround(new RelativeLayoutTestActivity.AjcClosure1(new Object[] { this, localJoinPoint }).linkClosureAndJoinPoint(69648));
  45. }
  46. static final void testAOP_aroundBody0(RelativeLayoutTestActivity paramRelativeLayoutTestActivity, JoinPoint paramJoinPoint)
  47. {
  48. int i = 0;
  49. for (int j = 0; j < 1000; j++)
  50. i++;
  51. }
  52. protected void onCreate(Bundle paramBundle)
  53. {
  54. super.onCreate(paramBundle);
  55. setContentView(2130903043);
  56. this.btn_test = ((Button)findViewById(2131230727));
  57. this.btn_test.setOnClickListener(new View.OnClickListener()
  58. {
  59. public void onClick(View paramAnonymousView)
  60. {
  61. RelativeLayoutTestActivity.this.testAOP();
  62. }
  63. });
  64. this.btn_test2 = ((Button)findViewById(2131230728));
  65. this.btn_test2.setOnClickListener(new View.OnClickListener()
  66. {
  67. public void onClick(View paramAnonymousView)
  68. {
  69. RelativeLayoutTestActivity.this.mytestDebug();
  70. }
  71. });
  72. }
  73. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83

我们可以发现,Around确实实现了Before和After的功能,但是要注意的是,Around和After是不能同时作用在同一个方法上的,会产生重复切入的问题。 
Around替代原理:目标方法体被Around方法替换,原方法重新生成,名为XXX_aroundBody(),如果要调用原方法需要在AspectJ程序的Around方法体内调用joinPoint.proceed()还原方法执行,是这样达到替换原方法的目的。达到这个目的需要双方互相引用,桥梁便是Aspect类,目标程序插入了Aspect类所在的包获取引用。AspectJ通过在目标类里面加入Closure(闭包)类,该类构造函数包含了目标类实例、目标方法参数、JoinPoint对象等信息,同时该类作为切点原方法的执行代理,该闭包通过Aspect类调用Around方法传入Aspect程序。这样便达到了关联的目的,便可以在Aspect程序中监控和修改目标程序。

call和execution 
AspectJ的切入点表达式中,我们前面都是使用的execution,实际上,还有一种类型——call,那么这两种语法有什么区别呢,我们来试验下就知道了。

被切代码依然很简单:

  1. public class RelativeLayoutTestActivity extends Activity {
  2. Button btn_test,btn_test2;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_relative_layout_test);
  7. btn_test=(Button)findViewById(R.id.btn_test);
  8. btn_test.setOnClickListener(new View.OnClickListener() {
  9. @Override
  10. public void onClick(View v) {
  11. testAOP();
  12. }
  13. });
  14. btn_test2=(Button)findViewById(R.id.btn_test2);
  15. btn_test2.setOnClickListener(new View.OnClickListener() {
  16. @Override
  17. public void onClick(View v) {
  18. }
  19. });
  20. }
  21. private void testAOP(){
  22. int cunt=0;
  23. for ( int i=0;i<1000;i++){
  24. cunt++;
  25. }
  26. //Log.d("ydc","cunt:"+cunt+"");
  27. }
  28. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

先来看execution,代码如下:

  1. //execution用法
  2. @Before("execution(* com.example.myaspectjapplication.activity.RelativeLayoutTestActivity.testAOP(..))")
  3. public void methodAOPTest(JoinPoint joinPoint) throws Throwable {
  4. String key = joinPoint.getSignature().toString();
  5. Log.d(TAG, "methodAOPTest: " + key);
  6. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

编译之后的代码如下所示:

  1. package com.example.myaspectjapplication.activity;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.view.View.OnClickListener;
  6. import android.widget.Button;
  7. import org.android10.gintonic.aspect.TraceAspect;
  8. import org.aspectj.lang.JoinPoint;
  9. import org.aspectj.lang.JoinPoint.StaticPart;
  10. import org.aspectj.runtime.reflect.Factory;
  11. public class RelativeLayoutTestActivity extends Activity
  12. {
  13. private static final JoinPoint.StaticPart ajc$tjp_0;
  14. Button btn_test;
  15. Button btn_test2;
  16. static
  17. {
  18. ajc$preClinit();
  19. }
  20. private static void ajc$preClinit()
  21. {
  22. Factory localFactory = new Factory("RelativeLayoutTestActivity.java", RelativeLayoutTestActivity.class);
  23. ajc$tjp_0 = localFactory.makeSJP("method-execution", localFactory.makeMethodSig("2", "testAOP", "com.example.myaspectjapplication.activity.RelativeLayoutTestActivity", "", "", "", "void"), 46);
  24. }
  25. private void testAOP()
  26. {
  27. JoinPoint localJoinPoint = Factory.makeJP(ajc$tjp_0, this, this);
  28. TraceAspect.aspectOf().methodAOPTest(localJoinPoint);
  29. int i = 0;
  30. for (int j = 0; j < 1000; j++)
  31. i++;
  32. }
  33. protected void onCreate(Bundle paramBundle)
  34. {
  35. super.onCreate(paramBundle);
  36. setContentView(2130903043);
  37. this.btn_test = ((Button)findViewById(2131230727));
  38. this.btn_test.setOnClickListener(new View.OnClickListener()
  39. {
  40. public void onClick(View paramAnonymousView)
  41. {
  42. RelativeLayoutTestActivity.this.testAOP();
  43. }
  44. });
  45. this.btn_test2 = ((Button)findViewById(2131230728));
  46. this.btn_test2.setOnClickListener(new View.OnClickListener()
  47. {
  48. public void onClick(View paramAnonymousView)
  49. {
  50. }
  51. });
  52. }
  53. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59

再来看下call,代码如下:

  1. //call用法
  2. @Before("call(* com.example.myaspectjapplication.activity.RelativeLayoutTestActivity.testAOP(..))")
  3. public void methodAOPTest(JoinPoint joinPoint) throws Throwable {
  4. String key = joinPoint.getSignature().toString();
  5. Log.d(TAG, "methodAOPTest: " + key);
  6. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

编译之后的代码如下所示

  1. package com.example.myaspectjapplication.activity;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.view.View.OnClickListener;
  6. import android.widget.Button;
  7. import org.aspectj.lang.JoinPoint.StaticPart;
  8. import org.aspectj.runtime.reflect.Factory;
  9. public class RelativeLayoutTestActivity extends Activity
  10. {
  11. private static final JoinPoint.StaticPart ajc$tjp_0;
  12. Button btn_test;
  13. Button btn_test2;
  14. static
  15. {
  16. ajc$preClinit();
  17. }
  18. private static void ajc$preClinit()
  19. {
  20. Factory localFactory = new Factory("RelativeLayoutTestActivity.java", RelativeLayoutTestActivity.class);
  21. ajc$tjp_0 = localFactory.makeSJP("method-call", localFactory.makeMethodSig("2", "testAOP", "com.example.myaspectjapplication.activity.RelativeLayoutTestActivity", "", "", "", "void"), 21);
  22. }
  23. private void testAOP()
  24. {
  25. int i = 0;
  26. for (int j = 0; j < 1000; j++)
  27. i++;
  28. }
  29. protected void onCreate(Bundle paramBundle)
  30. {
  31. super.onCreate(paramBundle);
  32. setContentView(2130903043);
  33. this.btn_test = ((Button)findViewById(2131230727));
  34. this.btn_test.setOnClickListener(new View.OnClickListener()
  35. {
  36. public void onClick(View paramAnonymousView)
  37. {
  38. RelativeLayoutTestActivity.access$000(RelativeLayoutTestActivity.this);
  39. }
  40. });
  41. this.btn_test2 = ((Button)findViewById(2131230728));
  42. this.btn_test2.setOnClickListener(new View.OnClickListener()
  43. {
  44. public void onClick(View paramAnonymousView)
  45. {
  46. }
  47. });
  48. }
  49. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55

其实对照起来看就一目了然了,execution是在被切入的方法中,call是在调用被切入的方法前或者后。 
对于Call来说:

  1. Call(Before)
  2. Pointcut{
  3. Pointcut Method
  4. }
  5. Call(After)
  • 1
  • 2
  • 3
  • 4
  • 5

对于Execution来说:

  1. Pointcut{
  2. execution(Before
  3. Pointcut Method
  4. execution(After
  5. }
  • 1
  • 2
  • 3
  • 4
  • 5

通配符使用 
1、截获任何包中以类名以Activity的所有方法

  1. //截获任何包中以类名以Activity的所有方法
  2. @Before("execution(* *..Activity+.*(..))")
  3. public void onActivityMethodBefore(JoinPoint joinPoint) throws Throwable {
  4. String key = joinPoint.getSignature().toString();
  5. Log.d(TAG, "onActivityMethodBefore: " + key+"\n"+joinPoint.getThis());
  6. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

运行效果如下:

aop18

2、 截获任何包中以类名以Activity、Fragment结尾的所有方法

  1. //截获任何包中以类名以Activity、Fragment结尾的所有方法
  2. @Before("execution(* *..Activity+.*(..)) ||execution(* *..Fragment+.*(..))")
  3. public void onActivityMethodBefore(JoinPoint joinPoint) throws Throwable {
  4. String key = joinPoint.getSignature().toString();
  5. Log.d(TAG, "onActivityMethodBefore: " + key+"\n"+joinPoint.getThis());
  6. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

运行效果如下:

aop21

AspectJ性能消耗实战

1、创建注解

首先我们创建我们的Java注解。这个注解周期声明在 class 文件上(RetentionPolicy.CLASS),可以注解构造函数和方法(ElementType.CONSTRUCTOR 和 ElementType.METHOD)。因此,我们的 DebugTrace.java 文件看上是这样的:

  1. /**
  2. * Indicates that the annotated method is being traced (debug mode only) and
  3. * will use {@link android.util.Log} to print debug data:
  4. * - Method name
  5. * - Total execution time
  6. * - Value (optional string parameter)
  7. */
  8. @Retention(RetentionPolicy.CLASS)
  9. @Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
  10. public @interface DebugTrace {}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

2、性能监控计时类

  1. /**
  2. * Copyright (C) 2014 android10.org. All rights reserved.
  3. * @author Fernando Cejas (the android10 coder)
  4. */
  5. package org.android10.gintonic.internal;
  6. import java.util.concurrent.TimeUnit;
  7. /**
  8. * Class representing a StopWatch for measuring time.
  9. */
  10. public class StopWatch {
  11. private long startTime;
  12. private long endTime;
  13. private long elapsedTime;
  14. public StopWatch() {
  15. //empty
  16. }
  17. private void reset() {
  18. startTime = 0;
  19. endTime = 0;
  20. elapsedTime = 0;
  21. }
  22. public void start() {
  23. reset();
  24. startTime = System.nanoTime();
  25. }
  26. public void stop() {
  27. if (startTime != 0) {
  28. endTime = System.nanoTime();
  29. elapsedTime = endTime - startTime;
  30. } else {
  31. reset();
  32. }
  33. }
  34. public long getTotalTimeMillis() {
  35. return (elapsedTime != 0) ? TimeUnit.NANOSECONDS.toMillis(endTime - startTime) : 0;
  36. }
  37. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

3、DebugLog 类

我只是包装了一下 “android.util.Log”,因为我首先想到的是向 android log 中增加更多的实用功能。下面是代码:

  1. package org.android10.gintonic.internal;
  2. import android.util.Log;
  3. /**
  4. * Wrapper around {@link android.util.Log}
  5. */
  6. public class DebugLog {
  7. private DebugLog() {}
  8. /**
  9. * Send a debug log message
  10. *
  11. * @param tag Source of a log message. It usually identifies the class or activity where the log
  12. * call occurs.
  13. * @param message The message you would like logged.
  14. */
  15. public static void log(String tag, String message) {
  16. Log.d(tag, message);
  17. }
  18. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

4、Aspect 类

  1. @Aspect
  2. public class TraceAspect {
  3. private static final String POINTCUT_METHOD =
  4. "execution(@org.android10.gintonic.annotation.DebugTrace * *(..))";
  5. private static final String POINTCUT_CONSTRUCTOR =
  6. "execution(@org.android10.gintonic.annotation.DebugTrace *.new(..))";
  7. @Pointcut(POINTCUT_METHOD)
  8. public void methodAnnotatedWithDebugTrace() {}
  9. @Pointcut(POINTCUT_CONSTRUCTOR)
  10. public void constructorAnnotatedDebugTrace() {}
  11. @Around("methodAnnotatedWithDebugTrace() || constructorAnnotatedDebugTrace()")
  12. public Object weaveJoinPoint(ProceedingJoinPoint joinPoint) throws Throwable {
  13. //获取方法信息对象
  14. MethodSignature methodSignature = (MethodSignature) joinPoint.getSignature();
  15. //获取当前对象
  16. String className = methodSignature.getDeclaringType().getSimpleName();
  17. String methodName = methodSignature.getName();
  18. //获取当前对象,通过反射获取类别详细信息
  19. //String className2 = joinPoint.getThis().getClass().getName();
  20. //初始化计时器
  21. final StopWatch stopWatch = new StopWatch();
  22. //开始监听
  23. stopWatch.start();
  24. //调用原方法的执行。
  25. Object result = joinPoint.proceed();
  26. //监听结束
  27. stopWatch.stop();
  28. DebugLog.log(className, buildLogMessage(methodName, stopWatch.getTotalTimeMillis()));
  29. return result;
  30. }
  31. /**
  32. * Create a log message.
  33. *
  34. * @param methodName A string with the method name.
  35. * @param methodDuration Duration of the method in milliseconds.
  36. * @return A string representing message.
  37. */
  38. private static String buildLogMessage(String methodName, long methodDuration) {
  39. StringBuilder message = new StringBuilder();
  40. message.append("Gintonic --> ");
  41. message.append(methodName);
  42. message.append(" --> ");
  43. message.append("[");
  44. message.append(methodDuration);
  45. message.append("ms");
  46. message.append("]");
  47. return message.toString();
  48. }
  49. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60

解释一下几个重点:

1、我们声明了两个作为 pointcuts 的 public 方法,筛选出所有通过 “org.android10.gintonic.annotation.DebugTrace” 注解的方法和构造函数。 
2、我们使用 “@Around” 注解定义了“weaveJointPoint(ProceedingJoinPoint joinPoint)”方法,使我们的代码注入在使用”@DebugTrace”注解的地方生效。 
3、“Object result = joinPoint.proceed();”这行代码是被注解的方法执行的地方,相当于onMeasure执行的地方。因此,在此之前,我们启动我们的计时类计时,在这之后,停止计时。 
4、最后,我们构造日志信息,用 Android Log 输出。

5、MyLinearLayout类

  1. /**
  2. * Copyright (C) 2014 android10.org. All rights reserved.
  3. * @author Fernando Cejas (the android10 coder)
  4. */
  5. package com.example.myaspectjapplication.component;
  6. import android.content.Context;
  7. import android.graphics.Canvas;
  8. import android.util.AttributeSet;
  9. import android.widget.LinearLayout;
  10. import org.android10.gintonic.annotation.DebugTrace;
  11. /**
  12. *
  13. */
  14. public class MyLinearLayout extends LinearLayout {
  15. public MyLinearLayout(Context context) {
  16. super(context);
  17. }
  18. public MyLinearLayout(Context context, AttributeSet attrs) {
  19. super(context, attrs);
  20. }
  21. public MyLinearLayout(Context context, AttributeSet attrs, int defStyle) {
  22. super(context, attrs, defStyle);
  23. }
  24. @DebugTrace
  25. @Override
  26. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  27. super.onMeasure(widthMeasureSpec, heightMeasureSpec);
  28. sleep(10);
  29. }
  30. @Override
  31. protected void onLayout(boolean changed, int l, int t, int r, int b) {
  32. super.onLayout(changed, l, t, r, b);
  33. }
  34. @Override
  35. protected void onDraw(Canvas canvas) {
  36. super.onDraw(canvas);
  37. }
  38. /**
  39. * Method for sleeping. Testing purpose. DON'T DO SOMETHING LIKE THIS!!!
  40. *
  41. * @param millis Amount of millis to sleep.
  42. */
  43. private void sleep(long millis) {
  44. try {
  45. Thread.sleep(millis);
  46. } catch (InterruptedException e) {
  47. e.printStackTrace();
  48. }
  49. }
  50. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60

6、LinearLayoutTestActivity的布局如下

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. >
  7. <com.example.myaspectjapplication.component.MyLinearLayout
  8. android:id="@+id/linearLayoutOne"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. />
  12. <com.example.myaspectjapplication.component.MyLinearLayout
  13. android:id="@+id/linearLayoutTwo"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. />
  17. <com.example.myaspectjapplication.component.MyLinearLayout
  18. android:id="@+id/linearLayoutThree"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. />
  22. </LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

只要在我们想监控的方法上加上 @DebugTrace即可,我在这里给onMeasure方法上注解,当我进入LinearLayoutTestActivity 类时,运行如下:

aop17

你可以在项目的任何一个方法中加上@DebugTrace注解,监控性能状况。

既然已经能够捕捉用户一切行为了,接下来应该是根据自己的业务规则来选择自己的一套策略来使用这些用户行为数据如何使用了。

本人演示环境 
若dome下载下来直接导入到as中不能运行,建议先调整环境,把dome先跑起来,看看效果之后,自己再折腾,谢谢。

API 21: Android 5.0 (Lollipop)

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. jcenter()
  5. }
  6. dependencies {
  7. //classpath 'com.android.tools.build:gradle:2.3.1'
  8. classpath 'com.android.tools.build:gradle:2.1.0'
  9. // NOTE: Do not place your application dependencies here; they belong
  10. // in the individual module build.gradle files
  11. }
  12. }
  13. allprojects {
  14. repositories {
  15. jcenter()
  16. }
  17. }
  18. task wrapper(type: Wrapper) {
  19. gradleVersion = '2.12'
  20. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  1. #Sat Jul 01 17:37:00 CST 2017
  2. distributionBase=GRADLE_USER_HOME
  3. distributionPath=wrapper/dists
  4. zipStoreBase=GRADLE_USER_HOME
  5. zipStorePath=wrapper/dists
  6. distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-all.zip
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

最后附上Dome下载地址: 
http://download.csdn.net/download/xinanheishao/9886917

apk反编译工具下载地址 
http://blog.csdn.net/xinanheishao/article/details/74278192

如果对你有所帮助的话,赏我1元奶粉钱吧,多谢!

微信:

001

支付宝:

002


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/266719
推荐阅读
相关标签
  

闽ICP备14008679号