多线程编程之IntentService

在分析IntentService之前 需要了解下Android四大组件之一的Service(服务)同时为了更好的理解IntentService需要了解HandlerThread
多线程编程之HandlerThread

Service

定义:

  1. 用来在后台完成一个时间跨度比较大的工作的应用组件
  2. Service的生命周期方法运行在主线程,如果Service想做持续时间比较长的工作,需要启动一个分线程;
  3. 应用退出:Service不会停止(在没有主动停止Service或手机room杀死的情况下)
  4. 再次进入应用可以与正在运行的Service进行通信
    启动和停止:
  5. 一般启动与停止
startService(intent)
stopService(intent)

2.绑定启动与解绑

bindService(.....)
unbindService(serviceConnection)

每次startService(intent)都会调用Service的onStartCommand()方法
针对于绑定的方式,如果onBind()方法返回值非空,则会调用启动者(比如:activity)中的ServiceConnection中的onServiceConnected()方法

Service生命周期


上面只是对Service做了简单的介绍 其实Serviec还区分Local Service(本地服务),Remote Service(远程服务)以及各自的通信方式等 这里就不做深入了解

IntentService

定义:
IntentService是处理异步请求的Service,客户端通过发送请求调用startService(intent)来根据自身业务启动IntentService,IntentService会创建独立的worker线程来依次处理所有的Intent请求;
特征:

  • 会创建独立的分线程来处理onHandleIntent()方法中的代码实现,无需处理多线程问题
  • 当处理完所有请求IntentService会自动停止服务,无需手动停止服务
  • IntentService只能通过startService(intent)启动,onBind()默认实现为null;
  • 除第一次startService(intent)外以 后每次启动服务都只会调用onStartCommand(Intent intent, int flags, int startId)并将Intent和startId封装为Message对象通过Handler发送该消息添加到MessageQueue队列中

使用:

public class MyIntentService extends IntentService {
    public MyIntentService() {
        //需要指定一个线程名称
        super("MyIntentService");
    }
    //实现onHandleIntent抽象方法 处理Handler发送的消息
    @Override
    protected void onHandleIntent(Intent intent) {
        if (intent != null) {
           //处理耗时操作业务逻辑
            String action = intent.getStringExtra("action");
            if("start".equals(action)){
                for(int i=0;i<5;i++){
                    Log.e(action,Thread.currentThread().getName()+"执行了  "+i+"次");
                }
            }
        }
    }
    @Override
    public void onDestroy() {
        super.onDestroy();
        Log.e(action,"IntentService----死亡");
    }
}
//配置清单文件注册
<application>
<service
    android:name=".MyIntentService"
    android:exported="false"/>
<application/>
//启动
 Intent intent = new Intent(this, MyIntentService.class);
 intent.putExtra("action","start");
 startService(intent);
start: IntentService[MyIntentService]执行了  0次
start: IntentService[MyIntentService]执行了  1次
start: IntentService[MyIntentService]执行了  2次
start: IntentService[MyIntentService]执行了  3次
start: IntentService[MyIntentService]执行了  4次
IntentService----死亡

上面是一个简单的案例,从中也看到了通过启动服务后onHandleIntent(Intent intent)就在线程名称为MyIntentService的分线程中执行 执行完后自动停止服务 从onDestroy()生命周期方法打印就可以看出
分析:

IntentServiceHndlerThread有很高的关联性 其实只要弄懂了HndlerThread一切就很直白了可以先看看我的上篇文章 多线程编程之HandlerThread

通过上图源码分析得到:

  • IntentService继承自Service 是一个服务 需要在配置清单文件中注册
  • 在构造方法中需要传入一个String参数指定为分线程名称
  • 在onCreate中创建了HandlerTher线程并启动 同时以HandlerTher线程中的Looper对象创建了Handler对象
  • 在onStart()和onStartCommand()中将Intent和startId封装为Message对象 通过Handler发送消息
  • 在Handler的handleMessage(Message)处理消息函数中调用抽象方法onHandleIntent()交由我们自己实现处理 且该抽象函数在分线程中执行。

问题:

  • IntentService会创建独立的worker线程来依次处理所有的Intent请求 每处理一个完成一个请求便会将该次服务停止掉 是怎么实现的呢?

    @Override
      public void onStart(@Nullable Intent intent, int startId) {
          Message msg = mServiceHandler.obtainMessage();
          msg.arg1 = startId;
          msg.obj = intent;
          mServiceHandler.sendMessage(msg);
      }
      @Override
      public int onStartCommand(@Nullable Intent intent, int flags, int startId) {
          onStart(intent, startId);
          return mRedelivery ? START_REDELIVER_INTENT : START_NOT_STICKY;
      }
    
    private final class ServiceHandler extends Handler {
          public ServiceHandler(Looper looper) {
              super(looper);
          }
          @Override
          public void handleMessage(Message msg) {
              onHandleIntent((Intent)msg.obj);
              stopSelf(msg.arg1);
          }
      }
    

    通过源码分析我们知道了Message对象包含2个信息 一个是Intent 一个是startId 其中Intent不用说是我的请求意图 当消息处理完后调用stopSelf(msg.arg1)从字面上理解就是停止服务 是怎么实现的呢 首先先看看startService(Intent)都做了什么

    public final class ActivityManagerService {
        final ActiveServices mServices;
        @Override
        public ComponentName startService(IApplicationThread caller, Intent service,
              String resolvedType, int userId) {
          enforceNotIsolatedCaller("startService");
        。。。。。。。。。
          synchronized(this) {
              。。。。。。。。
              //启动服务
              ComponentName res = mServices.startServiceLocked(caller, service,
                      resolvedType, callingPid, callingUid, userId);
              。。。。。。
              return res;
          }
      }
    

}


public final class ActiveServices {
ComponentName startServiceLocked(IApplicationThread caller,
Intent service, String resolvedType,
int callingPid, int callingUid, int userId) {
......
ServiceLookupResult res =
retrieveServiceLocked(service, resolvedType,
callingPid, callingUid, userId, true, callerFg);
......
ServiceRecord r = res.record;
r.pendingStarts.add(new ServiceRecord.StartItem(r, false, r.makeNextStartId(),
service, neededGrants));
}
}

final class ServiceRecord extends Binder {
public int getLastStartId() {
return lastStartId;
}
//每次启动服务lastStartId就会加一
public int makeNextStartId() {
lastStartId++;
if (lastStartId < 1) {
lastStartId = 1;
}
return lastStartId;
}
}

从源码初略的分析当startService(intent)时会执行ActivityManagerService的startService()接着调用ActiveServices的startServiceLocked()在该函数里面调用了ServiceRecord的makeNextStartId() 其中有个成员变量lastStartId会在每次启动服务的时候自增1,再来看停止服务

//调用Service的stopSelf(startId) 参数为startId
public final void stopSelf(int startId) {
if (mActivityManager == null) {
return;
}
try {
mActivityManager.stopServiceToken(
new ComponentName(this, mClassName), mToken, startId);
} catch (RemoteException ex) {
}
}

public final class ActivityManagerService {
final ActiveServices mServices;
@Override
public boolean stopServiceToken(ComponentName className, IBinder token,int startId) {
synchronized(this) {
return mServices.stopServiceTokenLocked(className, token, startId);
}
}

public final class ActiveServices {
boolean stopServiceTokenLocked(ComponentName className, IBinder token,int startId) {

    ServiceRecord r = findServiceLocked(className, token, UserHandle.getCallingUserId());
    if (r != null) {
        if (startId >= 0) {
            //根据startId获取StartItem对象
            ServiceRecord.StartItem si = r.findDeliveredStart(startId, false);
            if (si != null) {
                while (r.deliveredStarts.size() > 0) {
                //StartItem不为空 且deliveredStarts集合元素个数大于0 就删除第1个
                    ServiceRecord.StartItem cur = r.deliveredStarts.remove(0);
                    //将StartItem的UriPermissionOwner对象置空
                    cur.removeUriPermissionsLocked();
                    if (cur == si) {
                        break;
                    }
                }
            }
            //判断是否为最后一个服务 
            if (r.getLastStartId() != startId) {
                return false;
            }
        synchronized (r.stats.getBatteryStats()) {
        //BatteryStatsImpl.Uid.Pkg.Serv.stopRunningLocked()停止服务
            r.stats.stopRunningLocked();
        }
       。。。。。。。。。。
        //将该服务不再是可用
        bringDownServiceIfNeededLocked(r, false, false);
        //调用native方法重置该服务
        Binder.restoreCallingIdentity(origId);
        return true;
    }
    return false;
}
****  
以上就是我对IntentService的理解 可能在startService(Intent)源码分析有不正确之处欢迎大家踊跃指出
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容

  • #Android 基础知识点总结 ---------- ##1.adb - android debug bridg...
    Mythqian阅读 3,249评论 2 11
  • 参考: 服务|Android Developers 一. 什么是服务 服务是一个可以在后台执行长时间运行操作而不提...
    NickelFox阅读 540评论 0 3
  • 前言:本文所写的是博主的个人见解,如有错误或者不恰当之处,欢迎私信博主,加以改正!原文链接,demo链接 Serv...
    PassersHowe阅读 1,400评论 0 5
  • 1.下列哪些语句关于内存回收的说明是正确的? (b )A、 程序员必须创建一个线程来释放内存 B、内存回收程序负责...
    醉馬当前闯阅读 8,899评论 12 80
  • 一只蚊子,一只马蜂,都会给我们的身体弄上印记,有时需要很长时间才能褪去。有时它可能一辈子都散不掉了。 不仅是身体上...
    我心我愿秀阅读 199评论 0 1