Surgeon 是 Android 上一个简单,灵活,高性能的方法热替换框架

网友投稿 695 2022-11-03

Surgeon 是 Android 上一个简单,灵活,高性能的方法热替换框架

Surgeon 是 Android 上一个简单,灵活,高性能的方法热替换框架

Surgeon

English | 中文

Libsurgeon-pluginsurgeon-compile
latest1.0.31.0.1

Surgeon is a hot function replace framework for Android which was simple to use,flexible,high-performance.

Integration

//add pluginbuildscript { repositories { jcenter() } dependencies { classpath 'com.tangxiaolv.surgeon:surgeon-plugin:1.0.3' }}//use pluginapply plugin: 'com.android.library'apply plugin: 'com.tangxiaolv.surgeon'orapply plugin: 'com.android.application'apply plugin: 'com.tangxiaolv.surgeon'//add annotationProcessordependencies { annotationProcessor 'com.tangxiaolv.surgeon:surgeon-compile:1.0.1'}

Getting Started

1.Add annotation on target function

package com.tangxiaolv.sdk;public class SDKActivity extends AppCompatActivity { //namespace usually is packageName + className,Also can define any string if you want. //function function name,usually is current function name,Also can define any string if you want. //namespace + function must unique @ReplaceAble(namespace = "com.tangxiaolv.sdk.SDKActivity", function = "getTwo") private String getTwo() { return "TWO"; }}

2.Add annotation on replace function

//Create ISurgeon subclass.public class HotReplace implements ISurgeon { @Override public boolean singleton() { return false; } @Replace(namespace = "com.tangxiaolv.sdk.SDKActivity", function = "getTwo") public String getTwo(TargetHandle handle) { return "getTwo from HotReplace2"; }}

Advance

Target function

package com.tangxiaolv.sdk;public class SDKActivity extends AppCompatActivity { @ReplaceAble(namespace = "com.tangxiaolv.sdk.SDKActivity", function = "getTwo") private String getTwo() { return "TWO"; } @ReplaceAble(namespace = "com.tangxiaolv.sdk.SDKActivity", function = "getTwo.text") private String getTwo(String text) { return text; } @ReplaceAble(namespace = "com.tangxiaolv.sdk.SDKActivity", function = "getThree") private String getThree(String text) { return "getThree_"+text; }}

1.Static Replace

public class HotReplace implements ISurgeon { @Override public boolean singleton() { return false; } //called before target function call //target : target function owner object @ReplaceBefore(namespace = "com.tangxiaolv.sdk.SDKActivity", function = "getTwo") public void getTwoBefore(Object target) { } //replace target function //handle :You can invoke target function or get target function owner by handler. @Replace(namespace = "com.tangxiaolv.sdk.SDKActivity", function = "getTwo") public String getTwo(TargetHandle handle) { return "getTwo from remote"; } //replace target override function //handle :You can invoke target function or get target function owner by handler. @Replace(namespace = "com.tangxiaolv.sdk.SDKActivity", function = "getTwo.text")    public String getTwo(TargetHandle handle,String text/**target params*/) { return "getTwo from remote"; } //called after target function call //target : target function owner object @ReplaceAfter(namespace = "com.tangxiaolv.sdk.SDKActivity", function = "getTwo") public void getTwoAfter(Object target) { } //replace target function @Replace(namespace = "com.tangxiaolv.sdk.SDKActivity", function = "getThree") public String getThree(TargetHandle handle, String text) throws Throwable { String newText = text + "_hack!"; //invoke origin method with new params return (String) handle.proceed(newText); }}

1.Runtime Replace

//replace return value for target functionSurgeon.replace("com.tangxiaolv.sdk.SDKActivity.getTwo", "Runtime result");//replace return value for target override function Surgeon.replace("com.tangxiaolv.sdk.SDKActivity.getTwo.text", "Runtime result");//replace target functionSurgeon.replace("com.tangxiaolv.sdk.SDKActivity.getTwo", new ReplacerImpl(){ //params[0] = function owner's object,The other is origin params @Override public void before(Object[] params) { super.before(params); } //params[0] = TargetHandle,The other is origin params @Override public String replace(Object[] params) { return super.replace(params); } //params[0] = function owner's object,The other is origin params @Override public void after(Object[] params) { super.after(params); }});

ProGuard

-keep class * implements com.surgeon.weaving.core.interfaces.ISurgeon{*;}-keep class * implements com.surgeon.weaving.core.interfaces.IMaster{*;}

License

Copyright 2017 TangXiaoLvLicensed 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://apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed 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 andlimitations under the License.

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:springMvc后台接收复杂数据(数组,或者嵌套对象,或者嵌套对象数组)的思路
下一篇:centos搭建SSM应用实操
相关文章

 发表评论

暂时没有评论,来抢沙发吧~