Merge "Don't throw exception on moveToPosition in CachedCursor"

This commit is contained in:
Marc Blank 2010-12-01 09:09:03 -08:00 committed by Android (Google) Code Review
commit 1832ea8c58
2 changed files with 7 additions and 18 deletions

View File

@ -262,7 +262,9 @@ public final class ContentCache extends LinkedHashMap<String, Cursor> {
/**
* The cached cursor is simply a CursorWrapper whose underlying cursor contains zero or one
* rows. We handle simple movement (moveToFirst(), moveToNext(), etc.), and override close()
* to keep the underlying cursor alive (unless it's no longer cached due to an invalidation)
* to keep the underlying cursor alive (unless it's no longer cached due to an invalidation).
* Multiple CachedCursor's can use the same underlying cursor, so we override the various
* moveX methods such that each CachedCursor can have its own position information
*/
public static final class CachedCursor extends CursorWrapper {
// The cursor we're wrapping
@ -310,14 +312,11 @@ public final class ContentCache extends LinkedHashMap<String, Cursor> {
}
/**
* We'll be happy to move to position 0 or -1; others are illegal
* We'll be happy to move to position 0 or -1
*/
@Override
public boolean moveToPosition(int pos) {
if (pos > 0) {
throw new IllegalArgumentException();
}
if (pos >= getCount()) {
if (pos >= getCount() || pos < -1) {
return false;
}
mPosition = pos;
@ -336,11 +335,7 @@ public final class ContentCache extends LinkedHashMap<String, Cursor> {
@Override
public boolean moveToPrevious() {
if (mPosition == 0) {
mPosition--;
return true;
}
return false;
return moveToPosition(mPosition - 1);
}
@Override

View File

@ -168,13 +168,7 @@ public class ContentCacheTests extends ProviderTestCase2<EmailProvider> {
assertEquals(0, cursor.getPosition());
cursor.moveToPosition(0);
assertEquals(0, cursor.getPosition());
// And something that should
try {
cursor.moveToPosition(1);
fail("Shouldn't be able to move to position > 0");
} catch (IllegalArgumentException e) {
// Correct
}
assertFalse(cursor.moveToPosition(1));
cursor.close();
// We've closed the cached cursor; make sure