一、Service 外掛化思路
很可惜,Small
不支援Service
的外掛化,但是在專案中我們確實有這樣的需求,那麼就需要研究一下如何自己來實現Service
的外掛化。在討論如何實現Service
的外掛化之前,必須有三點準備:
- 掌握
Service
的基本知識,包括Service
的生命週期、如何啟動和結束Service
,bindService
和startService
之間的區別和聯絡,這一部分就不過多介紹了,大家可以看一下 Carson_Ho 大神這篇文章,介紹的很全面 Android四大元件:Service服務史上最全面解析。 - 瞭解
Service
啟動的內部原理,對原始碼進行一次簡單的走讀,主要是對Service
呼叫者、所有者以及AMS
之間的三方通訊有一個清晰的認識,大家可以看一下我之前寫的這篇文章 Framework 原始碼解析知識梳理(5) - startService 原始碼分析。 - 掌握動態代理的知識,這裡在前面分析
Retrofit
的時候也有介紹過,Retrofit 知識梳理(2) - Retrofit 動態代理內部實現。
在 外掛化知識梳理(6) - Small 原始碼分析之 Hook 原理 這篇文章中,我們一起學習瞭如何實現Activity
的外掛化,簡單地來說,實現原理就是:
- 在呼叫
startActivity
啟動外掛Activity
後,通過替換mInstrumentation
成員變數,攔截這一啟動過程,在後臺偷偷地把startActivity
時傳入的intent
中的component
替換成為在AndroidManifest.xml
中預先註冊的佔坑Activity
,再通知ActivityManagerService
。 - 當
ActivityManagerService
完成排程後,有替換客戶端中的ActivityThread
中的mH
中的mCallback
,將佔坑的Activity
重新恢復成外掛的Activity
。
而Service
的外掛化也可以採用類似的方式,大體的思路如下:
- 在呼叫
startService
啟動外掛Service
時,通過攔截ActivityManagerProxy
的對應方法,將Intent
中的外掛Service
型別替換成預先在AndroidManifest.xml
中預先註冊好的佔坑Service
。 - 當
AMS
通過ApplicationThreadProxy
回撥佔坑Service
對應的生命週期時,我們再在佔坑Service
中的onStartCommand
中,去建立外掛Service
的例項,如果是第一次建立,那麼先呼叫它的onCreate
方法,再呼叫它的onStartCommand
方法,否則,就只呼叫onStartCommand
方法就可以了。 - 在呼叫
stopService
停止外掛Service
時,同樣通過攔截ActivityManagerProxy
的對應方法,去呼叫外掛Service
的onDestroy
,如果此時發現沒有任何一個與佔坑Service
關聯的外掛Service
執行時,那麼就可以停止外掛Service
了。
二、具體實現
傳了一個簡單的例子到倉庫,大家可以簡單地對照著看一下,下面,我們開始分析具體的實現。
2.1 準備工作
初始化的過程如下所示:
public void setup(Context context) {
try {
//1.通過反射獲取到ActivityManagerNative類。
Class<?> activityManagerNativeClass = Class.forName("android.app.ActivityManagerNative");
Field gDefaultField = activityManagerNativeClass.getDeclaredField("gDefault");
gDefaultField.setAccessible(true);
Object gDefault = gDefaultField.get(activityManagerNativeClass);
//2.獲取mInstance變數。
Class<?> singleton = Class.forName("android.util.Singleton");
Field instanceField = singleton.getDeclaredField("mInstance");
instanceField.setAccessible(true);
//3.獲取原始的物件。
Object original = instanceField.get(gDefault);
//4.動態代理,用於攔截Intent。
Class<?> iActivityManager = Class.forName("android.app.IActivityManager");
Object proxy = Proxy.newProxyInstance(context.getClassLoader(), new Class[]{ iActivityManager }, new IActivityManagerInvocationHandler(original));
instanceField.set(gDefault, proxy);
//5.讀取外掛當中的Service。
loadService();
//6.佔坑的Component。
mStubComponentName = new ComponentName(ServiceManagerApp.getAppContext().getPackageName(), StubService.class.getName());
} catch (Exception e) {
e.printStackTrace();
}
}
複製程式碼
這裡最主要的就是做了兩件事:
2.1.1 對 ActivityManagerNative.getDefault() 呼叫的攔截
這裡應用到了動態代理的知識,我們用Proxy.newProxyInstance
所建立的proxy
物件,替代了ActivityManagerNative
中的gDefault
靜態變數。在 Framework 原始碼解析知識梳理(1) - 應用程式與 AMS 的通訊實現 中,我們分析過,它其實是一個AMS
在應用程式程式中的代理類。通過這一替換過程,那麼當呼叫ActivityManagerNative.getDefault()
方法時,就會先經過IActivityManagerInvocationHandler
類,我們就可以根據invoke
所傳入的方法名,在方法真正被呼叫之前插入一些自己的邏輯(也就是前文所說的,將啟動外掛Service
的Intent
替換成啟動佔坑Service
的Intent
),最後才會通過Binder
呼叫到達AMS
端,以此達到了“欺騙系統”的目的。
下面是InvocationHandler
的具體實現,建構函式中傳入的是原始的ActivityManagerProxy
物件。
private class IActivityManagerInvocationHandler implements InvocationHandler {
private Object mOriginal;
public IActivityManagerInvocationHandler(Object original) {
mOriginal = original;
}
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
String methodName = method.getName();
switch (methodName) {
case "startService":
Intent matchIntent = null;
int matchIndex = 0;
for (Object object : args) {
if (object instanceof Intent) {
matchIntent = (Intent) object;
break;
}
matchIndex++;
}
if (matchIntent != null && ServiceManager.getInstance().isPlugService(matchIntent.getComponent())) {
Intent stubIntent = new Intent(matchIntent);
stubIntent.setComponent(getStubComponentName());
stubIntent.putExtra(KEY_ORIGINAL_INTENT, matchIntent);
//將外掛的Service替換成佔坑的Service。
args[matchIndex] = stubIntent;
}
break;
case "stopService":
Intent stubIntent = null;
int stubIndex = 0;
for (Object object : args) {
if (object instanceof Intent) {
stubIntent = (Intent) object;
break;
}
stubIndex++;
}
if (stubIntent != null) {
boolean destroy = onStopService(stubIntent);
if (destroy) {
//如果需要銷燬佔坑的Service,那麼就替換掉Intent進行處理。
Intent destroyIntent = new Intent(stubIntent);
destroyIntent.setComponent(getStubComponentName());
args[stubIndex] = destroyIntent;
} else {
//由於在onStopService中已經手動呼叫了onDestroy,因此這裡什麼也不需要做,直接返回就可以。
return null;
}
}
break;
default:
break;
}
Log.d("ServiceManager", "call invoke, methodName=" + method.getName());
return method.invoke(mOriginal, args);
}
}
複製程式碼
先看startService
,args
引數中儲存了startService
所傳入的實參,這裡面就包含了啟動外掛Service
的Intent
,我們將目標Intent
的Component
替換成為佔坑的Component
,然後將原始的Intent
儲存在KEY_ORIGINAL_INTENT
欄位當中,最後,通過原始的物件呼叫到ActivityManagerService
端。
2.1.2 載入外掛 Service 類
這裡其實就是用到了前面介紹的DexClassLoader
的知識,詳細的可以看一下前面的這兩篇文章 外掛化知識梳理(7) - 類的動態載入入門,外掛化知識梳理(8) - 類的動態載入原始碼分析。
最終,我們會將外掛Service
的Class
物件儲存在一個mLoadServices
的Map
當中,它的Key
就是外掛Service
的包名和類名。
private void loadService() {
try {
//從外掛中載入Service類。
File dexOutputDir = ServiceManagerApp.getAppContext().getDir("dex2", 0);
String dexPath = Environment.getExternalStorageDirectory().toString() + PLUG_SERVICE_PATH;
DexClassLoader loader = new DexClassLoader(dexPath, dexOutputDir.getAbsolutePath(), null, ServiceManagerApp.getAppContext().getClassLoader());
try {
Class clz = loader.loadClass(PLUG_SERVICE_NAME);
mLoadedServices.put(new ComponentName(PLUG_SERVICE_PKG, PLUG_SERVICE_NAME), clz);
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
}
複製程式碼
2.2 啟動外掛 Service
接下來,在宿主中通過下面的方式啟動外掛Service
類:
public void startService(View view) {
Intent intent = new Intent();
intent.setComponent(new ComponentName(ServiceManager.PLUG_SERVICE_PKG, ServiceManager.PLUG_SERVICE_NAME));
startService(intent);
}
複製程式碼
按照前面的分析,首先會走到我們預設的“陷阱”當中,可以看到,這裡面的Intent
還是外掛Service
的Component
名字:
Intent
就變成了佔坑的Service
。
如果一切正常,接下來佔坑Service
就會啟動,依次呼叫它的onCreate
和onStartCommand
方法,我們在onStartCommand
中,再去回撥外掛Service
對應的生命週期:
public class StubService extends Service {
@Override
public void onCreate() {
super.onCreate();
Log.d("StubService", "onCreate");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d("StubService", "onStartCommand");
ServiceManager.getInstance().onStartCommand(intent, flags, startId);
return super.onStartCommand(intent, flags, startId);
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onDestroy() {
super.onDestroy();
ServiceManager.getInstance().onDestroy();
Log.d("StubService", "onDestroy");
}
}
複製程式碼
這裡,我們取出之前儲存在KEY_ORIGINAL_INTENT
中原始的Intent
,通過它找到對應外掛Service
的包名和類名,以此為key
,在mLoadedServices
中找到前面從外掛apk
中載入的Service
類,並通過反射例項化該物件,如果是第一次建立,那麼先執行它的onCreate
方法,並將它儲存在mAliveServices
中,之後再執行它的onStartCommand
方法。
2.3 停止外掛 Service
當我們通過stopService
方法,停止外掛Service
時,也會和前面類似,先走到攔截的邏輯當中:
onStop
方法中,我們判斷它是否是需要停止外掛Service
,如果是那麼就呼叫外掛Service
的onDestory()
方法,並且判斷與佔坑Service
相關聯的外掛Service
是否都已經結束了,如果是,那麼就返回true
,讓佔坑Service
也銷燬。
銷燬的時候,就是將外掛Service
的Intent
替換成佔坑Service
:
這時的列印為:
三、總結
以上,就是實現外掛化Service
的核心思路,實現起來並不簡單,需要涉及到很多的知識,這已經是外掛化學習的第十篇文章了。如果大家能一路看下來,可以發現,其實外掛化並沒有什麼神祕的地方,如果我們希望實現任意一個元件的外掛化,無非就是以下幾點:
- 元件的生命週期。
- 元件的啟動過程,最主要就是和
ActivityManagerService
的互動過程,這也是最難的地方,要花很多的時間去看原始碼,而且各個版本的API
也可能有所差異。 - 外掛化常用技巧,也就是
Hook
,動態代理之類的知識。 - 類動態載入的知識。
掌握了以上幾點,對於市面上大廠的外掛框架基本能夠看懂個六七成,但是對於大多數人而言,並沒有這麼多的時間和條件,去分析一些細節問題。我寫的這些文章,也只能算是入門水平,和大家一起學習基本的思想。真正核心的東西,還是需要有機會能應用到生產環境中才能真正掌握。
很可惜,我也沒有這樣的機會,感覺每天工作的時間都是在調UI
、解Bug
、浪費時間,只能靠著晚上的時間,一點點摸索,寫Demo
,哎,說出來都是淚,還有半年,繼續加油吧!
更多文章,歡迎訪問我的 Android 知識梳理系列:
- Android 知識梳理目錄:www.jianshu.com/p/fd82d1899…
- 個人主頁:lizejun.cn
- 個人知識總結目錄:lizejun.cn/categories/