欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

往Android系统中添加服务的方法教程

程序员文章站 2023-11-05 11:00:10
前言 最近因为公司的平台要从android 4.4.4 转战 android 6.0, 带来的问题是之前我们在系统中添加了一些服务, 于是要将一些系统级的服务迁移过去,以...

前言

最近因为公司的平台要从android 4.4.4 转战 android 6.0, 带来的问题是之前我们在系统中添加了一些服务, 于是要将一些系统级的服务迁移过去,以及一些framework 的自定义包.

碰巧在gerrit上看到了添加系统服务这一块的patch.正好做个总结.虽然我不是framework工程师, 但是了解android系统还是很有好处的.

如何获取系统服务

我们获取系统服务都是在context中,getsystemservice获取到的. 那么我们看一下getsystemservice发生了哪些些事情.

getsystemservice的实现是contextimpl,我们去看一下contextimpl的源码就知道了.

android 4.4.4 (kitkat)

这里是android4.4.4的源码, 6.0的源码过会儿看.

 //这是我们获取服务的路口
 @override
 public object getsystemservice(string name) {
  //可以看到我们是从一个hashmap中拿的服务.
  servicefetcher fetcher = system_service_map.get(name);
  return fetcher == null ? null : fetcher.getservice(this);
 }

 private static final hashmap<string, servicefetcher> system_service_map =
    new hashmap<string, servicefetcher>();
 //这是注册服务的方法,请注意是静态方法
 private static void registerservice(string servicename, servicefetcher fetcher) {
  if (!(fetcher instanceof staticservicefetcher)) {
   fetcher.mcontextcacheindex = snextpercontextservicecacheindex++;
  }
  system_service_map.put(servicename, fetcher);
 } 

我们还在contextimpl中看到很多静态代码块.全是在注册服务,并且全是我们常用的系统服务.

 static {
   registerservice(accessibility_service, new servicefetcher() {
     public object getservice(contextimpl ctx) {
      return accessibilitymanager.getinstance(ctx);
     }});

   registerservice(captioning_service, new servicefetcher() {
     public object getservice(contextimpl ctx) {
      return new captioningmanager(ctx);
     }});
  ....
 }

这么看来,这不就是我们注册服务的地方么?

so. 我们找到了注册系统服务的地方, 这里我们只需要把我们自己想注册的服务添加进去,完成new servicefetcher() 的抽象方法就行啦. 这样我们以后再getsystemservice,传入注册时的名称,就可以获取到我们的服务对象了了.当然,这是4.4的方法.

android 6.0 (marshmallow)

我们来看一下contextimpl的代码

 @override
 public object getsystemservice(string name) {
  return systemserviceregistry.getsystemservice(this, name);
 }

我们发现,与 kitkat 大大不同, marshmallow这里是从一个叫做systemserviceregistry的类去获取的.

好了,那我们去看它的源码,原来还是和以前一样的套路,不过是单独封装了一个类来管理这些注册的服务. 这么设计的确好,代码上的耦合度看上去小多了,且不会使得contextimpl这个类越来月臃肿.

final class systemserviceregistry {
 private final static string tag = "systemserviceregistry";

 // service registry information.
 // this information is never changed once static initialization has completed.
 private static final hashmap<class<?>, string> system_service_names =
   new hashmap<class<?>, string>();
 private static final hashmap<string, servicefetcher<?>> system_service_fetchers =
   new hashmap<string, servicefetcher<?>>();
 private static int sservicecachesize;

 // not instantiable.
 private systemserviceregistry() { }

 static {
  registerservice(context.accessibility_service, accessibilitymanager.class,
    new cachedservicefetcher<accessibilitymanager>() {
   @override
   public accessibilitymanager createservice(contextimpl ctx) {
    return accessibilitymanager.getinstance(ctx);
   }});

  registerservice(context.captioning_service, captioningmanager.class,
    new cachedservicefetcher<captioningmanager>() {
   @override
   public captioningmanager createservice(contextimpl ctx) {
    return new captioningmanager(ctx);
   }});
 ....

so.我们 marshmallow 的系统服务应该在systemserviceregistry类中添加.一样的方式. 之后我们再getsystemservice,传入注册时的名称,就可以获取到我们的服务对象了了.

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。