blob: 80f9a14c6e18d5650ea972fca1e471855dae4b22 [file] [log] [blame]
Jeff Hamilton9911b7f2010-05-15 02:20:31 -05001/*
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.content;
18
19import android.database.ContentObserver;
20import android.os.Handler;
Dianne Hackborna2ea7472010-12-20 12:10:01 -080021import android.util.DebugUtils;
22
23import java.io.FileDescriptor;
24import java.io.PrintWriter;
Jeff Hamilton9911b7f2010-05-15 02:20:31 -050025
26/**
Mark Doliner9525f2a2014-01-02 11:17:47 -080027 * A class that performs asynchronous loading of data. While Loaders are active
Jeff Hamilton9911b7f2010-05-15 02:20:31 -050028 * they should monitor the source of their data and deliver new results when the contents
Dianne Hackborn9567a662011-04-19 18:44:03 -070029 * change. See {@link android.app.LoaderManager} for more detail.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -050030 *
Dianne Hackborn247fe742011-01-08 17:25:57 -080031 * <p><b>Note on threading:</b> Clients of loaders should as a rule perform
32 * any calls on to a Loader from the main thread of their process (that is,
33 * the thread the Activity callbacks and other things occur on). Subclasses
34 * of Loader (such as {@link AsyncTaskLoader}) will often perform their work
35 * in a separate thread, but when delivering their results this too should
36 * be done on the main thread.</p>
37 *
Dianne Hackborna2ea7472010-12-20 12:10:01 -080038 * <p>Subclasses generally must implement at least {@link #onStartLoading()},
Dianne Hackborn9567a662011-04-19 18:44:03 -070039 * {@link #onStopLoading()}, {@link #onForceLoad()}, and {@link #onReset()}.</p>
40 *
41 * <p>Most implementations should not derive directly from this class, but
42 * instead inherit from {@link AsyncTaskLoader}.</p>
Joe Fernandezb54e7a32011-10-03 15:09:50 -070043 *
44 * <div class="special reference">
45 * <h3>Developer Guides</h3>
46 * <p>For more information about using loaders, read the
Mark Lu9f52b7a2016-08-12 15:48:05 -070047 * <a href="{@docRoot}guide/components/loaders.html">Loaders</a> developer guide.</p>
Joe Fernandezb54e7a32011-10-03 15:09:50 -070048 * </div>
Dianne Hackborna2ea7472010-12-20 12:10:01 -080049 *
Jeff Hamilton9911b7f2010-05-15 02:20:31 -050050 * @param <D> The result returned when the load is complete
Ian Lake0a1feb82017-11-13 10:26:46 -080051 *
52 * @deprecated Use {@link android.support.v4.content.Loader}
Jeff Hamilton9911b7f2010-05-15 02:20:31 -050053 */
Ian Lake0a1feb82017-11-13 10:26:46 -080054@Deprecated
Dianne Hackborna2ea7472010-12-20 12:10:01 -080055public class Loader<D> {
Jeff Hamilton9911b7f2010-05-15 02:20:31 -050056 int mId;
57 OnLoadCompleteListener<D> mListener;
Jeff Brownb19a71a2012-01-31 11:48:39 -080058 OnLoadCanceledListener<D> mOnLoadCanceledListener;
Jeff Hamilton9911b7f2010-05-15 02:20:31 -050059 Context mContext;
Dianne Hackborna2ea7472010-12-20 12:10:01 -080060 boolean mStarted = false;
Dianne Hackborn260c3c72011-01-30 16:55:55 -080061 boolean mAbandoned = false;
Dianne Hackborna2ea7472010-12-20 12:10:01 -080062 boolean mReset = true;
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -080063 boolean mContentChanged = false;
Dianne Hackbornca614f72013-03-14 19:10:04 -070064 boolean mProcessingChange = false;
Jeff Hamilton9911b7f2010-05-15 02:20:31 -050065
Dianne Hackborn7871bad2011-12-12 15:19:26 -080066 /**
67 * An implementation of a ContentObserver that takes care of connecting
68 * it to the Loader to have the loader re-load its data when the observer
69 * is told it has changed. You do not normally need to use this yourself;
70 * it is used for you by {@link CursorLoader} to take care of executing
71 * an update when the cursor's backing data changes.
Ian Lake0a1feb82017-11-13 10:26:46 -080072 *
73 * @deprecated Use {@link android.support.v4.content.Loader.ForceLoadContentObserver}
Dianne Hackborn7871bad2011-12-12 15:19:26 -080074 */
Ian Lake0a1feb82017-11-13 10:26:46 -080075 @Deprecated
Jeff Hamilton9911b7f2010-05-15 02:20:31 -050076 public final class ForceLoadContentObserver extends ContentObserver {
77 public ForceLoadContentObserver() {
78 super(new Handler());
79 }
80
81 @Override
82 public boolean deliverSelfNotifications() {
83 return true;
84 }
85
86 @Override
87 public void onChange(boolean selfChange) {
Makoto Onukiec37c882010-08-02 16:57:01 -070088 onContentChanged();
Jeff Hamilton9911b7f2010-05-15 02:20:31 -050089 }
90 }
91
Dianne Hackborn7871bad2011-12-12 15:19:26 -080092 /**
93 * Interface that is implemented to discover when a Loader has finished
94 * loading its data. You do not normally need to implement this yourself;
95 * it is used in the implementation of {@link android.app.LoaderManager}
96 * to find out when a Loader it is managing has completed so that this can
97 * be reported to its client. This interface should only be used if a
98 * Loader is not being used in conjunction with LoaderManager.
Ian Lake0a1feb82017-11-13 10:26:46 -080099 *
100 * @deprecated Use {@link android.support.v4.content.Loader.OnLoadCompleteListener}
Dianne Hackborn7871bad2011-12-12 15:19:26 -0800101 */
Ian Lake0a1feb82017-11-13 10:26:46 -0800102 @Deprecated
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500103 public interface OnLoadCompleteListener<D> {
104 /**
105 * Called on the thread that created the Loader when the load is complete.
106 *
107 * @param loader the loader that completed the load
108 * @param data the result of the load
109 */
110 public void onLoadComplete(Loader<D> loader, D data);
111 }
112
113 /**
Jeff Brownb19a71a2012-01-31 11:48:39 -0800114 * Interface that is implemented to discover when a Loader has been canceled
115 * before it finished loading its data. You do not normally need to implement
116 * this yourself; it is used in the implementation of {@link android.app.LoaderManager}
117 * to find out when a Loader it is managing has been canceled so that it
118 * can schedule the next Loader. This interface should only be used if a
119 * Loader is not being used in conjunction with LoaderManager.
Ian Lake0a1feb82017-11-13 10:26:46 -0800120 *
121 * @deprecated Use {@link android.support.v4.content.Loader.OnLoadCanceledListener}
Jeff Brownb19a71a2012-01-31 11:48:39 -0800122 */
Ian Lake0a1feb82017-11-13 10:26:46 -0800123 @Deprecated
Jeff Brownb19a71a2012-01-31 11:48:39 -0800124 public interface OnLoadCanceledListener<D> {
125 /**
126 * Called on the thread that created the Loader when the load is canceled.
127 *
128 * @param loader the loader that canceled the load
129 */
130 public void onLoadCanceled(Loader<D> loader);
131 }
132
133 /**
Dianne Hackborn9567a662011-04-19 18:44:03 -0700134 * Stores away the application context associated with context.
135 * Since Loaders can be used across multiple activities it's dangerous to
136 * store the context directly; always use {@link #getContext()} to retrieve
137 * the Loader's Context, don't use the constructor argument directly.
138 * The Context returned by {@link #getContext} is safe to use across
139 * Activity instances.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500140 *
141 * @param context used to retrieve the application context.
142 */
143 public Loader(Context context) {
144 mContext = context.getApplicationContext();
145 }
146
147 /**
148 * Sends the result of the load to the registered listener. Should only be called by subclasses.
149 *
Dianne Hackborn247fe742011-01-08 17:25:57 -0800150 * Must be called from the process's main thread.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500151 *
152 * @param data the result of the load
153 */
154 public void deliverResult(D data) {
155 if (mListener != null) {
156 mListener.onLoadComplete(this, data);
157 }
158 }
159
160 /**
Jeff Brownb19a71a2012-01-31 11:48:39 -0800161 * Informs the registered {@link OnLoadCanceledListener} that the load has been canceled.
162 * Should only be called by subclasses.
163 *
164 * Must be called from the process's main thread.
165 */
166 public void deliverCancellation() {
167 if (mOnLoadCanceledListener != null) {
168 mOnLoadCanceledListener.onLoadCanceled(this);
169 }
170 }
171
172 /**
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500173 * @return an application context retrieved from the Context passed to the constructor.
174 */
175 public Context getContext() {
176 return mContext;
177 }
178
179 /**
180 * @return the ID of this loader
181 */
182 public int getId() {
183 return mId;
184 }
185
186 /**
Dianne Hackborn247fe742011-01-08 17:25:57 -0800187 * Registers a class that will receive callbacks when a load is complete.
188 * The callback will be called on the process's main thread so it's safe to
189 * pass the results to widgets.
Makoto Onukiec37c882010-08-02 16:57:01 -0700190 *
Dianne Hackborn247fe742011-01-08 17:25:57 -0800191 * <p>Must be called from the process's main thread.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500192 */
193 public void registerListener(int id, OnLoadCompleteListener<D> listener) {
194 if (mListener != null) {
195 throw new IllegalStateException("There is already a listener registered");
196 }
197 mListener = listener;
198 mId = id;
199 }
200
201 /**
Dianne Hackborn247fe742011-01-08 17:25:57 -0800202 * Remove a listener that was previously added with {@link #registerListener}.
203 *
204 * Must be called from the process's main thread.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500205 */
206 public void unregisterListener(OnLoadCompleteListener<D> listener) {
207 if (mListener == null) {
208 throw new IllegalStateException("No listener register");
209 }
210 if (mListener != listener) {
211 throw new IllegalArgumentException("Attempting to unregister the wrong listener");
212 }
213 mListener = null;
214 }
215
216 /**
Jeff Brownb19a71a2012-01-31 11:48:39 -0800217 * Registers a listener that will receive callbacks when a load is canceled.
218 * The callback will be called on the process's main thread so it's safe to
219 * pass the results to widgets.
220 *
221 * Must be called from the process's main thread.
222 *
223 * @param listener The listener to register.
224 */
225 public void registerOnLoadCanceledListener(OnLoadCanceledListener<D> listener) {
226 if (mOnLoadCanceledListener != null) {
227 throw new IllegalStateException("There is already a listener registered");
228 }
229 mOnLoadCanceledListener = listener;
230 }
231
232 /**
233 * Unregisters a listener that was previously added with
234 * {@link #registerOnLoadCanceledListener}.
235 *
236 * Must be called from the process's main thread.
237 *
238 * @param listener The listener to unregister.
239 */
240 public void unregisterOnLoadCanceledListener(OnLoadCanceledListener<D> listener) {
241 if (mOnLoadCanceledListener == null) {
242 throw new IllegalStateException("No listener register");
243 }
244 if (mOnLoadCanceledListener != listener) {
245 throw new IllegalArgumentException("Attempting to unregister the wrong listener");
246 }
247 mOnLoadCanceledListener = null;
248 }
249
250 /**
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800251 * Return whether this load has been started. That is, its {@link #startLoading()}
252 * has been called and no calls to {@link #stopLoading()} or
253 * {@link #reset()} have yet been made.
254 */
255 public boolean isStarted() {
256 return mStarted;
257 }
258
259 /**
Dianne Hackborn260c3c72011-01-30 16:55:55 -0800260 * Return whether this loader has been abandoned. In this state, the
261 * loader <em>must not</em> report any new data, and <em>must</em> keep
262 * its last reported data valid until it is finally reset.
263 */
264 public boolean isAbandoned() {
265 return mAbandoned;
266 }
267
268 /**
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800269 * Return whether this load has been reset. That is, either the loader
270 * has not yet been started for the first time, or its {@link #reset()}
271 * has been called.
272 */
273 public boolean isReset() {
274 return mReset;
275 }
276
277 /**
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700278 * This function will normally be called for you automatically by
279 * {@link android.app.LoaderManager} when the associated fragment/activity
280 * is being started. When using a Loader with {@link android.app.LoaderManager},
281 * you <em>must not</em> call this method yourself, or you will conflict
282 * with its management of the Loader.
283 *
Dianne Hackborn247fe742011-01-08 17:25:57 -0800284 * Starts an asynchronous load of the Loader's data. When the result
285 * is ready the callbacks will be called on the process's main thread.
286 * If a previous load has been completed and is still valid
287 * the result may be passed to the callbacks immediately.
288 * The loader will monitor the source of
289 * the data set and may deliver future callbacks if the source changes.
290 * Calling {@link #stopLoading} will stop the delivery of callbacks.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500291 *
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800292 * <p>This updates the Loader's internal state so that
293 * {@link #isStarted()} and {@link #isReset()} will return the correct
294 * values, and then calls the implementation's {@link #onStartLoading()}.
295 *
Dianne Hackborn247fe742011-01-08 17:25:57 -0800296 * <p>Must be called from the process's main thread.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500297 */
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800298 public final void startLoading() {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800299 mStarted = true;
300 mReset = false;
Dianne Hackborn260c3c72011-01-30 16:55:55 -0800301 mAbandoned = false;
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800302 onStartLoading();
303 }
304
305 /**
306 * Subclasses must implement this to take care of loading their data,
307 * as per {@link #startLoading()}. This is not called by clients directly,
308 * but as a result of a call to {@link #startLoading()}.
309 */
310 protected void onStartLoading() {
311 }
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500312
313 /**
Jeff Brownb19a71a2012-01-31 11:48:39 -0800314 * Attempt to cancel the current load task.
315 * Must be called on the main thread of the process.
316 *
317 * <p>Cancellation is not an immediate operation, since the load is performed
318 * in a background thread. If there is currently a load in progress, this
319 * method requests that the load be canceled, and notes this is the case;
320 * once the background thread has completed its work its remaining state
321 * will be cleared. If another load request comes in during this time,
322 * it will be held until the canceled load is complete.
323 *
324 * @return Returns <tt>false</tt> if the task could not be canceled,
325 * typically because it has already completed normally, or
326 * because {@link #startLoading()} hasn't been called; returns
327 * <tt>true</tt> otherwise. When <tt>true</tt> is returned, the task
328 * is still running and the {@link OnLoadCanceledListener} will be called
329 * when the task completes.
330 */
331 public boolean cancelLoad() {
332 return onCancelLoad();
333 }
334
335 /**
336 * Subclasses must implement this to take care of requests to {@link #cancelLoad()}.
337 * This will always be called from the process's main thread.
338 *
339 * @return Returns <tt>false</tt> if the task could not be canceled,
340 * typically because it has already completed normally, or
341 * because {@link #startLoading()} hasn't been called; returns
342 * <tt>true</tt> otherwise. When <tt>true</tt> is returned, the task
343 * is still running and the {@link OnLoadCanceledListener} will be called
344 * when the task completes.
345 */
346 protected boolean onCancelLoad() {
347 return false;
348 }
349
350 /**
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500351 * Force an asynchronous load. Unlike {@link #startLoading()} this will ignore a previously
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800352 * loaded data set and load a new one. This simply calls through to the
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800353 * implementation's {@link #onForceLoad()}. You generally should only call this
354 * when the loader is started -- that is, {@link #isStarted()} returns true.
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800355 *
Dianne Hackborn247fe742011-01-08 17:25:57 -0800356 * <p>Must be called from the process's main thread.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500357 */
Dianne Hackborn247fe742011-01-08 17:25:57 -0800358 public void forceLoad() {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800359 onForceLoad();
360 }
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500361
362 /**
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800363 * Subclasses must implement this to take care of requests to {@link #forceLoad()}.
Dianne Hackborn247fe742011-01-08 17:25:57 -0800364 * This will always be called from the process's main thread.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500365 */
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800366 protected void onForceLoad() {
367 }
368
369 /**
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700370 * This function will normally be called for you automatically by
371 * {@link android.app.LoaderManager} when the associated fragment/activity
372 * is being stopped. When using a Loader with {@link android.app.LoaderManager},
373 * you <em>must not</em> call this method yourself, or you will conflict
374 * with its management of the Loader.
375 *
376 * <p>Stops delivery of updates until the next time {@link #startLoading()} is called.
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800377 * Implementations should <em>not</em> invalidate their data at this point --
378 * clients are still free to use the last data the loader reported. They will,
379 * however, typically stop reporting new data if the data changes; they can
380 * still monitor for changes, but must not report them to the client until and
381 * if {@link #startLoading()} is later called.
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800382 *
383 * <p>This updates the Loader's internal state so that
384 * {@link #isStarted()} will return the correct
385 * value, and then calls the implementation's {@link #onStopLoading()}.
386 *
Dianne Hackborn247fe742011-01-08 17:25:57 -0800387 * <p>Must be called from the process's main thread.
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800388 */
Dianne Hackborn247fe742011-01-08 17:25:57 -0800389 public void stopLoading() {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800390 mStarted = false;
391 onStopLoading();
392 }
393
394 /**
395 * Subclasses must implement this to take care of stopping their loader,
396 * as per {@link #stopLoading()}. This is not called by clients directly,
397 * but as a result of a call to {@link #stopLoading()}.
Dianne Hackborn247fe742011-01-08 17:25:57 -0800398 * This will always be called from the process's main thread.
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800399 */
400 protected void onStopLoading() {
401 }
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500402
403 /**
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700404 * This function will normally be called for you automatically by
405 * {@link android.app.LoaderManager} when restarting a Loader. When using
406 * a Loader with {@link android.app.LoaderManager},
407 * you <em>must not</em> call this method yourself, or you will conflict
408 * with its management of the Loader.
409 *
Dianne Hackborn260c3c72011-01-30 16:55:55 -0800410 * Tell the Loader that it is being abandoned. This is called prior
411 * to {@link #reset} to have it retain its current data but not report
412 * any new data.
413 */
414 public void abandon() {
415 mAbandoned = true;
416 onAbandon();
417 }
418
419 /**
420 * Subclasses implement this to take care of being abandoned. This is
421 * an optional intermediate state prior to {@link #onReset()} -- it means that
422 * the client is no longer interested in any new data from the loader,
423 * so the loader must not report any further updates. However, the
424 * loader <em>must</em> keep its last reported data valid until the final
425 * {@link #onReset()} happens. You can retrieve the current abandoned
426 * state with {@link #isAbandoned}.
427 */
Jeff Brownc64ff372013-10-09 18:50:56 -0700428 protected void onAbandon() {
Dianne Hackborn260c3c72011-01-30 16:55:55 -0800429 }
430
431 /**
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700432 * This function will normally be called for you automatically by
433 * {@link android.app.LoaderManager} when destroying a Loader. When using
434 * a Loader with {@link android.app.LoaderManager},
435 * you <em>must not</em> call this method yourself, or you will conflict
436 * with its management of the Loader.
437 *
Dianne Hackbornc9189352010-12-15 14:57:25 -0800438 * Resets the state of the Loader. The Loader should at this point free
439 * all of its resources, since it may never be called again; however, its
440 * {@link #startLoading()} may later be called at which point it must be
441 * able to start running again.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500442 *
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800443 * <p>This updates the Loader's internal state so that
444 * {@link #isStarted()} and {@link #isReset()} will return the correct
445 * values, and then calls the implementation's {@link #onReset()}.
446 *
Dianne Hackborn247fe742011-01-08 17:25:57 -0800447 * <p>Must be called from the process's main thread.
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500448 */
Dianne Hackborn247fe742011-01-08 17:25:57 -0800449 public void reset() {
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800450 onReset();
451 mReset = true;
452 mStarted = false;
Dianne Hackborn260c3c72011-01-30 16:55:55 -0800453 mAbandoned = false;
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800454 mContentChanged = false;
Dianne Hackbornca614f72013-03-14 19:10:04 -0700455 mProcessingChange = false;
Dianne Hackbornc9189352010-12-15 14:57:25 -0800456 }
457
458 /**
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800459 * Subclasses must implement this to take care of resetting their loader,
460 * as per {@link #reset()}. This is not called by clients directly,
461 * but as a result of a call to {@link #reset()}.
Dianne Hackborn247fe742011-01-08 17:25:57 -0800462 * This will always be called from the process's main thread.
Dianne Hackbornc9189352010-12-15 14:57:25 -0800463 */
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800464 protected void onReset() {
Dianne Hackbornc9189352010-12-15 14:57:25 -0800465 }
Makoto Onukiec37c882010-08-02 16:57:01 -0700466
467 /**
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800468 * Take the current flag indicating whether the loader's content had
469 * changed while it was stopped. If it had, true is returned and the
470 * flag is cleared.
471 */
472 public boolean takeContentChanged() {
473 boolean res = mContentChanged;
474 mContentChanged = false;
Dianne Hackbornca614f72013-03-14 19:10:04 -0700475 mProcessingChange |= res;
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800476 return res;
477 }
Dianne Hackbornca614f72013-03-14 19:10:04 -0700478
479 /**
480 * Commit that you have actually fully processed a content change that
481 * was returned by {@link #takeContentChanged}. This is for use with
482 * {@link #rollbackContentChanged()} to handle situations where a load
483 * is cancelled. Call this when you have completely processed a load
484 * without it being cancelled.
485 */
486 public void commitContentChanged() {
487 mProcessingChange = false;
488 }
489
490 /**
491 * Report that you have abandoned the processing of a content change that
492 * was returned by {@link #takeContentChanged()} and would like to rollback
493 * to the state where there is again a pending content change. This is
494 * to handle the case where a data load due to a content change has been
495 * canceled before its data was delivered back to the loader.
496 */
497 public void rollbackContentChanged() {
498 if (mProcessingChange) {
Adam Powell4be84bb2016-04-27 13:45:38 -0700499 onContentChanged();
Dianne Hackbornca614f72013-03-14 19:10:04 -0700500 }
501 }
502
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800503 /**
504 * Called when {@link ForceLoadContentObserver} detects a change. The
505 * default implementation checks to see if the loader is currently started;
506 * if so, it simply calls {@link #forceLoad()}; otherwise, it sets a flag
507 * so that {@link #takeContentChanged()} returns true.
Makoto Onukiec37c882010-08-02 16:57:01 -0700508 *
Dianne Hackborn247fe742011-01-08 17:25:57 -0800509 * <p>Must be called from the process's main thread.
Makoto Onukiec37c882010-08-02 16:57:01 -0700510 */
511 public void onContentChanged() {
Dianne Hackborn0e3b8f422010-12-20 23:22:11 -0800512 if (mStarted) {
513 forceLoad();
514 } else {
515 // This loader has been stopped, so we don't want to load
516 // new data right now... but keep track of it changing to
517 // refresh later if we start again.
518 mContentChanged = true;
519 }
Makoto Onukiec37c882010-08-02 16:57:01 -0700520 }
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800521
522 /**
523 * For debugging, converts an instance of the Loader's data class to
524 * a string that can be printed. Must handle a null data.
525 */
526 public String dataToString(D data) {
527 StringBuilder sb = new StringBuilder(64);
528 DebugUtils.buildShortClassTag(data, sb);
529 sb.append("}");
530 return sb.toString();
531 }
532
533 @Override
534 public String toString() {
535 StringBuilder sb = new StringBuilder(64);
536 DebugUtils.buildShortClassTag(this, sb);
537 sb.append(" id=");
538 sb.append(mId);
539 sb.append("}");
540 return sb.toString();
541 }
542
543 /**
544 * Print the Loader's state into the given stream.
545 *
546 * @param prefix Text to print at the front of each line.
547 * @param fd The raw file descriptor that the dump is being sent to.
548 * @param writer A PrintWriter to which the dump is to be set.
549 * @param args Additional arguments to the dump request.
550 */
551 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
552 writer.print(prefix); writer.print("mId="); writer.print(mId);
553 writer.print(" mListener="); writer.println(mListener);
Dianne Hackbornca614f72013-03-14 19:10:04 -0700554 if (mStarted || mContentChanged || mProcessingChange) {
555 writer.print(prefix); writer.print("mStarted="); writer.print(mStarted);
556 writer.print(" mContentChanged="); writer.print(mContentChanged);
557 writer.print(" mProcessingChange="); writer.println(mProcessingChange);
558 }
559 if (mAbandoned || mReset) {
560 writer.print(prefix); writer.print("mAbandoned="); writer.print(mAbandoned);
561 writer.print(" mReset="); writer.println(mReset);
562 }
Dianne Hackborna2ea7472010-12-20 12:10:01 -0800563 }
Jeff Hamilton9911b7f2010-05-15 02:20:31 -0500564}