Android 부팅 관련 클래스

3832 단어
Zygote 프로세스 Zygote 프로세스가 시작되면 startSystemServer를 호출하면 SystemServer 프로세스가 시작됩니다.
SystemServer 프로세스는 SystemServer 클래스에 init2 방법이 있습니다. 이 방법은 ServerThread 스레드를 만들어서run 방법에 다양한 서비스 서비스를 등록합니다.
서비스 매니저는 1을 어떻게 시작하는지, 먼저 IS 서비스 매니저 (aidl 파일) 인터페이스를 가져오고, 이후의 모든 호출은 IS 서비스 매니저 인터페이스를 조정하는 방법입니다.서비스 서비스 관리자를 시작합니다.addService(name, 서비스), 호출된 geti 서비스 관리자().addService(name, service).
2. Service Manager 자체는 어떻게 시작합니까?이것은 c층에서 getContextObject를 통해 변환됩니다
sp defaultServiceManager()
{
    if (gDefaultServiceManager != NULL) return gDefaultServiceManager;
    {
        AutoMutex _l(gDefaultServiceManagerLock);
        if (gDefaultServiceManager == NULL) {
            gDefaultServiceManager = interface_cast(
                ProcessState::self()->getContextObject(NULL));
        }
    }
    return gDefaultServiceManager;
}

SystemServer에서 Activity Manager Service 시작
SystemServer에서 context = Activity Manager Service를 호출합니다.main (factory Test) 은main 방법에서 Athread 라인을 만들고 이 라인에서 new Activity Manager 서비스 대상을 만들고, 생성이 완료되면 변수 mSelf 변수를 부여합니다.
private void main(){
    ActivityManagerService m = thr.mService;
    mSelf = m;
    ActivityThread at = ActivityThread.systemMain();//  ActivityThread
    mSystemThread = at;
    Context context = at.getSystemContext(); //         
    context.setTheme(android.R.style.Theme_Holo);//    
    m.mContext = context;
    m.mFactoryTest = factoryTest;
    m.mMainStack = new ActivityStack(m, context, true);

    m.mBatteryStatsService.publish(context);
    m.mUsageStatsService.publish(context);
    
}

ActivityThread에서.시스템Main () -->attach () 안에 mInstrumentation = new Instrumentation () 을 만듭니다.
ContextImpl context = new ContextImpl();
context.init(getSystemContext().mPackageInfo, null, this);
Application app = Instrumentation.newApplication(Application.class, context);
mAllApplications.add(app);
mInitialApplication = app;
app.onCreate(); 
            

ActivityManagerService를 호출합니다.setSystemProcess 메서드
 public static void setSystemProcess() {
        try {
            ActivityManagerService m = mSelf;
            
            ServiceManager.addService("activity", m);
            ServiceManager.addService("meminfo", new MemBinder(m));
            ServiceManager.addService("gfxinfo", new GraphicsBinder(m));
            ServiceManager.addService("permission", new PermissionController(m));

            ApplicationInfo info =
                mSelf.mContext.getPackageManager().getApplicationInfo(
                        "android", STOCK_PM_FLAGS);
            mSystemThread.installSystemApplicationInfo(info);
       
            synchronized (mSelf) {
                ProcessRecord app = mSelf.newProcessRecordLocked(
                        mSystemThread.getApplicationThread(), info,
                        info.processName);
                app.persistent = true;
                app.pid = MY_PID;
                app.maxAdj = ProcessList.SYSTEM_ADJ;
                mSelf.mProcessNames.put(app.processName, app.info.uid, app);
                synchronized (mSelf.mPidsSelfLocked) {
                    mSelf.mPidsSelfLocked.put(app.pid, app);
                }
                mSelf.updateLruProcessLocked(app, true, true);
            }
        } catch (PackageManager.NameNotFoundException e) {
            throw new RuntimeException(
                    "Unable to find android system package", e);
        }
    }
    

SystemServiceManager
WindowManager Service에서 WindowManager Service를 만듭니다. 이것은 AMS와 마찬가지로 new를 통해 만듭니다.다음 코드를 사용하여 AMS와 WMS를 연결합니다ActivityManagerService.self().setWindowManager(wm);

좋은 웹페이지 즐겨찾기