死磕Android_ContentProvider 啟動(dòng)

先給出一個(gè)需要注意的點(diǎn):ContentProvider的onCreate方法比Application的onCreate方法先執(zhí)行. 下面會(huì)給出為什么.

ContentProvider相對(duì)于其他組件來說,用得稍微少一些.很少有APP需要向其他應(yīng)用提供數(shù)據(jù),保護(hù)自己的數(shù)據(jù)都來不及呢.當(dāng)然,除了一些大廠的APP,還有就是手機(jī)自帶的一些應(yīng)用(通訊錄,短信,相冊(cè)等等).ContentProvider可以向其他組件或者其他應(yīng)用提供數(shù)據(jù),其中是通過Binder來進(jìn)行通信的.ContentProvider中的數(shù)據(jù)提供不僅僅只有SQLite 一種方式.當(dāng)其他應(yīng)用訪問ContentProvider時(shí),如果該ContentProvider的進(jìn)程沒有啟動(dòng),那么第一次訪問該ContentProvider就會(huì)觸發(fā)該ContentProvider的的進(jìn)程啟動(dòng).

建議先看一下,之前我寫的系列文章,才能更好的理解本文

ps: 本文基于API 28的源碼分析的

1. 進(jìn)程的啟動(dòng)

APP啟動(dòng)時(shí)會(huì)啟動(dòng)一個(gè)新的進(jìn)程,該進(jìn)程的入口在ActivityThread的main方法中.

public static void main(String[] args) {
    
    //準(zhǔn)備主線程的Looper
    Looper.prepareMainLooper();
    
    //創(chuàng)建ActivityThread實(shí)例,調(diào)用attach方法
    ActivityThread thread = new ActivityThread();
    thread.attach(false, startSeq);

    if (sMainThreadHandler == null) {
        sMainThreadHandler = thread.getHandler();
    }

    //主線程的消息循環(huán)啊,開始
    Looper.loop();

    throw new RuntimeException("Main thread loop unexpectedly exited");
}

main方法就那么幾句代碼,我們很方便得看出它的邏輯.Looper的那個(gè)邏輯在死磕Android_Handler機(jī)制你需要知道的一切中已做詳細(xì)講解,這里不再贅述.然后就是會(huì)在main方法里面創(chuàng)建ActivityThread的實(shí)例, 這個(gè)時(shí)候我們只要跟著attach方法進(jìn)入看看干了什么騷操作

private void attach(boolean system, long startSeq) {
    ......
    final IActivityManager mgr = ActivityManager.getService();
    mgr.attachApplication(mAppThread, startSeq);
}

attach方法對(duì)我們來說,需要關(guān)注的點(diǎn)就是上面的兩句代碼,其他的非主流程的代碼我都略去了... 又又又又遇到了ActivityManager.getService(),前面的文章提到過特別多次,它就是AMS,IActivityManager是用來與AMS進(jìn)行跨進(jìn)程通信的,這里調(diào)用了AMS的attachApplication方法.

2. 路過AMS

下面是attachApplication方法的源碼

@Override
public final void attachApplication(IApplicationThread thread, long startSeq) {
    attachApplicationLocked(thread, callingPid, callingUid, startSeq);
}
@GuardedBy("this")
private final boolean attachApplicationLocked(IApplicationThread thread,
        int pid, int callingUid, long startSeq) {

    thread.bindApplication(processName, appInfo, providers,
            app.instr.mClass,
            profilerInfo, app.instr.mArguments,
            app.instr.mWatcher,
            app.instr.mUiAutomationConnection, testMode,
            mBinderTransactionTrackingEnabled, enableTrackAllocation,
            isRestrictedBackupMode || !normalMode, app.persistent,
            new Configuration(getGlobalConfiguration()), app.compat,
            getCommonServicesLocked(app.isolated),
            mCoreSettingsObserver.getCoreSettingsLocked(),
            buildSerial, isAutofillCompatEnabled);

    return true;
}

這里的thread是ApplicationThread,它繼承了IApplicationThread.Stub,跨進(jìn)程通信,是一個(gè)Binder對(duì)象.所以上面的bindApplication方法是在ApplicationThread中的

3. 又回ActivityThread

下面是ActivityThread中的內(nèi)部類ApplicationThread中的bindApplication方法

public final void bindApplication(String processName, ApplicationInfo appInfo,
        List<ProviderInfo> providers, ComponentName instrumentationName,
        ProfilerInfo profilerInfo, Bundle instrumentationArgs,
        IInstrumentationWatcher instrumentationWatcher,
        IUiAutomationConnection instrumentationUiConnection, int debugMode,
        boolean enableBinderTracking, boolean trackAllocation,
        boolean isRestrictedBackupMode, boolean persistent, Configuration config,
        CompatibilityInfo compatInfo, Map services, Bundle coreSettings,
        String buildSerial, boolean autofillCompatibilityEnabled) {

    setCoreSettings(coreSettings);

    AppBindData data = new AppBindData();
    data.processName = processName;
    data.appInfo = appInfo;
    data.providers = providers;
    data.instrumentationName = instrumentationName;
    data.instrumentationArgs = instrumentationArgs;
    data.instrumentationWatcher = instrumentationWatcher;
    data.instrumentationUiAutomationConnection = instrumentationUiConnection;
    data.debugMode = debugMode;
    data.enableBinderTracking = enableBinderTracking;
    data.trackAllocation = trackAllocation;
    data.restrictedBackupMode = isRestrictedBackupMode;
    data.persistent = persistent;
    data.config = config;
    data.compatInfo = compatInfo;
    data.initProfilerInfo = profilerInfo;
    data.buildSerial = buildSerial;
    data.autofillCompatibilityEnabled = autofillCompatibilityEnabled;
    sendMessage(H.BIND_APPLICATION, data);
}

這個(gè)方法沒啥說的,就是賦值一些屬性,然后發(fā)送一個(gè)消息到大名鼎鼎的H這個(gè)Handler,之前的文章也分析過這個(gè)Handler.這個(gè)消息在處理時(shí)就只是調(diào)用了ActivityThread的handleBindApplication方法

 private void handleBindApplication(AppBindData data) {

    //創(chuàng)建ContextImpl 
    final ContextImpl appContext = ContextImpl.createAppContext(this, data.info);

    //創(chuàng)建Instrumentation
    final ClassLoader cl = instrContext.getClassLoader();
    mInstrumentation = (Instrumentation)
        cl.loadClass(data.instrumentationName.getClassName()).newInstance();

    final ComponentName component = new ComponentName(ii.packageName, ii.name);
    mInstrumentation.init(this, instrContext, appContext, component,
            data.instrumentationWatcher, data.instrumentationUiAutomationConnection);

    //創(chuàng)建Application    
    Application app;
    app = data.info.makeApplication(data.restrictedBackupMode, null);

    //注意,這里是install ContentProvider
    installContentProviders(app, data.providers);
    
    //調(diào)用Application的onCreate方法
    mInstrumentation.callApplicationOnCreate(app);
}

handleBindApplication方法干了很多事情

  1. 創(chuàng)建ContextImpl
  2. 創(chuàng)建Instrumentation
  3. 創(chuàng)建Application
  4. 創(chuàng)建ContentProvider,并調(diào)用其onCreate方法
  5. 調(diào)用Application的onCreate方法

下面我們繼續(xù)深入installContentProviders方法

private void installContentProviders(
            Context context, List<ProviderInfo> providers) {
    final ArrayList<ContentProviderHolder> results = new ArrayList<>();

    for (ProviderInfo cpi : providers) {
        //構(gòu)建ContentProvider
        ContentProviderHolder cph = installProvider(context, null, cpi,
                false /*noisy*/, true /*noReleaseNeeded*/, true /*stable*/);
        if (cph != null) {
            cph.noReleaseNeeded = true;
            results.add(cph);
        }
    }

    try {
        ActivityManager.getService().publishContentProviders(
            getApplicationThread(), results);
    } catch (RemoteException ex) {
        throw ex.rethrowFromSystemServer();
    }
}

private ContentProviderHolder installProvider(Context context,
        ContentProviderHolder holder, ProviderInfo info,
        boolean noisy, boolean noReleaseNeeded, boolean stable) {
    ContentProvider localProvider = null;

    //通過ClassLoader 反射構(gòu)建ContentProvider
    final java.lang.ClassLoader cl = c.getClassLoader();
    localProvider = packageInfo.getAppFactory()
            .instantiateProvider(cl, info.name);
    
    //attachInfo方法里面就會(huì)調(diào)用ContentProvider的onCreate方法
    localProvider.attachInfo(c, info);

    return retHolder;
}

分析上面的代碼,installContentProviders方法會(huì)遍歷所有的Provider, 然后分別構(gòu)建,最后將這些構(gòu)建好的Provider都publish到AMS中.當(dāng)然在installProvider構(gòu)建ContentProvider方法里面,它是調(diào)用了ContentProvider的onCreate方法的,下面請(qǐng)看詳情

ContentProvider.java => attachInfo
public void attachInfo(Context context, ProviderInfo info) {
    attachInfo(context, info, false);
}

private void attachInfo(Context context, ProviderInfo info, boolean testing) {
    ContentProvider.this.onCreate();
}

當(dāng)然,到了這里,一個(gè)ContentProvider就此啟動(dòng).我們也看到了,ContentProvider的onCreate方法確實(shí)是比Application的onCreate方法先調(diào)用.

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子郊愧,更是在濱河造成了極大的恐慌,老刑警劉巖坏快,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異哄尔,居然都是意外死亡假消,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門岭接,熙熙樓的掌柜王于貴愁眉苦臉地迎上來富拗,“玉大人,你說我怎么就攤上這事鸣戴】谢Γ” “怎么了?”我有些...
    開封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵窄锅,是天一觀的道長(zhǎng)创千。 經(jīng)常有香客問我缰雇,道長(zhǎng),這世上最難降的妖魔是什么追驴? 我笑而不...
    開封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任械哟,我火速辦了婚禮,結(jié)果婚禮上殿雪,老公的妹妹穿的比我還像新娘暇咆。我一直安慰自己,他們只是感情好丙曙,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開白布爸业。 她就那樣靜靜地躺著,像睡著了一般亏镰。 火紅的嫁衣襯著肌膚如雪扯旷。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天索抓,我揣著相機(jī)與錄音钧忽,去河邊找鬼。 笑死纸兔,一個(gè)胖子當(dāng)著我的面吹牛惰瓜,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播汉矿,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼备禀!你這毒婦竟也來了洲拇?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤曲尸,失蹤者是張志新(化名)和其女友劉穎赋续,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體另患,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡纽乱,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了昆箕。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片鸦列。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖鹏倘,靈堂內(nèi)的尸體忽然破棺而出薯嗤,到底是詐尸還是另有隱情,我是刑警寧澤纤泵,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布骆姐,位于F島的核電站,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏玻褪。R本人自食惡果不足惜肉渴,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望带射。 院中可真熱鬧黄虱,春花似錦、人聲如沸庸诱。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)桥爽。三九已至朱灿,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間钠四,已是汗流浹背盗扒。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留缀去,地道東北人侣灶。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像缕碎,于是被迫代替她去往敵國(guó)和親褥影。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容