PendingIntent.java revision 1ccac75e1f1b97eccb916a8de04fc1012b30f6e5
1/*
2 * Copyright (C) 2006 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
17package android.app;
18
19import android.content.Context;
20import android.content.Intent;
21import android.content.IIntentReceiver;
22import android.content.IIntentSender;
23import android.content.IntentSender;
24import android.os.Bundle;
25import android.os.RemoteException;
26import android.os.Handler;
27import android.os.IBinder;
28import android.os.Parcel;
29import android.os.Parcelable;
30import android.util.AndroidException;
31
32/**
33 * A description of an Intent and target action to perform with it.  Instances
34 * of this class are created with {@link #getActivity},
35 * {@link #getBroadcast}, {@link #getService}; the returned object can be
36 * handed to other applications so that they can perform the action you
37 * described on your behalf at a later time.
38 *
39 * <p>By giving a PendingIntent to another application,
40 * you are granting it the right to perform the operation you have specified
41 * as if the other application was yourself (with the same permissions and
42 * identity).  As such, you should be careful about how you build the PendingIntent:
43 * often, for example, the base Intent you supply will have the component
44 * name explicitly set to one of your own components, to ensure it is ultimately
45 * sent there and nowhere else.
46 *
47 * <p>A PendingIntent itself is simply a reference to a token maintained by
48 * the system describing the original data used to retrieve it.  This means
49 * that, even if its owning application's process is killed, the
50 * PendingIntent itself will remain usable from other processes that
51 * have been given it.  If the creating application later re-retrieves the
52 * same kind of PendingIntent (same operation, same Intent action, data,
53 * categories, and components, and same flags), it will receive a PendingIntent
54 * representing the same token if that is still valid, and can thus call
55 * {@link #cancel} to remove it.
56 */
57public final class PendingIntent implements Parcelable {
58    private final IIntentSender mTarget;
59
60    /**
61     * Flag for use with {@link #getActivity}, {@link #getBroadcast}, and
62     * {@link #getService}: this
63     * PendingIntent can only be used once.  If set, after
64     * {@link #send()} is called on it, it will be automatically
65     * canceled for you and any future attempt to send through it will fail.
66     */
67    public static final int FLAG_ONE_SHOT = 1<<30;
68    /**
69     * Flag for use with {@link #getActivity}, {@link #getBroadcast}, and
70     * {@link #getService}: if the described PendingIntent does not already
71     * exist, then simply return null instead of creating it.
72     */
73    public static final int FLAG_NO_CREATE = 1<<29;
74    /**
75     * Flag for use with {@link #getActivity}, {@link #getBroadcast}, and
76     * {@link #getService}: if the described PendingIntent already exists,
77     * the current one is canceled before generating a new one.  You can use
78     * this to retrieve a new PendingIntent when you are only changing the
79     * extra data in the Intent; by canceling the previous pending intent,
80     * this ensures that only entities given the new data will be able to
81     * launch it.  If this assurance is not an issue, consider
82     * {@link #FLAG_UPDATE_CURRENT}.
83     */
84    public static final int FLAG_CANCEL_CURRENT = 1<<28;
85    /**
86     * Flag for use with {@link #getActivity}, {@link #getBroadcast}, and
87     * {@link #getService}: if the described PendingIntent already exists,
88     * then keep it but its replace its extra data with what is in this new
89     * Intent.  This can be used if you are creating intents where only the
90     * extras change, and don't care that any entities that received your
91     * previous PendingIntent will be able to launch it with your new
92     * extras even if they are not explicitly given to it.
93     */
94    public static final int FLAG_UPDATE_CURRENT = 1<<27;
95
96    /**
97     * Exception thrown when trying to send through a PendingIntent that
98     * has been canceled or is otherwise no longer able to execute the request.
99     */
100    public static class CanceledException extends AndroidException {
101        public CanceledException() {
102        }
103
104        public CanceledException(String name) {
105            super(name);
106        }
107
108        public CanceledException(Exception cause) {
109            super(cause);
110        }
111    }
112
113    /**
114     * Callback interface for discovering when a send operation has
115     * completed.  Primarily for use with a PendingIntent that is
116     * performing a broadcast, this provides the same information as
117     * calling {@link Context#sendOrderedBroadcast(Intent, String,
118     * android.content.BroadcastReceiver, Handler, int, String, Bundle)
119     * Context.sendBroadcast()} with a final BroadcastReceiver.
120     */
121    public interface OnFinished {
122        /**
123         * Called when a send operation as completed.
124         *
125         * @param pendingIntent The PendingIntent this operation was sent through.
126         * @param intent The original Intent that was sent.
127         * @param resultCode The final result code determined by the send.
128         * @param resultData The final data collected by a broadcast.
129         * @param resultExtras The final extras collected by a broadcast.
130         */
131        void onSendFinished(PendingIntent pendingIntent, Intent intent,
132                int resultCode, String resultData, Bundle resultExtras);
133    }
134
135    private static class FinishedDispatcher extends IIntentReceiver.Stub
136            implements Runnable {
137        private final PendingIntent mPendingIntent;
138        private final OnFinished mWho;
139        private final Handler mHandler;
140        private Intent mIntent;
141        private int mResultCode;
142        private String mResultData;
143        private Bundle mResultExtras;
144        FinishedDispatcher(PendingIntent pi, OnFinished who, Handler handler) {
145            mPendingIntent = pi;
146            mWho = who;
147            mHandler = handler;
148        }
149        public void performReceive(Intent intent, int resultCode,
150                String data, Bundle extras, boolean serialized) {
151            mIntent = intent;
152            mResultCode = resultCode;
153            mResultData = data;
154            mResultExtras = extras;
155            if (mHandler == null) {
156                run();
157            } else {
158                mHandler.post(this);
159            }
160        }
161        public void run() {
162            mWho.onSendFinished(mPendingIntent, mIntent, mResultCode,
163                    mResultData, mResultExtras);
164        }
165    }
166
167    /**
168     * Retrieve a PendingIntent that will start a new activity, like calling
169     * {@link Context#startActivity(Intent) Context.startActivity(Intent)}.
170     * Note that the activity will be started outside of the context of an
171     * existing activity, so you must use the {@link Intent#FLAG_ACTIVITY_NEW_TASK
172     * Intent.FLAG_ACTIVITY_NEW_TASK} launch flag in the Intent.
173     *
174     * @param context The Context in which this PendingIntent should start
175     * the activity.
176     * @param requestCode Private request code for the sender (currently
177     * not used).
178     * @param intent Intent of the activity to be launched.
179     * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
180     * {@link #FLAG_CANCEL_CURRENT}, {@link #FLAG_UPDATE_CURRENT},
181     * or any of the flags as supported by
182     * {@link Intent#fillIn Intent.fillIn()} to control which unspecified parts
183     * of the intent that can be supplied when the actual send happens.
184     *
185     * @return Returns an existing or new PendingIntent matching the given
186     * parameters.  May return null only if {@link #FLAG_NO_CREATE} has been
187     * supplied.
188     */
189    public static PendingIntent getActivity(Context context, int requestCode,
190            Intent intent, int flags) {
191        String packageName = context.getPackageName();
192        String resolvedType = intent != null ? intent.resolveTypeIfNeeded(
193                context.getContentResolver()) : null;
194        try {
195            IIntentSender target =
196                ActivityManagerNative.getDefault().getIntentSender(
197                    IActivityManager.INTENT_SENDER_ACTIVITY, packageName,
198                    null, null, requestCode, intent, resolvedType, flags);
199            return target != null ? new PendingIntent(target) : null;
200        } catch (RemoteException e) {
201        }
202        return null;
203    }
204
205    /**
206     * Retrieve a PendingIntent that will perform a broadcast, like calling
207     * {@link Context#sendBroadcast(Intent) Context.sendBroadcast()}.
208     *
209     * @param context The Context in which this PendingIntent should perform
210     * the broadcast.
211     * @param requestCode Private request code for the sender (currently
212     * not used).
213     * @param intent The Intent to be broadcast.
214     * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
215     * {@link #FLAG_CANCEL_CURRENT}, {@link #FLAG_UPDATE_CURRENT},
216     * or any of the flags as supported by
217     * {@link Intent#fillIn Intent.fillIn()} to control which unspecified parts
218     * of the intent that can be supplied when the actual send happens.
219     *
220     * @return Returns an existing or new PendingIntent matching the given
221     * parameters.  May return null only if {@link #FLAG_NO_CREATE} has been
222     * supplied.
223     */
224    public static PendingIntent getBroadcast(Context context, int requestCode,
225            Intent intent, int flags) {
226        String packageName = context.getPackageName();
227        String resolvedType = intent != null ? intent.resolveTypeIfNeeded(
228                context.getContentResolver()) : null;
229        try {
230            IIntentSender target =
231                ActivityManagerNative.getDefault().getIntentSender(
232                    IActivityManager.INTENT_SENDER_BROADCAST, packageName,
233                    null, null, requestCode, intent, resolvedType, flags);
234            return target != null ? new PendingIntent(target) : null;
235        } catch (RemoteException e) {
236        }
237        return null;
238    }
239
240    /**
241     * Retrieve a PendingIntent that will start a service, like calling
242     * {@link Context#startService Context.startService()}.  The start
243     * arguments given to the service will come from the extras of the Intent.
244     *
245     * @param context The Context in which this PendingIntent should start
246     * the service.
247     * @param requestCode Private request code for the sender (currently
248     * not used).
249     * @param intent An Intent describing the service to be started.
250     * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
251     * {@link #FLAG_CANCEL_CURRENT}, {@link #FLAG_UPDATE_CURRENT},
252     * or any of the flags as supported by
253     * {@link Intent#fillIn Intent.fillIn()} to control which unspecified parts
254     * of the intent that can be supplied when the actual send happens.
255     *
256     * @return Returns an existing or new PendingIntent matching the given
257     * parameters.  May return null only if {@link #FLAG_NO_CREATE} has been
258     * supplied.
259     */
260    public static PendingIntent getService(Context context, int requestCode,
261            Intent intent, int flags) {
262        String packageName = context.getPackageName();
263        String resolvedType = intent != null ? intent.resolveTypeIfNeeded(
264                context.getContentResolver()) : null;
265        try {
266            IIntentSender target =
267                ActivityManagerNative.getDefault().getIntentSender(
268                    IActivityManager.INTENT_SENDER_SERVICE, packageName,
269                    null, null, requestCode, intent, resolvedType, flags);
270            return target != null ? new PendingIntent(target) : null;
271        } catch (RemoteException e) {
272        }
273        return null;
274    }
275
276    private class IntentSenderWrapper extends IntentSender {
277        protected IntentSenderWrapper(IIntentSender target) {
278            super(target);
279        }
280    }
281    /**
282     * Retrieve a IntentSender object that wraps the existing sender of the PendingIntent
283     *
284     * @return Returns a IntentSender object that wraps the sender of PendingIntent
285     *
286     */
287    public IntentSender getIntentSender() {
288        return new IntentSenderWrapper(mTarget);
289    }
290
291    /**
292     * Cancel a currently active PendingIntent.  Only the original application
293     * owning an PendingIntent can cancel it.
294     */
295    public void cancel() {
296        try {
297            ActivityManagerNative.getDefault().cancelIntentSender(mTarget);
298        } catch (RemoteException e) {
299        }
300    }
301
302    /**
303     * Perform the operation associated with this PendingIntent.
304     *
305     * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
306     *
307     * @throws CanceledException Throws CanceledException if the PendingIntent
308     * is no longer allowing more intents to be sent through it.
309     */
310    public void send() throws CanceledException {
311        send(null, 0, null, null, null);
312    }
313
314    /**
315     * Perform the operation associated with this PendingIntent.
316     *
317     * @param code Result code to supply back to the PendingIntent's target.
318     *
319     * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
320     *
321     * @throws CanceledException Throws CanceledException if the PendingIntent
322     * is no longer allowing more intents to be sent through it.
323     */
324    public void send(int code) throws CanceledException {
325        send(null, code, null, null, null);
326    }
327
328    /**
329     * Perform the operation associated with this PendingIntent, allowing the
330     * caller to specify information about the Intent to use.
331     *
332     * @param context The Context of the caller.
333     * @param code Result code to supply back to the PendingIntent's target.
334     * @param intent Additional Intent data.  See {@link Intent#fillIn
335     * Intent.fillIn()} for information on how this is applied to the
336     * original Intent.
337     *
338     * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
339     *
340     * @throws CanceledException Throws CanceledException if the PendingIntent
341     * is no longer allowing more intents to be sent through it.
342     */
343    public void send(Context context, int code, Intent intent)
344            throws CanceledException {
345        send(context, code, intent, null, null);
346    }
347
348    /**
349     * Perform the operation associated with this PendingIntent, allowing the
350     * caller to be notified when the send has completed.
351     *
352     * @param code Result code to supply back to the PendingIntent's target.
353     * @param onFinished The object to call back on when the send has
354     * completed, or null for no callback.
355     * @param handler Handler identifying the thread on which the callback
356     * should happen.  If null, the callback will happen from the thread
357     * pool of the process.
358     *
359     * @see #send(Context, int, Intent, android.app.PendingIntent.OnFinished, Handler)
360     *
361     * @throws CanceledException Throws CanceledException if the PendingIntent
362     * is no longer allowing more intents to be sent through it.
363     */
364    public void send(int code, OnFinished onFinished, Handler handler)
365            throws CanceledException {
366        send(null, code, null, onFinished, handler);
367    }
368
369    /**
370     * Perform the operation associated with this PendingIntent, allowing the
371     * caller to specify information about the Intent to use and be notified
372     * when the send has completed.
373     *
374     * <p>For the intent parameter, a PendingIntent
375     * often has restrictions on which fields can be supplied here, based on
376     * how the PendingIntent was retrieved in {@link #getActivity},
377     * {@link #getBroadcast}, or {@link #getService}.
378     *
379     * @param context The Context of the caller.  This may be null if
380     * <var>intent</var> is also null.
381     * @param code Result code to supply back to the PendingIntent's target.
382     * @param intent Additional Intent data.  See {@link Intent#fillIn
383     * Intent.fillIn()} for information on how this is applied to the
384     * original Intent.  Use null to not modify the original Intent.
385     * @param onFinished The object to call back on when the send has
386     * completed, or null for no callback.
387     * @param handler Handler identifying the thread on which the callback
388     * should happen.  If null, the callback will happen from the thread
389     * pool of the process.
390     *
391     * @see #send()
392     * @see #send(int)
393     * @see #send(Context, int, Intent)
394     * @see #send(int, android.app.PendingIntent.OnFinished, Handler)
395     *
396     * @throws CanceledException Throws CanceledException if the PendingIntent
397     * is no longer allowing more intents to be sent through it.
398     */
399    public void send(Context context, int code, Intent intent,
400            OnFinished onFinished, Handler handler) throws CanceledException {
401        try {
402            String resolvedType = intent != null ?
403                    intent.resolveTypeIfNeeded(context.getContentResolver())
404                    : null;
405            int res = mTarget.send(code, intent, resolvedType,
406                    onFinished != null
407                    ? new FinishedDispatcher(this, onFinished, handler)
408                    : null);
409            if (res < 0) {
410                throw new CanceledException();
411            }
412        } catch (RemoteException e) {
413            throw new CanceledException(e);
414        }
415    }
416
417    /**
418     * Return the package name of the application that created this
419     * PendingIntent, that is the identity under which you will actually be
420     * sending the Intent.  The returned string is supplied by the system, so
421     * that an application can not spoof its package.
422     *
423     * @return The package name of the PendingIntent, or null if there is
424     * none associated with it.
425     */
426    public String getTargetPackage() {
427        try {
428            return ActivityManagerNative.getDefault()
429                .getPackageForIntentSender(mTarget);
430        } catch (RemoteException e) {
431            // Should never happen.
432            return null;
433        }
434    }
435
436    /**
437     * Comparison operator on two PendingIntent objects, such that true
438     * is returned then they both represent the same operation from the
439     * same package.  This allows you to use {@link #getActivity},
440     * {@link #getBroadcast}, or {@link #getService} multiple times (even
441     * across a process being killed), resulting in different PendingIntent
442     * objects but whose equals() method identifies them as being the same
443     * operation.
444     */
445    @Override
446    public boolean equals(Object otherObj) {
447        if (otherObj instanceof PendingIntent) {
448            return mTarget.asBinder().equals(((PendingIntent)otherObj)
449                    .mTarget.asBinder());
450        }
451        return false;
452    }
453
454    @Override
455    public int hashCode() {
456        return mTarget.asBinder().hashCode();
457    }
458
459    @Override
460    public String toString() {
461        StringBuilder sb = new StringBuilder(128);
462        sb.append("PendingIntent{");
463        sb.append(Integer.toHexString(System.identityHashCode(this)));
464        sb.append(": ");
465        sb.append(mTarget != null ? mTarget.asBinder() : null);
466        sb.append('}');
467        return sb.toString();
468    }
469
470    public int describeContents() {
471        return 0;
472    }
473
474    public void writeToParcel(Parcel out, int flags) {
475        out.writeStrongBinder(mTarget.asBinder());
476    }
477
478    public static final Parcelable.Creator<PendingIntent> CREATOR
479            = new Parcelable.Creator<PendingIntent>() {
480        public PendingIntent createFromParcel(Parcel in) {
481            IBinder target = in.readStrongBinder();
482            return target != null ? new PendingIntent(target) : null;
483        }
484
485        public PendingIntent[] newArray(int size) {
486            return new PendingIntent[size];
487        }
488    };
489
490    /**
491     * Convenience function for writing either a PendingIntent or null pointer to
492     * a Parcel.  You must use this with {@link #readPendingIntentOrNullFromParcel}
493     * for later reading it.
494     *
495     * @param sender The PendingIntent to write, or null.
496     * @param out Where to write the PendingIntent.
497     */
498    public static void writePendingIntentOrNullToParcel(PendingIntent sender,
499            Parcel out) {
500        out.writeStrongBinder(sender != null ? sender.mTarget.asBinder()
501                : null);
502    }
503
504    /**
505     * Convenience function for reading either a Messenger or null pointer from
506     * a Parcel.  You must have previously written the Messenger with
507     * {@link #writePendingIntentOrNullToParcel}.
508     *
509     * @param in The Parcel containing the written Messenger.
510     *
511     * @return Returns the Messenger read from the Parcel, or null if null had
512     * been written.
513     */
514    public static PendingIntent readPendingIntentOrNullFromParcel(Parcel in) {
515        IBinder b = in.readStrongBinder();
516        return b != null ? new PendingIntent(b) : null;
517    }
518
519    /*package*/ PendingIntent(IIntentSender target) {
520        mTarget = target;
521    }
522
523    /*package*/ PendingIntent(IBinder target) {
524        mTarget = IIntentSender.Stub.asInterface(target);
525    }
526
527    /*package*/ IIntentSender getTarget() {
528        return mTarget;
529    }
530}
531