Android 부팅 관련 클래스
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);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.