IntentService详解

一 IntentService概述

  • 本质是一个Service,继承自Service且是个抽象类
  • 它用来在后台执行耗时的异步任务,当任务执行完毕后自动停止
  • 它内部通过HandlerThread和Handler来实现异步操作
  • 用户通过实现onHandleIntent方法,并在此方法中处理耗时任务

二 IntentService使用

  • 直接上代码
public class MyIntentService extends IntentService {
    private static final String ACTION_FOO = "com.jrmf360.service.action.FOO";
    private static final String ACTION_BAZ = "com.jrmf360.service.action.BAZ";

    private static final String EXTRA_PARAM = "com.jrmf360.service.extra.PARAM";

    public MyIntentService() {
        super("MyIntentService");
    }

    /**
     * Starts this service to perform action Foo with the given parameters. If
     * the service is already performing a task this action will be queued.
     *
     * @see IntentService
     */
    public static void startActionFoo(Context context, String param) {
        Intent intent = new Intent(context, MyIntentService.class);
        intent.setAction(ACTION_FOO);
        intent.putExtra(EXTRA_PARAM, param);
        context.startService(intent);
    }

    /**
     * Starts this service to perform action Baz with the given parameters. If
     * the service is already performing a task this action will be queued.
     *
     * @see IntentService
     */
    public static void startActionBaz(Context context, String param) {
        Intent intent = new Intent(context, MyIntentService.class);
        intent.setAction(ACTION_BAZ);
        intent.putExtra(EXTRA_PARAM, param);
        context.startService(intent);
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        if (intent != null) {
            Log.e(getClass().getSimpleName(),"当前线程:"+Thread.currentThread().getName());
            String action = intent.getAction();
            String param = intent.getStringExtra(EXTRA_PARAM);
            if (ACTION_FOO.equals(action)) {
                handleActionFoo(param);
            } else if (ACTION_BAZ.equals(action)) {
                handleActionBaz(param);
            }
            Log.e(getClass().getSimpleName(),param+"处理结束");
        }
    }

    /**
     * Handle action Foo in the provided background thread with the provided
     * parameters.
     */
    private void handleActionFoo(String param1) {
        Log.e(getClass().getSimpleName(),"当前处理任务:"+param1);
    }

    /**
     * Handle action Baz in the provided background thread with the provided
     * parameters.
     */
    private void handleActionBaz(String param1) {
        Log.e(getClass().getSimpleName(),"当前处理任务:"+param1);
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        Log.e(getClass().getSimpleName(),"IntentServer 销毁");
    }
}

我们创建一个MyIntentService继承自IntentService,然后实现onHandleIntent方法,在该方法中获得intent传递过来的参数并处理耗时任务。

  • MyIntentService使用
    在Activity中直接调用
MyIntentService.startActionBaz(this,"吃饭");
MyIntentService.startActionFoo(MainActivity.this,"打游戏");
  • 打印日志
07-10 16:24:43.652 27125-27178/com.jrmf360.service E/MyIntentService: 当前线程:IntentService[MyIntentService]
07-10 16:24:43.652 27125-27178/com.jrmf360.service E/MyIntentService: 当前处理任务:吃饭
07-10 16:24:43.652 27125-27178/com.jrmf360.service E/MyIntentService: 吃饭处理结束
07-10 16:24:43.660 27125-27178/com.jrmf360.service E/MyIntentService: 当前线程:IntentService[MyIntentService]
07-10 16:24:43.660 27125-27178/com.jrmf360.service E/MyIntentService: 当前处理任务:打游戏
07-10 16:24:43.660 27125-27178/com.jrmf360.service E/MyIntentService: 打游戏处理结束
07-10 16:24:43.660 27125-27125/com.jrmf360.service E/MyIntentService: IntentServer 销毁

从日志中我们可以发现,IntentService开启之后会在线程中处理异步任务,线程名字为IntentService[MyIntentService]是我们在构造函数中设置的。并且多个任务是串行执行,当所有的任务处理完毕,销毁该IntentService。

三 IntentService原理分析

  • 首先我们看下IntentService的源码
public abstract class IntentService extends Service {
    private volatile Looper mServiceLooper;
    private volatile ServiceHandler mServiceHandler;
    private String mName;
    private boolean mRedelivery;

    private final class ServiceHandler extends Handler {
        public ServiceHandler(Looper looper) {
            super(looper);
        }

        @Override
        public void handleMessage(Message msg) {
            //处理消息并且在处理完毕后,销毁该IntentService
            onHandleIntent((Intent)msg.obj);
            stopSelf(msg.arg1);
        }
    }

    /**
     *构造方法,并且设置线程的名字
     *
     */
    public IntentService(String name) {
        super();
        mName = name;
    }

    public void setIntentRedelivery(boolean enabled) {
        mRedelivery = enabled;
    }

    @Override
    public void onCreate() {
        super.onCreate();
        //创建HandlerThread 并且开始该线程
        HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
        thread.start();

        //使用HanderThread的Looper对象去创建handler
        //所以该Handler也在此线程中处理任务
        mServiceLooper = thread.getLooper();
        mServiceHandler = new ServiceHandler(mServiceLooper);
    }

    //在此方法中利用Handler发送消息,从而可以在Handler中的handleMessage方法中处理该消息
    @Override
    public void onStart(@Nullable Intent intent, int startId) {
        Message msg = mServiceHandler.obtainMessage();
        msg.arg1 = startId;
        msg.obj = intent;
        mServiceHandler.sendMessage(msg);
    }

    /**
     * You should not override this method for your IntentService. Instead,
     * override {@link #onHandleIntent}, which the system calls when the IntentService
     * receives a start request.
     * @see android.app.Service#onStartCommand
     */
    @Override
    public int onStartCommand(@Nullable Intent intent, int flags, int startId) {
        onStart(intent, startId);
        return mRedelivery ? START_REDELIVER_INTENT : START_NOT_STICKY;
    }

    @Override
    public void onDestroy() {
        mServiceLooper.quit();
    }

    /**
     * Unless you provide binding for your service, you don't need to implement this
     * method, because the default implementation returns null.
     * @see android.app.Service#onBind
     */
    @Override
    @Nullable
    public IBinder onBind(Intent intent) {
        return null;
    }

    @WorkerThread
    protected abstract void onHandleIntent(@Nullable Intent intent);
}

分析源码可知,开启IntentService的时候在onCreate方法中创建了一个HandlerThread,HandlerThread本身是一个线程并且拥有Looper对象,使用这个Looper对象创建Handler就可以在该线程中处理Handler发送的消息。
接着往下看,IntentService在onStartCommand方法中调用了onStart,而在onStart方法中获得了一个Message并使用mServiceHandler发送这个消息。因此我们一旦调用startService方法开启服务,就会走到onHandleIntent方法中并且该方法是在HandlerThread线程中被调用。
再看ServiceHandler中的handleMessage方法,处理完消息后,会调用stopSelf方法停止该服务。这就是任务处理完之后会调用IntentService的onDestroy方法的原因。

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

推荐阅读更多精彩内容