Android Framework系列3 系统服务

2021-02-24  本文已影响0人  无为3

你知道怎么添加一个系统服务吗?
要想弄清楚这个问题,先弄明白以下三个问题:

1). 有一个Service,可能有一堆Client要用它;首先Client得先拿到Service的binder,拿到binder后再向service发起binder调用。
2). 问题是Client不知道怎么拿到Service的binder;典型的做法是Service把它的binder注册到一个固定的地方也就是ServiceManager,当Client要用service的时候就通过这个service的名称,去ServiceManager中查到service的binder,再用这个binder向service发起调用。


由此总结下,我们要添加一个系统服务的话,需要考虑这么几个点:

使用方便

我们回想一下我们平时是怎么样使用系统服务的,就是通过这个
Context.getSystemService函数,这里的传入了这个服务的名称,然后这个函数会返回这个系统服务的接口对象:

// 代码来自Android23中:ContextImpl.java
public Object getSystemService(String name) {
        return SystemServiceRegistry.getSystemService(this, name);
    }
// 代码来自Android23中:SystemServiceRegistry.java
private static final HashMap<String, ServiceFetcher<?>> SYSTEM_SERVICE_FETCHERS =
            new HashMap<String, ServiceFetcher<?>>();
public static Object getSystemService(ContextImpl ctx, String name) {
        ServiceFetcher<?> fetcher = SYSTEM_SERVICE_FETCHERS.get(name);
        return fetcher != null ? fetcher.getService(ctx) : null;
    }
  • 通过服务的名称拿到服务对应的ServiceFetcher(通过名称在HashMap中拿到的)
  • 再用ServiceFetcher的getService函数来获取这个系统服务的接口对象。



接下来看下ServiceFetcher.getService

// 代码来自Android23中:SystemServiceRegistry.java
public final T getService(ContextImpl ctx) {
            final Object[] cache = ctx.mServiceCache;
            synchronized (cache) {
                // Fetch or create the service.
                Object service = cache[mCacheIndex];
                if (service == null) {
                    service = createService(ctx);
                    cache[mCacheIndex] = service;
                }
                return (T)service;
            }
        }
  • 获取context中的缓存mServiceCache(数组,跟Context挂钩,有几个Context就有几个缓存)
  • 如果命中缓存则直接返回服务的接口对象
  • 没命中则通过createService获取,然后再存入缓存中



再接着往下createService
以一个具体的createService为例

// 代码来自Android23中:SystemServiceRegistry.java
registerService(Context.POWER_SERVICE, PowerManager.class,
                new CachedServiceFetcher<PowerManager>() {
            @Override
            public PowerManager createService(ContextImpl ctx) {
                IBinder b = ServiceManager.getService(Context.POWER_SERVICE);
                IPowerManager service = IPowerManager.Stub.asInterface(b);
                return new PowerManager(ctx.getOuterContext(),
                        service, ctx.mMainThread.getHandler());
            }});
  • 从ServiceManager里边,根据这个Service的名称拿到了他的IBinder对象,IBinder其实就是一个BinderProxy(具体细节Binder章节再讲)。
  • 根据这个BinderProxy封装了一个IPowerManager类。
  • 再封装了一层,new了一个PowerManager对象返回。(为什么还要对BinderProxy封装,因为PowerManager就是一个静态代理类,里面每个函数实际都是调PowerManager方法加上try catch)



继续往下看ServiceManager.getService的实现

// 代码来自Android23中:ServiceManager.java
public static IBinder getService(String name) {
        try {
            IBinder service = sCache.get(name);
            if (service != null) {
                return service;
            } else {
                return getIServiceManager().getService(name);
            }
        } catch (RemoteException e) {
            Log.e(TAG, "error in getService", e);
        }
        return null;
    }

一个典型的缓存机制并不复杂,着重说下getIServiceManager。这个方法其实最终获取的就是ServiceManager它的BinderProxy对象,也就是ServiceManager的业务类。

服务开放

一个服务如何开放让别人知道?
系统服务的注册主要是通过ServiceManager的addService函数:

public static void addService(String name, IBinder service) {
        try {
            getIServiceManager().addService(name, service, false);
        } catch (RemoteException e) {
            Log.e(TAG, "error in addService", e);
        }
    }

这个函数看着挺简单,有两个入参,一个服务名称,一个服务的Binder对象。首先获取ServiceManager的Binder对象,然后调用这个addService(跨进程调用)。把这个name和service传给ServiceManager。



系统服务何时注册

SystemServer启动.png

跨进程调用

跨进程需要先启用binder机制,关于这个binder机制详细的在之后的系列文章中再介绍,主要有这么三个步骤:

总结

上一篇下一篇

猜你喜欢

热点阅读