blob: 11c747f5db1793d192e1df960fbcd7f0e4d6f539 [file] [log] [blame]
Kenny Root15a4d2f2010-03-11 18:20:12 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080017package android.app;
18
Mathew Inwood4fb17d12018-08-14 14:25:44 +010019import android.annotation.UnsupportedAppUsage;
Tor Norbye83c68962015-03-10 20:55:31 -070020import android.annotation.WorkerThread;
Ryan Lothiance8d4f52016-01-21 15:07:01 +000021import android.annotation.Nullable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.Intent;
23import android.os.Handler;
24import android.os.HandlerThread;
25import android.os.IBinder;
26import android.os.Looper;
27import android.os.Message;
28
29/**
Dan Egnor6e3d9882010-04-06 18:28:42 -070030 * IntentService is a base class for {@link Service}s that handle asynchronous
31 * requests (expressed as {@link Intent}s) on demand. Clients send requests
Wu-cheng Licae57d62010-04-07 13:52:37 +080032 * through {@link android.content.Context#startService(Intent)} calls; the
33 * service is started as needed, handles each Intent in turn using a worker
34 * thread, and stops itself when it runs out of work.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035 *
Dan Egnor6e3d9882010-04-06 18:28:42 -070036 * <p>This "work queue processor" pattern is commonly used to offload tasks
37 * from an application's main thread. The IntentService class exists to
38 * simplify this pattern and take care of the mechanics. To use it, extend
39 * IntentService and implement {@link #onHandleIntent(Intent)}. IntentService
40 * will receive the Intents, launch a worker thread, and stop the service as
41 * appropriate.
42 *
43 * <p>All requests are handled on a single worker thread -- they may take as
44 * long as necessary (and will not block the application's main loop), but
45 * only one request will be processed at a time.
46 *
Andrew Solovay494f1a42017-07-31 19:13:38 -070047 * <p class="note"><b>Note:</b> IntentService is subject to all the
48 * <a href="/preview/features/background.html">background execution limits</a>
49 * imposed with Android 8.0 (API level 26). In most cases, you are better off
50 * using {@link android.support.v4.app.JobIntentService}, which uses jobs
51 * instead of services when running on Android 8.0 or higher.
52 * </p>
53 *
Joe Fernandezb54e7a32011-10-03 15:09:50 -070054 * <div class="special reference">
55 * <h3>Developer Guides</h3>
56 * <p>For a detailed discussion about how to create services, read the
Hemal Patel19182142016-09-30 14:59:23 -070057 * <a href="{@docRoot}guide/components/services.html">Services</a> developer
58 * guide.</p>
Joe Fernandezb54e7a32011-10-03 15:09:50 -070059 * </div>
60 *
Andrew Solovay494f1a42017-07-31 19:13:38 -070061 * @see android.support.v4.app.JobIntentService
Dan Egnor6e3d9882010-04-06 18:28:42 -070062 * @see android.os.AsyncTask
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063 */
64public abstract class IntentService extends Service {
65 private volatile Looper mServiceLooper;
Mathew Inwood4fb17d12018-08-14 14:25:44 +010066 @UnsupportedAppUsage
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067 private volatile ServiceHandler mServiceHandler;
68 private String mName;
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -070069 private boolean mRedelivery;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070
71 private final class ServiceHandler extends Handler {
72 public ServiceHandler(Looper looper) {
73 super(looper);
74 }
75
76 @Override
77 public void handleMessage(Message msg) {
78 onHandleIntent((Intent)msg.obj);
79 stopSelf(msg.arg1);
80 }
81 }
82
Dan Egnor6e3d9882010-04-06 18:28:42 -070083 /**
84 * Creates an IntentService. Invoked by your subclass's constructor.
85 *
86 * @param name Used to name the worker thread, important only for debugging.
87 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 public IntentService(String name) {
89 super();
90 mName = name;
91 }
92
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -070093 /**
Dan Egnor6e3d9882010-04-06 18:28:42 -070094 * Sets intent redelivery preferences. Usually called from the constructor
95 * with your preferred semantics.
96 *
97 * <p>If enabled is true,
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -070098 * {@link #onStartCommand(Intent, int, int)} will return
Dan Egnor6e3d9882010-04-06 18:28:42 -070099 * {@link Service#START_REDELIVER_INTENT}, so if this process dies before
100 * {@link #onHandleIntent(Intent)} returns, the process will be restarted
101 * and the intent redelivered. If multiple Intents have been sent, only
102 * the most recent one is guaranteed to be redelivered.
103 *
104 * <p>If enabled is false (the default),
105 * {@link #onStartCommand(Intent, int, int)} will return
106 * {@link Service#START_NOT_STICKY}, and if the process dies, the Intent
107 * dies along with it.
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700108 */
109 public void setIntentRedelivery(boolean enabled) {
110 mRedelivery = enabled;
111 }
Dan Egnor6e3d9882010-04-06 18:28:42 -0700112
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 @Override
114 public void onCreate() {
Dan Egnor6e3d9882010-04-06 18:28:42 -0700115 // TODO: It would be nice to have an option to hold a partial wakelock
116 // during processing, and to have a static startService(Context, Intent)
117 // method that would launch the service & hand off a wakelock.
118
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119 super.onCreate();
120 HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
121 thread.start();
122
123 mServiceLooper = thread.getLooper();
124 mServiceHandler = new ServiceHandler(mServiceLooper);
125 }
126
127 @Override
Ryan Lothiance8d4f52016-01-21 15:07:01 +0000128 public void onStart(@Nullable Intent intent, int startId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129 Message msg = mServiceHandler.obtainMessage();
130 msg.arg1 = startId;
131 msg.obj = intent;
132 mServiceHandler.sendMessage(msg);
133 }
134
Scott Main7a14b932010-10-04 18:30:46 -0700135 /**
136 * You should not override this method for your IntentService. Instead,
137 * override {@link #onHandleIntent}, which the system calls when the IntentService
138 * receives a start request.
139 * @see android.app.Service#onStartCommand
140 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 @Override
Ryan Lothiance8d4f52016-01-21 15:07:01 +0000142 public int onStartCommand(@Nullable Intent intent, int flags, int startId) {
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700143 onStart(intent, startId);
144 return mRedelivery ? START_REDELIVER_INTENT : START_NOT_STICKY;
145 }
Dan Egnor6e3d9882010-04-06 18:28:42 -0700146
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700147 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 public void onDestroy() {
149 mServiceLooper.quit();
150 }
151
Scott Main7a14b932010-10-04 18:30:46 -0700152 /**
153 * Unless you provide binding for your service, you don't need to implement this
Ryan Lothiance8d4f52016-01-21 15:07:01 +0000154 * method, because the default implementation returns null.
Scott Main7a14b932010-10-04 18:30:46 -0700155 * @see android.app.Service#onBind
156 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 @Override
Ryan Lothiance8d4f52016-01-21 15:07:01 +0000158 @Nullable
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 public IBinder onBind(Intent intent) {
160 return null;
161 }
162
163 /**
Dan Egnor6e3d9882010-04-06 18:28:42 -0700164 * This method is invoked on the worker thread with a request to process.
165 * Only one Intent is processed at a time, but the processing happens on a
166 * worker thread that runs independently from other application logic.
167 * So, if this code takes a long time, it will hold up other requests to
168 * the same IntentService, but it will not hold up anything else.
Scott Main7a14b932010-10-04 18:30:46 -0700169 * When all requests have been handled, the IntentService stops itself,
170 * so you should not call {@link #stopSelf}.
Dan Egnor6e3d9882010-04-06 18:28:42 -0700171 *
Wu-cheng Licae57d62010-04-07 13:52:37 +0800172 * @param intent The value passed to {@link
173 * android.content.Context#startService(Intent)}.
Ryan Lothiance8d4f52016-01-21 15:07:01 +0000174 * This may be null if the service is being restarted after
175 * its process has gone away; see
176 * {@link android.app.Service#onStartCommand}
177 * for details.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800178 */
Tor Norbye83c68962015-03-10 20:55:31 -0700179 @WorkerThread
Ryan Lothiance8d4f52016-01-21 15:07:01 +0000180 protected abstract void onHandleIntent(@Nullable Intent intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181}