Android系统之SystemServer

在上一文Android 系统的Zygote初始化过程说到,Zygote初始化的时候会调用RuntimeInit里面的zygoteInit()方法,在该方法里面调用了applicationInit()方法,然后通过反射调用了SystemServermain()函数。

SystemServer

SystemServermain函数如下

//frameworks/base/ android-7.1.2_r36/services /java/com/android/SystemServer.java
  public static void main(String[] args) {
        new SystemServer().run();
  }

创建一个SystemServer对象,同时执行run()方法。接下来就是来到run()方法


//frameworks/base/ android-7.1.2_r36/services /java/com/android/SystemServer.java
private void run() {
//...
    System.loadLibrary("android_servers");
    createSystemContext();
    mSystemServiceManager = new SystemServiceManager(mSystemContext);
    mSystemServiceManager.setRuntimeRestarted(mRuntimeRestart);
    LocalServices.addService(SystemServiceManager.class, mSystemServiceManager);
//...
}

主要有上面几个方法

  1. 加载了libandroid_servers.so,方法主要对应com_android_server_systemserver,com_android_server_systemserver主要有以下几个方法:
  • start_sensor_service 初始化手机传感器服务SensorService,并且添加到BinderService
static int start_sensor_service(void* /*unused*/) {
    SensorService::instantiate();`frameworks/native/services/sensorservice/SensorService.h`
    return 0;
}

SensorService.h继承于BinderService,BnSensorServer,ThreadBinderService 相关代码如下

//`frameworks/native/include/binder/BinderService.h`
static status_t publish(bool allowIsolated = false) {
        sp<IServiceManager> sm(defaultServiceManager());
        return sm->addService(
                String16(SERVICE::getServiceName()),
                new SERVICE(), allowIsolated);
    }
    static void publishAndJoinThreadPool(bool allowIsolated = false) {
        publish(allowIsolated);
        joinThreadPool();
    }
    static void instantiate() { publish(); }

instantiate调用了publish方法,在publish方法中主要把SensorService服务添加到ServiceManager,ServiceManagerBinder架构组成的组件之一,它是Binder的守护进程,主要维护和管理创建的各种Service

  • android_server_SystemServer_startSensorService
static void android_server_SystemServer_startSensorService(JNIEnv* /* env */, jobject /* clazz */) {
    char propBuf[PROPERTY_VALUE_MAX];
    property_get("system_init.startsensorservice", propBuf, "1");
    if (strcmp(propBuf, "1") == 0) {
        // Start the sensor service in a new thread
        createThreadEtc(start_sensor_service, nullptr,
                        "StartSensorThread", PRIORITY_FOREGROUND);
    }
}

异步启动手机传感器服务SensorService的JNI方法

  • register_android_server_SystemServer
int register_android_server_SystemServer(JNIEnv* env)
{
    return jniRegisterNativeMethods(env, "com/android/server/SystemServer",
            gMethods, NELEM(gMethods));
}

通过jni注册android_server_SystemServer_startSensorService方法,提供给给底层调用该方法启动传感器服务

  1. createSystemContext()方法
 // frameworks/base/ android-7.1.2_r36/core/java/android/app/ActivityThread.java
private void createSystemContext() {
       ActivityThread activityThread = ActivityThread.systemMain();
       mSystemContext = activityThread.getSystemContext();
       mSystemContext.setTheme(DEFAULT_SYSTEM_THEME);
}

这里涉及到ActivityThreadActivityThread主要管理应用进程的UI线程的执行,依次产生activities,broadcasts,或者一些其他的操作请求,这里主要的作用是创建Context。代码如下

//....
 android.ddm.DdmHandleAppName.setAppName("system_process",
                    UserHandle.myUserId());
            try {
                mInstrumentation = new Instrumentation();
                ContextImpl context = ContextImpl.createAppContext(
                        this, getSystemContext().mLoadedApk);
                mInitialApplication = context.mLoadedApk.makeApplication(true, null);
                mInitialApplication.onCreate();
            } catch (Exception e) {
                throw new RuntimeException(
                        "Unable to instantiate Application():" + e.toString(), e);
            }
//....
  • 设置ddms的应用进程号
  • 通过ContextImpl创建Context
  • 初始化Application,同时调用ApplicationonCreate方法
  1. 创建SystemServiceManager
//...
       mSystemServiceManager = new SystemServiceManager(mSystemContext);
       mSystemServiceManager.setRuntimeRestarted(mRuntimeRestart);
       LocalServices.addService(SystemServiceManager.class, mSystemServiceManager);
//...

创建system service manager并且添加到LocalServicesSystemServiceManager源码位于SystemService同目录下面,注意SystemServerSystemService的区别,SystemServer产生Android的各种服务,SystemService维护Service的生命周期的一个抽象类。它主要是通过ArrayList保存SystemService,在调用里面startService方法的时候添加并且开始执行运行


 @SuppressWarnings("unchecked")
    public <T extends SystemService> T startService(Class<T> serviceClass) {
        try {
          //...
            // Register it.
            mServices.add(service);
            // Start it.
            try {
                service.onStart();
            } catch (RuntimeException ex) {
                throw new RuntimeException("Failed to start service " + name
                        + ": onStart threw an exception", ex);
            }
            return service;
        } finally {
            Trace.traceEnd(Trace.TRACE_TAG_SYSTEM_SERVER);
        }
    }

LocalServices指的是本地服务,它跟随主进程,不是一个独立的进程。主进程结束后,相应的本地服务也会相应的结束。主要定义了一个ArrayMap来保存本地服务。

private static final ArrayMap<Class<?>, Object> sLocalServiceObjects =
            new ArrayMap<Class<?>, Object>();
  1. 启动一些其他服务
//...
 try {
            Trace.traceBegin(Trace.TRACE_TAG_SYSTEM_SERVER, "StartServices");
            startBootstrapServices();
            startCoreServices();
            startOtherServices();
        } catch (Throwable ex) {
            Slog.e("System", "******************************************");
            Slog.e("System", "************ Failure starting system services", ex);
            throw ex;
        } finally {
            Trace.traceEnd(Trace.TRACE_TAG_SYSTEM_SERVER);
        }
//...
  • startBootstrapServices,代码如下
  private void startBootstrapServices() {
        //...
        mActivityManagerService = mSystemServiceManager.startService(
                ActivityManagerService.Lifecycle.class).getService();
          //...
        mPowerManagerService = mSystemServiceManager.startService(PowerManagerService.class);
        //...
        mSystemServiceManager.startService(LightsService.class);
        //...
        mDisplayManagerService = mSystemServiceManager.startService(DisplayManagerService.class);
     //...
        mPackageManagerService = PackageManagerService.main(mSystemContext, installer,
                mFactoryTestMode != FactoryTest.FACTORY_TEST_OFF, mOnlyCore);
    //...
        if (!mOnlyCore) {
            boolean disableOtaDexopt = SystemProperties.getBoolean("config.disable_otadexopt",
                    false);
            if (!disableOtaDexopt) {
                traceBeginAndSlog("StartOtaDexOptService");
                try {
                    OtaDexoptService.main(mSystemContext, mPackageManagerService);
                } catch (Throwable e) {
                    reportWtf("starting OtaDexOptService", e);
                } finally {
                    Trace.traceEnd(Trace.TRACE_TAG_SYSTEM_SERVER);
                }
            }
        }
        //...
        mSystemServiceManager.startService(UserManagerService.LifeCycle.class);
            //...
        startSensorService();
    }

通过SystemServiceManagerstartService方法,启动了ActivityManagerServicePowerManagerService,LightsServiceDisplayManagerService,PackageManagerServiceOtaDexoptServiceSensorService等等

  • startCoreServices 代码如下
private void startCoreServices() {
        mSystemServiceManager.startService(BatteryService.class);
        mSystemServiceManager.startService(UsageStatsService.class);
        mActivityManagerService.setUsageStatsManager(
                LocalServices.getService(UsageStatsManagerInternal.class));
        // Tracks whether the updatable WebView is in a ready state and watches for update installs.
        mWebViewUpdateService = mSystemServiceManager.startService(WebViewUpdateService.class);
    }

也是通过SystemServiceManagerstartService方法,启动了BatteryServiceUsageStatsService,LightsServiceDisplayManagerService,UsageStatsManagerInternalWebViewUpdateService等等

  • startOtherServices 代码如下
    private void startOtherServices() {
        final Context context = mSystemContext;
        VibratorService vibrator = null;
        IMountService mountService = null;
        NetworkManagementService networkManagement = null;
        NetworkStatsService networkStats = null;
        NetworkPolicyManagerService networkPolicy = null;
        ConnectivityService connectivity = null;
        NetworkScoreService networkScore = null;
        NsdService serviceDiscovery= null;
        WindowManagerService wm = null;
        SerialService serial = null;
        NetworkTimeUpdateService networkTimeUpdater = null;
        CommonTimeManagementService commonTimeMgmtService = null;
        InputManagerService inputManager = null;
        TelephonyRegistry telephonyRegistry = null;
        ConsumerIrService consumerIr = null;
        MmsServiceBroker mmsService = null;
        HardwarePropertiesManagerService hardwarePropertiesService = null;

        StatusBarManagerService statusBar = null;
        INotificationManager notification = null;
        LocationManagerService location = null;
        CountryDetectorService countryDetector = null;
        ILockSettings lockSettings = null;
        AssetAtlasService atlas = null;
        MediaRouterService mediaRouter = null;
//...
}

这里就是Android的各种Service了。

总的来说SystemServerAndroid提供了各种Service服务,它和Zygote号称Android世界的两大支柱

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,245评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,749评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,960评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,575评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,668评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,670评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,664评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,422评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,864评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,178评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,340评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,015评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,646评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,265评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,494评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,261评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,206评论 2 352

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,019评论 25 707
  • Tip 本文主要介绍Android系统重启动到Home启动的过程,下面是本人整理的时序图(由于图片比较大,你们可以...
    jtsky阅读 1,096评论 0 4
  • 此文主要介绍Android启动后,从Init进程到Home界面的过程,首先上时序图: 我将从时序图上的序号开始一一...
    foxleezh阅读 1,906评论 1 7
  • 2017年3月16日。她永远的离开了我们。人,向死而生。而她,到达了生命的终点。 人的生命就好像一个轮回。看着体态...
    蕉蔬酱阅读 717评论 0 0
  • 写了300多篇文章,决心改变的那一天开始,我突然变得不知所措了。 过去写文章是为了什么?为了完成任务。所以开始不断...
    暁猴纸阅读 221评论 0 0