IntentServiceの原理

7679 ワード

intentServiceとは何ですか?
InentServiceはサービスから継承されますが、優先度はサービスより高いです.内部はhandlerThreadとhandlerをカプセル化しています.
InentServiceは非同期要求を継承して処理するクラスで、InentService内に時間のかかる操作を処理するワークスレッドがあり、InentServiceを起動する方法は従来のServiceを起動するのと同じであり、タスクの実行が完了すると、手動で制御したりstopSelf()を必要とせずに自動的に停止します.また、IntentServiceを複数回起動することができ、各時間のかかる操作はワークキューでIntentServiceのonHandlerIntentコールバックメソッドで実行され(onHandlerIntentはIntentServiceの時間のかかる操作を実行する方法である)、1回に1つのワークスレッドしか実行されず、1つ目を実行してから2つ目を実行することができます.だから彼はシリアルです.
intentServiceの使用方法
InentServiceを作成する場合は、onHandleIntentと構築メソッドを実装するだけで、onHandleIntentは非同期メソッドであり、時間のかかる操作を実行できます.構築方法にはスレッドの名前を表す文字列が入力されます.
 
ソースから、もちろんonCreateから始まります~なぜですか?やや
 
1.onCreate()
   @Override
    public void onCreate() {
        // TODO: It would be nice to have an option to hold a partial wakelock
        // during processing, and to have a static startService(Context, Intent)
        // method that would launch the service & hand off a wakelock.

        super.onCreate();
        HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
        thread.start();

        mServiceLooper = thread.getLooper();
        mServiceHandler = new ServiceHandler(mServiceLooper);
    }

 1.HandlerThreadが作成されたので、InentService内部がHandlerThreadによって非同期メッセージの転送が行われていることを証明します.
 2.HandlerThreadのlooperオブジェクト(HandlerThreadは非同期スレッド)であるlooperが作成されました.
 3.ServiceHandlerが作成されました.mServicelooperオブジェクトが入力されると、ServiceHandlerは非同期スレッドを処理する実行クラスになります.
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);
        }
    }

ServiceがonCreateを実行するとonStartCommand()が実行されます.
 /**
     * 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;
    }

先に実行するonStart()が表示されます.
 @Override
    public void onStart(@Nullable Intent intent, int startId) {
        Message msg = mServiceHandler.obtainMessage();
        msg.arg1 = startId;
        msg.obj = intent;
        mServiceHandler.sendMessage(msg);
    }

メッセージsendMessage(msg)を送信して、Handle原理、同じく知っていて、このメッセージの処理はまたserviceHandlerの中のhandleMessageに戻ります
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);
        }
    }

このhandleMessageはonHandleIntent()を見ることができます.この方法は抽象的な方法で、継承されたサブクラスに実際の操作を残します.
 @WorkerThread
    protected abstract void onHandleIntent(@Nullable Intent intent);

stopSelf(msg.arg 1)を実行しました.sotpSelf()がもう一つあることを知っています.
両者の違い:stopSelf()はすぐにサービスを停止します.パラメータがある場合は、すべてのタスクが完了するまでサービスを停止しません.
 
すべてのソース:
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) {
            onHandleIntent((Intent)msg.obj);
            stopSelf(msg.arg1);
        }
    }

    /**
     * Creates an IntentService.  Invoked by your subclass's constructor.
     *
     * @param name Used to name the worker thread, important only for debugging.
     */
    public IntentService(String name) {
        super();
        mName = name;
    }

    /**
     * Sets intent redelivery preferences.  Usually called from the constructor
     * with your preferred semantics.
     *
     * 

If enabled is true, * {@link #onStartCommand(Intent, int, int)} will return * {@link Service#START_REDELIVER_INTENT}, so if this process dies before * {@link #onHandleIntent(Intent)} returns, the process will be restarted * and the intent redelivered. If multiple Intents have been sent, only * the most recent one is guaranteed to be redelivered. * *

If enabled is false (the default), * {@link #onStartCommand(Intent, int, int)} will return * {@link Service#START_NOT_STICKY}, and if the process dies, the Intent * dies along with it. */ public void setIntentRedelivery(boolean enabled) { mRedelivery = enabled; } @Override public void onCreate() { // TODO: It would be nice to have an option to hold a partial wakelock // during processing, and to have a static startService(Context, Intent) // method that would launch the service & hand off a wakelock. super.onCreate(); HandlerThread thread = new HandlerThread("IntentService[" + mName + "]"); thread.start(); mServiceLooper = thread.getLooper(); mServiceHandler = new ServiceHandler(mServiceLooper); } @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; } /** * This method is invoked on the worker thread with a request to process. * Only one Intent is processed at a time, but the processing happens on a * worker thread that runs independently from other application logic. * So, if this code takes a long time, it will hold up other requests to * the same IntentService, but it will not hold up anything else. * When all requests have been handled, the IntentService stops itself, * so you should not call {@link #stopSelf}. * * @param intent The value passed to {@link * android.content.Context#startService(Intent)}. * This may be null if the service is being restarted after * its process has gone away; see * {@link android.app.Service#onStartCommand} * for details. */ @WorkerThread protected abstract void onHandleIntent(@Nullable Intent intent); }