使用 AOP 来为第三方 SDK 打 CALL
一 背景
android 的版本的更替往往需要开发者进行跟进.
Notification 在Android 8.0 上需要做一些兼容的工作.官方指导文档
二 适配
适配工作分为两步
1 根据一个channelId 生成NotificationChannel 作为推送通道
1 | public static void init(Context ctx) { |
2 所有的通知需要设置 channelId:
设置的方式:1
new Notification.Builder(ctx).setChannelId(channelId);
到此兼容的工作算是完成了.
但是这里的兼容只是局限在我们自己的业务代码.
三. 业务外的代码怎么办呢?
比如说在个推的GetuiSDK2.10.3.5 并没有对 Notification 做相关的处理.
Q: 怎么办?
A: 使用 AOP 为第三方 SDK 修BUG , 适配新特性 .
AOP 的实现有很多方式,这里我们会讲3种方式来实现这个效果.
一. 使用 lancet ( 饿了么开源的 AOP 框架 )
引入:https://github.com/eleme/lancet1
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
36public class NotifactionFix {
public static final String CHANNEL = "dim";
@Proxy("notify")
@TargetClass("android.app.NotificationManager")
public void notify(int id, Notification notification) {
if (SDK_INT >= 26) {
maybeSetChannelId(notification);
}
Origin.callVoid();
}
@Proxy("notify")
@TargetClass("android.app.NotificationManager")
public void notify(String tag, int id, Notification notification) {
maybeSetChannelId(notification);
Origin.callVoid();
}
public static void maybeSetChannelId(Notification notification) {
if (SDK_INT >= 26) {
if (TextUtils.isEmpty(notification.getChannelId())) {
try {
Field mChannelId = Notification.class.getDeclaredField("mChannelId");
mChannelId.setAccessible(true);
mChannelId.set(notification,CHANNEL);
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
}
}
二 使用 aspectjX
引入 :https://github.com/HujiangTechnology/gradle_plugin_android_aspectjx
1 | @Aspect |
三 使用 ASM 框架.
3.1 Android Plugin 处理
在androisjd 打包中加入对 class 的处理
引入’ compile ‘org.ow2.asm:asm:6.0_ALPHA’’
1 | byte[] process(byte[] src) { |
AopClassVisitor.java1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20public class AopClassVisitor extends ClassVisitor {
private String className;
public AopClassVisitor(ClassWriter cw) {
super(Opcodes.ASM5, cw);
}
@Override
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) {
className = name;
}
@Override
public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
if (className.equals("red/dim/hook/NotificationFix")) {
return super.visitMethod(access, name, desc, signature, exceptions);
}
return new AopMethodVisitor(super.visitMethod(access, name, desc, signature, exceptions));
}
}
AopMethodVisitor.java1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25public class AopMethodVisitor extends MethodVisitor {
AopMethodVisitor(MethodVisitor methodVisitor) {
super(Opcodes.ASM5, methodVisitor);
}
@Override
public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) {
if (opcode == Opcodes.INVOKEINTERFACE
&& "android/app/NotificationManager".equals(owner)
&& "notify".equals(name)
&& "(I;Landroid/app/Notification)V".equals(desc)) {
visitMethodInsn(Opcodes.INVOKESTATIC, "red/dim/hook/NotificationFix", "notify", "(Landroid/app/NotificationManager;I;Landroid/app/Notification)V", false);
return;
}
if (opcode == Opcodes.INVOKEINTERFACE
&& "android/app/NotificationManager".equals(owner)
&& "notify".equals(name)
&& "(Ljava.lang.String;I;Landroid/app/Notification)V".equals(desc)) {
visitMethodInsn(Opcodes.INVOKESTATIC, "red/dim/hook/NotificationFix", "notify", "(Landroid/app/NotificationManager;Ljava.lang.String;I;Landroid/app/Notification)V", false);
return;
}
super.visitMethodInsn(opcode, owner, name, desc, itf);
}
}
总结
上述的代码通过字节码分析将所有的NotificationManager 的 notify 的两个方法的调用都路由到
NotificationFix 的 notify 静态方法上.
3.2 SDK 处理
在 SDK 加入处理类
red.dim.hook.NotificationFix.java1
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
30public class NotificationFix {
public static final String CHANNEL = "dim";
public static void notify(NotificationManager notificationManager, int id, Notification notification) {
maybeSetChannelId(notification);
notificationManager.notify(id, notification);
}
public static void notify(NotificationManager notificationManager, String tag, int id, Notification notification) {
maybeSetChannelId(notification);
notificationManager.notify(tag, id, notification);
}
private static void maybeSetChannelId(Notification notification) {
if (SDK_INT >= 26) {
if (TextUtils.isEmpty(notification.getChannelId())) {
try {
Field mChannelId = Notification.class.getDeclaredField("mChannelId");
mChannelId.setAccessible(true);
mChannelId.set(notification, CHANNEL);
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
}
}
四 总结
三种 AOP 方式 各有优势