blob: bedf31a22f26410806c220c20e36ec46ba99a031 [file] [log] [blame]
Dianne Hackbornc8017682010-07-06 13:34:38 -07001/*
2 * Copyright (C) 2010 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.Loader;
Dianne Hackbornc8017682010-07-06 13:34:38 -070020import android.os.Bundle;
Dianne Hackborna2ea7472010-12-20 12:10:01 -080021import android.util.DebugUtils;
Dianne Hackborn5e0d5952010-08-05 13:45:35 -070022import android.util.Log;
Dianne Hackbornc8017682010-07-06 13:34:38 -070023import android.util.SparseArray;
24
Dianne Hackborn30d71892010-12-11 10:37:55 -080025import java.io.FileDescriptor;
26import java.io.PrintWriter;
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -080027import java.lang.reflect.Modifier;
Dianne Hackborn30d71892010-12-11 10:37:55 -080028
Dianne Hackbornc8017682010-07-06 13:34:38 -070029/**
Dianne Hackborn4911b782010-07-15 12:54:39 -070030 * Interface associated with an {@link Activity} or {@link Fragment} for managing
Dianne Hackbornc9189352010-12-15 14:57:25 -080031 * one or more {@link android.content.Loader} instances associated with it. This
32 * helps an application manage longer-running operations in conjunction with the
33 * Activity or Fragment lifecycle; the most common use of this is with a
34 * {@link android.content.CursorLoader}, however applications are free to write
35 * their own loaders for loading other types of data.
36 *
Dianne Hackbornf9dd34f2011-04-19 18:44:03 -070037 * While the LoaderManager API was introduced in
38 * {@link android.os.Build.VERSION_CODES#HONEYCOMB}, a version of the API
Dianne Hackborn7871bad2011-12-12 15:19:26 -080039 * at is also available for use on older platforms through
40 * {@link android.support.v4.app.FragmentActivity}. See the blog post
Dianne Hackbornf9dd34f2011-04-19 18:44:03 -070041 * <a href="http://android-developers.blogspot.com/2011/03/fragments-for-all.html">
42 * Fragments For All</a> for more details.
43 *
Dianne Hackbornc9189352010-12-15 14:57:25 -080044 * <p>As an example, here is the full implementation of a {@link Fragment}
45 * that displays a {@link android.widget.ListView} containing the results of
46 * a query against the contacts content provider. It uses a
47 * {@link android.content.CursorLoader} to manage the query on the provider.
48 *
Dianne Hackbornf9dd34f2011-04-19 18:44:03 -070049 * {@sample development/samples/ApiDemos/src/com/example/android/apis/app/LoaderCursor.java
Dianne Hackbornc9189352010-12-15 14:57:25 -080050 * fragment_cursor}
Joe Fernandezb54e7a32011-10-03 15:09:50 -070051 *
52 * <div class="special reference">
53 * <h3>Developer Guides</h3>
54 * <p>For more information about using loaders, read the
55 * <a href="{@docRoot}guide/topics/fundamentals/loaders.html">Loaders</a> developer guide.</p>
56 * </div>
Dianne Hackbornc8017682010-07-06 13:34:38 -070057 */
Dianne Hackbornab36acb2010-11-05 14:12:11 -070058public abstract class LoaderManager {
Dianne Hackborn4911b782010-07-15 12:54:39 -070059 /**
60 * Callback interface for a client to interact with the manager.
61 */
62 public interface LoaderCallbacks<D> {
63 /**
64 * Instantiate and return a new Loader for the given ID.
65 *
66 * @param id The ID whose loader is to be created.
67 * @param args Any arguments supplied by the caller.
68 * @return Return a new Loader instance that is ready to start loading.
69 */
70 public Loader<D> onCreateLoader(int id, Bundle args);
71
72 /**
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -070073 * Called when a previously created loader has finished its load. Note
74 * that normally an application is <em>not</em> allowed to commit fragment
75 * transactions while in this call, since it can happen after an
Dianne Hackborn48e7b452011-01-17 12:28:35 -080076 * activity's state is saved. See {@link FragmentManager#beginTransaction()
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -070077 * FragmentManager.openTransaction()} for further discussion on this.
78 *
Dianne Hackbornc9189352010-12-15 14:57:25 -080079 * <p>This function is guaranteed to be called prior to the release of
80 * the last data that was supplied for this Loader. At this point
81 * you should remove all use of the old data (since it will be released
82 * soon), but should not do your own release of the data since its Loader
83 * owns it and will take care of that. The Loader will take care of
84 * management of its data so you don't have to. In particular:
85 *
86 * <ul>
87 * <li> <p>The Loader will monitor for changes to the data, and report
88 * them to you through new calls here. You should not monitor the
89 * data yourself. For example, if the data is a {@link android.database.Cursor}
90 * and you place it in a {@link android.widget.CursorAdapter}, use
91 * the {@link android.widget.CursorAdapter#CursorAdapter(android.content.Context,
92 * android.database.Cursor, int)} constructor <em>without</em> passing
93 * in either {@link android.widget.CursorAdapter#FLAG_AUTO_REQUERY}
94 * or {@link android.widget.CursorAdapter#FLAG_REGISTER_CONTENT_OBSERVER}
95 * (that is, use 0 for the flags argument). This prevents the CursorAdapter
96 * from doing its own observing of the Cursor, which is not needed since
97 * when a change happens you will get a new Cursor throw another call
98 * here.
99 * <li> The Loader will release the data once it knows the application
100 * is no longer using it. For example, if the data is
101 * a {@link android.database.Cursor} from a {@link android.content.CursorLoader},
102 * you should not call close() on it yourself. If the Cursor is being placed in a
103 * {@link android.widget.CursorAdapter}, you should use the
104 * {@link android.widget.CursorAdapter#swapCursor(android.database.Cursor)}
105 * method so that the old Cursor is not closed.
106 * </ul>
107 *
Dianne Hackborn4911b782010-07-15 12:54:39 -0700108 * @param loader The Loader that has finished.
109 * @param data The data generated by the Loader.
110 */
111 public void onLoadFinished(Loader<D> loader, D data);
Dianne Hackbornc9189352010-12-15 14:57:25 -0800112
113 /**
114 * Called when a previously created loader is being reset, and thus
115 * making its data unavailable. The application should at this point
116 * remove any references it has to the Loader's data.
117 *
118 * @param loader The Loader that is being reset.
119 */
120 public void onLoaderReset(Loader<D> loader);
Dianne Hackborn4911b782010-07-15 12:54:39 -0700121 }
122
123 /**
124 * Ensures a loader is initialized and active. If the loader doesn't
125 * already exist, one is created and (if the activity/fragment is currently
126 * started) starts the loader. Otherwise the last created
127 * loader is re-used.
128 *
129 * <p>In either case, the given callback is associated with the loader, and
130 * will be called as the loader state changes. If at the point of call
131 * the caller is in its started state, and the requested loader
132 * already exists and has generated its data, then
Dianne Hackbornc9189352010-12-15 14:57:25 -0800133 * callback {@link LoaderCallbacks#onLoadFinished} will
Dianne Hackborn4911b782010-07-15 12:54:39 -0700134 * be called immediately (inside of this function), so you must be prepared
135 * for this to happen.
Dianne Hackbornc9189352010-12-15 14:57:25 -0800136 *
137 * @param id A unique identifier for this loader. Can be whatever you want.
138 * Identifiers are scoped to a particular LoaderManager instance.
139 * @param args Optional arguments to supply to the loader at construction.
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800140 * If a loader already exists (a new one does not need to be created), this
141 * parameter will be ignored and the last arguments continue to be used.
Dianne Hackbornc9189352010-12-15 14:57:25 -0800142 * @param callback Interface the LoaderManager will call to report about
143 * changes in the state of the loader. Required.
Dianne Hackborn4911b782010-07-15 12:54:39 -0700144 */
Dianne Hackbornab36acb2010-11-05 14:12:11 -0700145 public abstract <D> Loader<D> initLoader(int id, Bundle args,
Dianne Hackborn4911b782010-07-15 12:54:39 -0700146 LoaderManager.LoaderCallbacks<D> callback);
147
148 /**
Dianne Hackbornc9189352010-12-15 14:57:25 -0800149 * Starts a new or restarts an existing {@link android.content.Loader} in
150 * this manager, registers the callbacks to it,
Dianne Hackborn4911b782010-07-15 12:54:39 -0700151 * and (if the activity/fragment is currently started) starts loading it.
152 * If a loader with the same id has previously been
153 * started it will automatically be destroyed when the new loader completes
154 * its work. The callback will be delivered before the old loader
155 * is destroyed.
Dianne Hackbornc9189352010-12-15 14:57:25 -0800156 *
157 * @param id A unique identifier for this loader. Can be whatever you want.
158 * Identifiers are scoped to a particular LoaderManager instance.
159 * @param args Optional arguments to supply to the loader at construction.
160 * @param callback Interface the LoaderManager will call to report about
161 * changes in the state of the loader. Required.
Dianne Hackborn4911b782010-07-15 12:54:39 -0700162 */
Dianne Hackbornab36acb2010-11-05 14:12:11 -0700163 public abstract <D> Loader<D> restartLoader(int id, Bundle args,
Dianne Hackborn4911b782010-07-15 12:54:39 -0700164 LoaderManager.LoaderCallbacks<D> callback);
165
166 /**
Dianne Hackbornf73c75c2010-12-17 16:54:05 -0800167 * Stops and removes the loader with the given ID. If this loader
168 * had previously reported data to the client through
169 * {@link LoaderCallbacks#onLoadFinished(Loader, Object)}, a call
170 * will be made to {@link LoaderCallbacks#onLoaderReset(Loader)}.
Dianne Hackborn4911b782010-07-15 12:54:39 -0700171 */
Dianne Hackbornc9189352010-12-15 14:57:25 -0800172 public abstract void destroyLoader(int id);
173
174 /**
Dianne Hackborn4911b782010-07-15 12:54:39 -0700175 * Return the Loader with the given id or null if no matching Loader
176 * is found.
177 */
Dianne Hackbornab36acb2010-11-05 14:12:11 -0700178 public abstract <D> Loader<D> getLoader(int id);
Dianne Hackborn30d71892010-12-11 10:37:55 -0800179
180 /**
181 * Print the LoaderManager's state into the given stream.
182 *
183 * @param prefix Text to print at the front of each line.
184 * @param fd The raw file descriptor that the dump is being sent to.
185 * @param writer A PrintWriter to which the dump is to be set.
186 * @param args Additional arguments to the dump request.
187 */
188 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args);
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800189
190 /**
191 * Control whether the framework's internal loader manager debugging
192 * logs are turned on. If enabled, you will see output in logcat as
193 * the framework performs loader operations.
194 */
195 public static void enableDebugLogging(boolean enabled) {
196 LoaderManagerImpl.DEBUG = enabled;
197 }
Adam Powell180202f2016-09-21 15:41:47 -0700198
199 /** @hide for internal testing only */
200 public FragmentHostCallback getFragmentHostCallback() { return null; }
Dianne Hackborn4911b782010-07-15 12:54:39 -0700201}
202
Dianne Hackbornab36acb2010-11-05 14:12:11 -0700203class LoaderManagerImpl extends LoaderManager {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800204 static final String TAG = "LoaderManager";
Dianne Hackbornec541e12011-01-21 16:44:04 -0800205 static boolean DEBUG = false;
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700206
207 // These are the currently active loaders. A loader is here
208 // from the time its load is started until it has been explicitly
209 // stopped or restarted by the application.
Dianne Hackbornf4bf0ae2013-05-20 18:42:16 -0700210 final SparseArray<LoaderInfo> mLoaders = new SparseArray<LoaderInfo>(0);
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700211
212 // These are previously run loaders. This list is maintained internally
213 // to avoid destroying a loader while an application is still using it.
214 // It allows an application to restart a loader, but continue using its
215 // previously run loader until the new loader's data is available.
Dianne Hackbornf4bf0ae2013-05-20 18:42:16 -0700216 final SparseArray<LoaderInfo> mInactiveLoaders = new SparseArray<LoaderInfo>(0);
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700217
Dianne Hackborn62bea2f2012-09-04 18:48:15 -0700218 final String mWho;
219
Dianne Hackborn2707d602010-07-09 18:01:20 -0700220 boolean mStarted;
221 boolean mRetaining;
222 boolean mRetainingStarted;
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800223
224 boolean mCreatingLoader;
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700225 private FragmentHostCallback mHost;
Dianne Hackborn4911b782010-07-15 12:54:39 -0700226
Jeff Brownb19a71a2012-01-31 11:48:39 -0800227 final class LoaderInfo implements Loader.OnLoadCompleteListener<Object>,
228 Loader.OnLoadCanceledListener<Object> {
Dianne Hackborn2707d602010-07-09 18:01:20 -0700229 final int mId;
230 final Bundle mArgs;
231 LoaderManager.LoaderCallbacks<Object> mCallbacks;
232 Loader<Object> mLoader;
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800233 boolean mHaveData;
234 boolean mDeliveredData;
Dianne Hackborn2707d602010-07-09 18:01:20 -0700235 Object mData;
236 boolean mStarted;
237 boolean mRetaining;
238 boolean mRetainingStarted;
Dianne Hackbornafc4b282011-06-10 17:03:42 -0700239 boolean mReportNextStart;
Dianne Hackborn2707d602010-07-09 18:01:20 -0700240 boolean mDestroyed;
241 boolean mListenerRegistered;
Dianne Hackborn30d71892010-12-11 10:37:55 -0800242
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800243 LoaderInfo mPendingLoader;
244
Dianne Hackborn2707d602010-07-09 18:01:20 -0700245 public LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) {
246 mId = id;
247 mArgs = args;
248 mCallbacks = callbacks;
249 }
250
251 void start() {
252 if (mRetaining && mRetainingStarted) {
253 // Our owner is started, but we were being retained from a
254 // previous instance in the started state... so there is really
255 // nothing to do here, since the loaders are still started.
256 mStarted = true;
257 return;
258 }
259
Dianne Hackborn4911b782010-07-15 12:54:39 -0700260 if (mStarted) {
261 // If loader already started, don't restart.
262 return;
263 }
264
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800265 mStarted = true;
266
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700267 if (DEBUG) Log.v(TAG, " Starting: " + this);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700268 if (mLoader == null && mCallbacks != null) {
269 mLoader = mCallbacks.onCreateLoader(mId, mArgs);
270 }
271 if (mLoader != null) {
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800272 if (mLoader.getClass().isMemberClass()
273 && !Modifier.isStatic(mLoader.getClass().getModifiers())) {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800274 throw new IllegalArgumentException(
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800275 "Object returned from onCreateLoader must not be a non-static inner member class: "
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800276 + mLoader);
277 }
Dianne Hackborn4911b782010-07-15 12:54:39 -0700278 if (!mListenerRegistered) {
279 mLoader.registerListener(mId, this);
Jeff Brownb19a71a2012-01-31 11:48:39 -0800280 mLoader.registerOnLoadCanceledListener(this);
Dianne Hackborn4911b782010-07-15 12:54:39 -0700281 mListenerRegistered = true;
282 }
Dianne Hackborn2707d602010-07-09 18:01:20 -0700283 mLoader.startLoading();
Dianne Hackborn2707d602010-07-09 18:01:20 -0700284 }
285 }
286
287 void retain() {
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700288 if (DEBUG) Log.v(TAG, " Retaining: " + this);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700289 mRetaining = true;
290 mRetainingStarted = mStarted;
291 mStarted = false;
292 mCallbacks = null;
293 }
294
295 void finishRetain() {
296 if (mRetaining) {
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700297 if (DEBUG) Log.v(TAG, " Finished Retaining: " + this);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700298 mRetaining = false;
299 if (mStarted != mRetainingStarted) {
300 if (!mStarted) {
301 // This loader was retained in a started state, but
302 // at the end of retaining everything our owner is
303 // no longer started... so make it stop.
304 stop();
305 }
306 }
Dianne Hackbornc9189352010-12-15 14:57:25 -0800307 }
308
Dianne Hackbornafc4b282011-06-10 17:03:42 -0700309 if (mStarted && mHaveData && !mReportNextStart) {
Dianne Hackbornc9189352010-12-15 14:57:25 -0800310 // This loader has retained its data, either completely across
311 // a configuration change or just whatever the last data set
312 // was after being restarted from a stop, and now at the point of
313 // finishing the retain we find we remain started, have
314 // our data, and the owner has a new callback... so
315 // let's deliver the data now.
316 callOnLoadFinished(mLoader, mData);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700317 }
318 }
319
Dianne Hackbornafc4b282011-06-10 17:03:42 -0700320 void reportStart() {
321 if (mStarted) {
322 if (mReportNextStart) {
323 mReportNextStart = false;
Adam Powelleba13dd2016-04-11 14:26:58 -0700324 if (mHaveData && !mRetaining) {
Dianne Hackbornafc4b282011-06-10 17:03:42 -0700325 callOnLoadFinished(mLoader, mData);
326 }
327 }
328 }
329 }
330
Dianne Hackborn2707d602010-07-09 18:01:20 -0700331 void stop() {
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700332 if (DEBUG) Log.v(TAG, " Stopping: " + this);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700333 mStarted = false;
Dianne Hackborndebb2e22010-08-09 16:32:52 -0700334 if (!mRetaining) {
335 if (mLoader != null && mListenerRegistered) {
336 // Let the loader know we're done with it
337 mListenerRegistered = false;
338 mLoader.unregisterListener(this);
Jeff Brownb19a71a2012-01-31 11:48:39 -0800339 mLoader.unregisterOnLoadCanceledListener(this);
Dianne Hackborndebb2e22010-08-09 16:32:52 -0700340 mLoader.stopLoading();
341 }
Dianne Hackborn2707d602010-07-09 18:01:20 -0700342 }
343 }
Jeff Brownb19a71a2012-01-31 11:48:39 -0800344
Adam Powelle5552be2016-04-27 10:42:19 -0700345 boolean cancel() {
Jeff Brownb19a71a2012-01-31 11:48:39 -0800346 if (DEBUG) Log.v(TAG, " Canceling: " + this);
347 if (mStarted && mLoader != null && mListenerRegistered) {
Adam Powelle5552be2016-04-27 10:42:19 -0700348 final boolean cancelLoadResult = mLoader.cancelLoad();
349 if (!cancelLoadResult) {
Jeff Brownb19a71a2012-01-31 11:48:39 -0800350 onLoadCanceled(mLoader);
351 }
Adam Powelle5552be2016-04-27 10:42:19 -0700352 return cancelLoadResult;
Jeff Brownb19a71a2012-01-31 11:48:39 -0800353 }
Adam Powelle5552be2016-04-27 10:42:19 -0700354 return false;
Jeff Brownb19a71a2012-01-31 11:48:39 -0800355 }
356
Dianne Hackborn2707d602010-07-09 18:01:20 -0700357 void destroy() {
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700358 if (DEBUG) Log.v(TAG, " Destroying: " + this);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700359 mDestroyed = true;
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800360 boolean needReset = mDeliveredData;
361 mDeliveredData = false;
362 if (mCallbacks != null && mLoader != null && mHaveData && needReset) {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800363 if (DEBUG) Log.v(TAG, " Reseting: " + this);
Dianne Hackbornc9189352010-12-15 14:57:25 -0800364 String lastBecause = null;
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700365 if (mHost != null) {
366 lastBecause = mHost.mFragmentManager.mNoTransactionsBecause;
367 mHost.mFragmentManager.mNoTransactionsBecause = "onLoaderReset";
Dianne Hackbornc9189352010-12-15 14:57:25 -0800368 }
369 try {
370 mCallbacks.onLoaderReset(mLoader);
371 } finally {
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700372 if (mHost != null) {
373 mHost.mFragmentManager.mNoTransactionsBecause = lastBecause;
Dianne Hackbornc9189352010-12-15 14:57:25 -0800374 }
375 }
376 }
Dianne Hackborn2707d602010-07-09 18:01:20 -0700377 mCallbacks = null;
Dianne Hackbornc9189352010-12-15 14:57:25 -0800378 mData = null;
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800379 mHaveData = false;
Dianne Hackborn2707d602010-07-09 18:01:20 -0700380 if (mLoader != null) {
381 if (mListenerRegistered) {
382 mListenerRegistered = false;
383 mLoader.unregisterListener(this);
Jeff Brownb19a71a2012-01-31 11:48:39 -0800384 mLoader.unregisterOnLoadCanceledListener(this);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700385 }
Dianne Hackbornc9189352010-12-15 14:57:25 -0800386 mLoader.reset();
Dianne Hackborn2707d602010-07-09 18:01:20 -0700387 }
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800388 if (mPendingLoader != null) {
389 mPendingLoader.destroy();
390 }
Dianne Hackborn2707d602010-07-09 18:01:20 -0700391 }
Jeff Brownb19a71a2012-01-31 11:48:39 -0800392
393 @Override
394 public void onLoadCanceled(Loader<Object> loader) {
395 if (DEBUG) Log.v(TAG, "onLoadCanceled: " + this);
396
397 if (mDestroyed) {
398 if (DEBUG) Log.v(TAG, " Ignoring load canceled -- destroyed");
399 return;
400 }
401
402 if (mLoaders.get(mId) != this) {
403 // This cancellation message is not coming from the current active loader.
404 // We don't care about it.
405 if (DEBUG) Log.v(TAG, " Ignoring load canceled -- not active");
406 return;
407 }
408
409 LoaderInfo pending = mPendingLoader;
410 if (pending != null) {
411 // There is a new request pending and we were just
412 // waiting for the old one to cancel or complete before starting
413 // it. So now it is time, switch over to the new loader.
414 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending);
415 mPendingLoader = null;
416 mLoaders.put(mId, null);
417 destroy();
418 installLoader(pending);
419 }
420 }
421
422 @Override
423 public void onLoadComplete(Loader<Object> loader, Object data) {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800424 if (DEBUG) Log.v(TAG, "onLoadComplete: " + this);
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800425
Dianne Hackborn2707d602010-07-09 18:01:20 -0700426 if (mDestroyed) {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800427 if (DEBUG) Log.v(TAG, " Ignoring load complete -- destroyed");
Dianne Hackborn2707d602010-07-09 18:01:20 -0700428 return;
429 }
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800430
431 if (mLoaders.get(mId) != this) {
432 // This data is not coming from the current active loader.
433 // We don't care about it.
434 if (DEBUG) Log.v(TAG, " Ignoring load complete -- not active");
435 return;
436 }
437
438 LoaderInfo pending = mPendingLoader;
439 if (pending != null) {
440 // There is a new request pending and we were just
441 // waiting for the old one to complete before starting
442 // it. So now it is time, switch over to the new loader.
443 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending);
444 mPendingLoader = null;
445 mLoaders.put(mId, null);
446 destroy();
447 installLoader(pending);
448 return;
449 }
Dianne Hackborn2707d602010-07-09 18:01:20 -0700450
Dianne Hackbornc8017682010-07-06 13:34:38 -0700451 // Notify of the new data so the app can switch out the old data before
452 // we try to destroy it.
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800453 if (mData != data || !mHaveData) {
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800454 mData = data;
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800455 mHaveData = true;
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800456 if (mStarted) {
457 callOnLoadFinished(loader, data);
458 }
Dianne Hackbornc9189352010-12-15 14:57:25 -0800459 }
Dianne Hackbornc8017682010-07-06 13:34:38 -0700460
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800461 //if (DEBUG) Log.v(TAG, " onLoadFinished returned: " + this);
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700462
463 // We have now given the application the new loader with its
464 // loaded data, so it should have stopped using the previous
465 // loader. If there is a previous loader on the inactive list,
466 // clean it up.
Dianne Hackborn2707d602010-07-09 18:01:20 -0700467 LoaderInfo info = mInactiveLoaders.get(mId);
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700468 if (info != null && info != this) {
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800469 info.mDeliveredData = false;
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700470 info.destroy();
Dianne Hackborn2707d602010-07-09 18:01:20 -0700471 mInactiveLoaders.remove(mId);
Dianne Hackbornc8017682010-07-06 13:34:38 -0700472 }
Adam Powell635c60a2011-10-26 10:22:16 -0700473
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700474 if (mHost != null && !hasRunningLoaders()) {
475 mHost.mFragmentManager.startPendingDeferredFragments();
Adam Powell635c60a2011-10-26 10:22:16 -0700476 }
Dianne Hackbornc8017682010-07-06 13:34:38 -0700477 }
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700478
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700479 void callOnLoadFinished(Loader<Object> loader, Object data) {
480 if (mCallbacks != null) {
481 String lastBecause = null;
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700482 if (mHost != null) {
483 lastBecause = mHost.mFragmentManager.mNoTransactionsBecause;
484 mHost.mFragmentManager.mNoTransactionsBecause = "onLoadFinished";
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700485 }
486 try {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800487 if (DEBUG) Log.v(TAG, " onLoadFinished in " + loader + ": "
488 + loader.dataToString(data));
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700489 mCallbacks.onLoadFinished(loader, data);
490 } finally {
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700491 if (mHost != null) {
492 mHost.mFragmentManager.mNoTransactionsBecause = lastBecause;
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700493 }
494 }
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800495 mDeliveredData = true;
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700496 }
497 }
498
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700499 @Override
500 public String toString() {
501 StringBuilder sb = new StringBuilder(64);
502 sb.append("LoaderInfo{");
503 sb.append(Integer.toHexString(System.identityHashCode(this)));
504 sb.append(" #");
505 sb.append(mId);
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800506 sb.append(" : ");
507 DebugUtils.buildShortClassTag(mLoader, sb);
508 sb.append("}}");
Dianne Hackborn30d71892010-12-11 10:37:55 -0800509 return sb.toString();
510 }
511
512 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
513 writer.print(prefix); writer.print("mId="); writer.print(mId);
514 writer.print(" mArgs="); writer.println(mArgs);
515 writer.print(prefix); writer.print("mCallbacks="); writer.println(mCallbacks);
516 writer.print(prefix); writer.print("mLoader="); writer.println(mLoader);
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800517 if (mLoader != null) {
518 mLoader.dump(prefix + " ", fd, writer, args);
519 }
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800520 if (mHaveData || mDeliveredData) {
521 writer.print(prefix); writer.print("mHaveData="); writer.print(mHaveData);
522 writer.print(" mDeliveredData="); writer.println(mDeliveredData);
523 writer.print(prefix); writer.print("mData="); writer.println(mData);
524 }
Dianne Hackborn30d71892010-12-11 10:37:55 -0800525 writer.print(prefix); writer.print("mStarted="); writer.print(mStarted);
Dianne Hackbornafc4b282011-06-10 17:03:42 -0700526 writer.print(" mReportNextStart="); writer.print(mReportNextStart);
Dianne Hackbornf73c75c2010-12-17 16:54:05 -0800527 writer.print(" mDestroyed="); writer.println(mDestroyed);
Dianne Hackbornafc4b282011-06-10 17:03:42 -0700528 writer.print(prefix); writer.print("mRetaining="); writer.print(mRetaining);
529 writer.print(" mRetainingStarted="); writer.print(mRetainingStarted);
530 writer.print(" mListenerRegistered="); writer.println(mListenerRegistered);
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800531 if (mPendingLoader != null) {
532 writer.print(prefix); writer.println("Pending Loader ");
533 writer.print(mPendingLoader); writer.println(":");
534 mPendingLoader.dump(prefix + " ", fd, writer, args);
535 }
Dianne Hackborn30d71892010-12-11 10:37:55 -0800536 }
Dianne Hackbornc8017682010-07-06 13:34:38 -0700537 }
Dianne Hackbornc8017682010-07-06 13:34:38 -0700538
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700539 LoaderManagerImpl(String who, FragmentHostCallback host, boolean started) {
Dianne Hackborn62bea2f2012-09-04 18:48:15 -0700540 mWho = who;
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700541 mHost = host;
Dianne Hackbornc8017682010-07-06 13:34:38 -0700542 mStarted = started;
543 }
544
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700545 void updateHostController(FragmentHostCallback host) {
546 mHost = host;
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700547 }
Adam Powell180202f2016-09-21 15:41:47 -0700548
549 public FragmentHostCallback getFragmentHostCallback() {
550 return mHost;
551 }
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700552
Dianne Hackborn2707d602010-07-09 18:01:20 -0700553 private LoaderInfo createLoader(int id, Bundle args,
554 LoaderManager.LoaderCallbacks<Object> callback) {
555 LoaderInfo info = new LoaderInfo(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700556 Loader<Object> loader = callback.onCreateLoader(id, args);
557 info.mLoader = (Loader<Object>)loader;
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800558 return info;
559 }
560
561 private LoaderInfo createAndInstallLoader(int id, Bundle args,
562 LoaderManager.LoaderCallbacks<Object> callback) {
563 try {
564 mCreatingLoader = true;
565 LoaderInfo info = createLoader(id, args, callback);
566 installLoader(info);
567 return info;
568 } finally {
569 mCreatingLoader = false;
570 }
571 }
572
573 void installLoader(LoaderInfo info) {
574 mLoaders.put(info.mId, info);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700575 if (mStarted) {
Dianne Hackborn4911b782010-07-15 12:54:39 -0700576 // The activity will start all existing loaders in it's onStart(),
577 // so only start them here if we're past that point of the activitiy's
578 // life cycle
579 info.start();
Dianne Hackborn2707d602010-07-09 18:01:20 -0700580 }
Dianne Hackborn2707d602010-07-09 18:01:20 -0700581 }
582
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800583 /**
584 * Call to initialize a particular ID with a Loader. If this ID already
585 * has a Loader associated with it, it is left unchanged and any previous
586 * callbacks replaced with the newly provided ones. If there is not currently
587 * a Loader for the ID, a new one is created and started.
588 *
589 * <p>This function should generally be used when a component is initializing,
590 * to ensure that a Loader it relies on is created. This allows it to re-use
591 * an existing Loader's data if there already is one, so that for example
592 * when an {@link Activity} is re-created after a configuration change it
593 * does not need to re-create its loaders.
594 *
595 * <p>Note that in the case where an existing Loader is re-used, the
596 * <var>args</var> given here <em>will be ignored</em> because you will
597 * continue using the previous Loader.
598 *
599 * @param id A unique (to this LoaderManager instance) identifier under
600 * which to manage the new Loader.
601 * @param args Optional arguments that will be propagated to
602 * {@link LoaderCallbacks#onCreateLoader(int, Bundle) LoaderCallbacks.onCreateLoader()}.
603 * @param callback Interface implementing management of this Loader. Required.
604 * Its onCreateLoader() method will be called while inside of the function to
605 * instantiate the Loader object.
606 */
Dianne Hackborn2707d602010-07-09 18:01:20 -0700607 @SuppressWarnings("unchecked")
608 public <D> Loader<D> initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800609 if (mCreatingLoader) {
610 throw new IllegalStateException("Called while creating a loader");
611 }
612
Dianne Hackborn2707d602010-07-09 18:01:20 -0700613 LoaderInfo info = mLoaders.get(id);
614
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800615 if (DEBUG) Log.v(TAG, "initLoader in " + this + ": args=" + args);
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700616
Dianne Hackborn2707d602010-07-09 18:01:20 -0700617 if (info == null) {
618 // Loader doesn't already exist; create.
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800619 info = createAndInstallLoader(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800620 if (DEBUG) Log.v(TAG, " Created new loader " + info);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700621 } else {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800622 if (DEBUG) Log.v(TAG, " Re-using existing loader " + info);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700623 info.mCallbacks = (LoaderManager.LoaderCallbacks<Object>)callback;
624 }
625
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800626 if (info.mHaveData && mStarted) {
Dianne Hackborn2707d602010-07-09 18:01:20 -0700627 // If the loader has already generated its data, report it now.
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700628 info.callOnLoadFinished(info.mLoader, info.mData);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700629 }
630
631 return (Loader<D>)info.mLoader;
632 }
633
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800634 /**
635 * Call to re-create the Loader associated with a particular ID. If there
636 * is currently a Loader associated with this ID, it will be
637 * canceled/stopped/destroyed as appropriate. A new Loader with the given
638 * arguments will be created and its data delivered to you once available.
639 *
640 * <p>This function does some throttling of Loaders. If too many Loaders
641 * have been created for the given ID but not yet generated their data,
642 * new calls to this function will create and return a new Loader but not
643 * actually start it until some previous loaders have completed.
644 *
645 * <p>After calling this function, any previous Loaders associated with
646 * this ID will be considered invalid, and you will receive no further
647 * data updates from them.
648 *
649 * @param id A unique (to this LoaderManager instance) identifier under
650 * which to manage the new Loader.
651 * @param args Optional arguments that will be propagated to
652 * {@link LoaderCallbacks#onCreateLoader(int, Bundle) LoaderCallbacks.onCreateLoader()}.
653 * @param callback Interface implementing management of this Loader. Required.
654 * Its onCreateLoader() method will be called while inside of the function to
655 * instantiate the Loader object.
656 */
Dianne Hackbornc8017682010-07-06 13:34:38 -0700657 @SuppressWarnings("unchecked")
Dianne Hackborn2707d602010-07-09 18:01:20 -0700658 public <D> Loader<D> restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800659 if (mCreatingLoader) {
660 throw new IllegalStateException("Called while creating a loader");
661 }
662
Dianne Hackbornc8017682010-07-06 13:34:38 -0700663 LoaderInfo info = mLoaders.get(id);
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800664 if (DEBUG) Log.v(TAG, "restartLoader in " + this + ": args=" + args);
Dianne Hackbornc8017682010-07-06 13:34:38 -0700665 if (info != null) {
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700666 LoaderInfo inactive = mInactiveLoaders.get(id);
667 if (inactive != null) {
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800668 if (info.mHaveData) {
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700669 // This loader now has data... we are probably being
670 // called from within onLoadComplete, where we haven't
671 // yet destroyed the last inactive loader. So just do
672 // that now.
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800673 if (DEBUG) Log.v(TAG, " Removing last inactive loader: " + info);
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800674 inactive.mDeliveredData = false;
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700675 inactive.destroy();
Dianne Hackborn260c3c72011-01-30 16:55:55 -0800676 info.mLoader.abandon();
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700677 mInactiveLoaders.put(id, info);
678 } else {
679 // We already have an inactive loader for this ID that we are
Adam Powelle5552be2016-04-27 10:42:19 -0700680 // waiting for! Try to cancel; if this returns true then the task is still
681 // running and we have more work to do.
682 if (!info.cancel()) {
683 // The current Loader has not been started or was successfully canceled,
684 // we thus have no reason to keep it around. Remove it and a new
685 // LoaderInfo will be created below.
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800686 if (DEBUG) Log.v(TAG, " Current loader is stopped; replacing");
687 mLoaders.put(id, null);
688 info.destroy();
689 } else {
690 // Now we have three active loaders... we'll queue
691 // up this request to be processed once one of the other loaders
Adam Powelle5552be2016-04-27 10:42:19 -0700692 // finishes.
693 if (DEBUG) Log.v(TAG,
694 " Current loader is running; configuring pending loader");
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800695 if (info.mPendingLoader != null) {
696 if (DEBUG) Log.v(TAG, " Removing pending loader: " + info.mPendingLoader);
697 info.mPendingLoader.destroy();
698 info.mPendingLoader = null;
699 }
700 if (DEBUG) Log.v(TAG, " Enqueuing as new pending loader");
701 info.mPendingLoader = createLoader(id, args,
702 (LoaderManager.LoaderCallbacks<Object>)callback);
703 return (Loader<D>)info.mPendingLoader.mLoader;
704 }
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700705 }
Dianne Hackborn2707d602010-07-09 18:01:20 -0700706 } else {
707 // Keep track of the previous instance of this loader so we can destroy
708 // it when the new one completes.
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800709 if (DEBUG) Log.v(TAG, " Making last loader inactive: " + info);
Dianne Hackborn260c3c72011-01-30 16:55:55 -0800710 info.mLoader.abandon();
Dianne Hackborn2707d602010-07-09 18:01:20 -0700711 mInactiveLoaders.put(id, info);
712 }
Dianne Hackbornc8017682010-07-06 13:34:38 -0700713 }
Dianne Hackbornc8017682010-07-06 13:34:38 -0700714
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800715 info = createAndInstallLoader(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700716 return (Loader<D>)info.mLoader;
Dianne Hackbornc8017682010-07-06 13:34:38 -0700717 }
718
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800719 /**
720 * Rip down, tear apart, shred to pieces a current Loader ID. After returning
721 * from this function, any Loader objects associated with this ID are
722 * destroyed. Any data associated with them is destroyed. You better not
723 * be using it when you do this.
724 * @param id Identifier of the Loader to be destroyed.
725 */
Dianne Hackbornc9189352010-12-15 14:57:25 -0800726 public void destroyLoader(int id) {
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800727 if (mCreatingLoader) {
728 throw new IllegalStateException("Called while creating a loader");
729 }
730
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800731 if (DEBUG) Log.v(TAG, "destroyLoader in " + this + " of " + id);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700732 int idx = mLoaders.indexOfKey(id);
733 if (idx >= 0) {
734 LoaderInfo info = mLoaders.valueAt(idx);
735 mLoaders.removeAt(idx);
Dianne Hackborn4911b782010-07-15 12:54:39 -0700736 info.destroy();
Dianne Hackbornc8017682010-07-06 13:34:38 -0700737 }
Dianne Hackbornf73c75c2010-12-17 16:54:05 -0800738 idx = mInactiveLoaders.indexOfKey(id);
739 if (idx >= 0) {
740 LoaderInfo info = mInactiveLoaders.valueAt(idx);
741 mInactiveLoaders.removeAt(idx);
742 info.destroy();
743 }
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700744 if (mHost != null && !hasRunningLoaders()) {
745 mHost.mFragmentManager.startPendingDeferredFragments();
Adam Powell37510902011-10-31 11:48:24 -0700746 }
Dianne Hackbornc8017682010-07-06 13:34:38 -0700747 }
748
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800749 /**
750 * Return the most recent Loader object associated with the
751 * given ID.
752 */
Dianne Hackbornc8017682010-07-06 13:34:38 -0700753 @SuppressWarnings("unchecked")
754 public <D> Loader<D> getLoader(int id) {
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800755 if (mCreatingLoader) {
756 throw new IllegalStateException("Called while creating a loader");
757 }
758
Dianne Hackbornc8017682010-07-06 13:34:38 -0700759 LoaderInfo loaderInfo = mLoaders.get(id);
760 if (loaderInfo != null) {
Dianne Hackborn6e1bf6a2011-01-20 13:40:19 -0800761 if (loaderInfo.mPendingLoader != null) {
762 return (Loader<D>)loaderInfo.mPendingLoader.mLoader;
763 }
764 return (Loader<D>)loaderInfo.mLoader;
Dianne Hackbornc8017682010-07-06 13:34:38 -0700765 }
766 return null;
767 }
768
769 void doStart() {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800770 if (DEBUG) Log.v(TAG, "Starting in " + this);
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700771 if (mStarted) {
772 RuntimeException e = new RuntimeException("here");
773 e.fillInStackTrace();
774 Log.w(TAG, "Called doStart when already started: " + this, e);
775 return;
776 }
777
Dianne Hackbornc9189352010-12-15 14:57:25 -0800778 mStarted = true;
779
Dianne Hackbornc8017682010-07-06 13:34:38 -0700780 // Call out to sub classes so they can start their loaders
781 // Let the existing loaders know that we want to be notified when a load is complete
782 for (int i = mLoaders.size()-1; i >= 0; i--) {
Dianne Hackborn2707d602010-07-09 18:01:20 -0700783 mLoaders.valueAt(i).start();
Dianne Hackbornc8017682010-07-06 13:34:38 -0700784 }
Dianne Hackbornc8017682010-07-06 13:34:38 -0700785 }
786
787 void doStop() {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800788 if (DEBUG) Log.v(TAG, "Stopping in " + this);
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700789 if (!mStarted) {
790 RuntimeException e = new RuntimeException("here");
791 e.fillInStackTrace();
792 Log.w(TAG, "Called doStop when not started: " + this, e);
793 return;
794 }
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700795
Dianne Hackbornc8017682010-07-06 13:34:38 -0700796 for (int i = mLoaders.size()-1; i >= 0; i--) {
Dianne Hackborn2707d602010-07-09 18:01:20 -0700797 mLoaders.valueAt(i).stop();
Dianne Hackbornc8017682010-07-06 13:34:38 -0700798 }
Dianne Hackbornc8017682010-07-06 13:34:38 -0700799 mStarted = false;
800 }
801
Dianne Hackborn2707d602010-07-09 18:01:20 -0700802 void doRetain() {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800803 if (DEBUG) Log.v(TAG, "Retaining in " + this);
Dianne Hackbornfb3cffe2010-10-25 17:08:56 -0700804 if (!mStarted) {
805 RuntimeException e = new RuntimeException("here");
806 e.fillInStackTrace();
807 Log.w(TAG, "Called doRetain when not started: " + this, e);
808 return;
809 }
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700810
Dianne Hackborn2707d602010-07-09 18:01:20 -0700811 mRetaining = true;
812 mStarted = false;
813 for (int i = mLoaders.size()-1; i >= 0; i--) {
814 mLoaders.valueAt(i).retain();
815 }
816 }
817
818 void finishRetain() {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800819 if (mRetaining) {
820 if (DEBUG) Log.v(TAG, "Finished Retaining in " + this);
Dianne Hackborn5e0d5952010-08-05 13:45:35 -0700821
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800822 mRetaining = false;
823 for (int i = mLoaders.size()-1; i >= 0; i--) {
824 mLoaders.valueAt(i).finishRetain();
825 }
Dianne Hackborn2707d602010-07-09 18:01:20 -0700826 }
827 }
828
Dianne Hackbornafc4b282011-06-10 17:03:42 -0700829 void doReportNextStart() {
830 for (int i = mLoaders.size()-1; i >= 0; i--) {
831 mLoaders.valueAt(i).mReportNextStart = true;
832 }
833 }
834
835 void doReportStart() {
836 for (int i = mLoaders.size()-1; i >= 0; i--) {
837 mLoaders.valueAt(i).reportStart();
838 }
839 }
840
Dianne Hackbornc8017682010-07-06 13:34:38 -0700841 void doDestroy() {
Dianne Hackborn2707d602010-07-09 18:01:20 -0700842 if (!mRetaining) {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800843 if (DEBUG) Log.v(TAG, "Destroying Active in " + this);
Dianne Hackbornc8017682010-07-06 13:34:38 -0700844 for (int i = mLoaders.size()-1; i >= 0; i--) {
Dianne Hackborn2707d602010-07-09 18:01:20 -0700845 mLoaders.valueAt(i).destroy();
Dianne Hackbornc8017682010-07-06 13:34:38 -0700846 }
Roman Mazur1da8e8c2012-12-13 08:20:11 +0200847 mLoaders.clear();
Dianne Hackbornc8017682010-07-06 13:34:38 -0700848 }
Dianne Hackborn2707d602010-07-09 18:01:20 -0700849
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800850 if (DEBUG) Log.v(TAG, "Destroying Inactive in " + this);
Dianne Hackborn2707d602010-07-09 18:01:20 -0700851 for (int i = mInactiveLoaders.size()-1; i >= 0; i--) {
852 mInactiveLoaders.valueAt(i).destroy();
853 }
854 mInactiveLoaders.clear();
Dianne Hackbornc8017682010-07-06 13:34:38 -0700855 }
Dianne Hackborn30d71892010-12-11 10:37:55 -0800856
857 @Override
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800858 public String toString() {
859 StringBuilder sb = new StringBuilder(128);
860 sb.append("LoaderManager{");
861 sb.append(Integer.toHexString(System.identityHashCode(this)));
862 sb.append(" in ");
Todd Kennedya5fc6f02015-04-14 18:22:54 -0700863 DebugUtils.buildShortClassTag(mHost, sb);
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800864 sb.append("}}");
865 return sb.toString();
866 }
867
868 @Override
Dianne Hackborn30d71892010-12-11 10:37:55 -0800869 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
870 if (mLoaders.size() > 0) {
871 writer.print(prefix); writer.println("Active Loaders:");
872 String innerPrefix = prefix + " ";
873 for (int i=0; i < mLoaders.size(); i++) {
874 LoaderInfo li = mLoaders.valueAt(i);
875 writer.print(prefix); writer.print(" #"); writer.print(mLoaders.keyAt(i));
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800876 writer.print(": "); writer.println(li.toString());
Dianne Hackborn30d71892010-12-11 10:37:55 -0800877 li.dump(innerPrefix, fd, writer, args);
878 }
879 }
880 if (mInactiveLoaders.size() > 0) {
881 writer.print(prefix); writer.println("Inactive Loaders:");
882 String innerPrefix = prefix + " ";
883 for (int i=0; i < mInactiveLoaders.size(); i++) {
884 LoaderInfo li = mInactiveLoaders.valueAt(i);
885 writer.print(prefix); writer.print(" #"); writer.print(mInactiveLoaders.keyAt(i));
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800886 writer.print(": "); writer.println(li.toString());
Dianne Hackborn30d71892010-12-11 10:37:55 -0800887 li.dump(innerPrefix, fd, writer, args);
888 }
889 }
890 }
Adam Powell635c60a2011-10-26 10:22:16 -0700891
892 public boolean hasRunningLoaders() {
893 boolean loadersRunning = false;
894 final int count = mLoaders.size();
895 for (int i = 0; i < count; i++) {
896 final LoaderInfo li = mLoaders.valueAt(i);
897 loadersRunning |= li.mStarted && !li.mDeliveredData;
898 }
899 return loadersRunning;
900 }
Dianne Hackbornc8017682010-07-06 13:34:38 -0700901}