Commit dbff731d by olly Committed by Oliver Woodman

Move default CacheKeyFactory to CacheKeyFactory.DEFAULT

PiperOrigin-RevId: 310940572
parent 8ae8bf7b
...@@ -64,7 +64,7 @@ public final class CacheDataSource implements DataSource { ...@@ -64,7 +64,7 @@ public final class CacheDataSource implements DataSource {
public Factory() { public Factory() {
cacheReadDataSourceFactory = new FileDataSource.Factory(); cacheReadDataSourceFactory = new FileDataSource.Factory();
cacheKeyFactory = CacheUtil.DEFAULT_CACHE_KEY_FACTORY; cacheKeyFactory = CacheKeyFactory.DEFAULT;
} }
/** /**
...@@ -123,7 +123,7 @@ public final class CacheDataSource implements DataSource { ...@@ -123,7 +123,7 @@ public final class CacheDataSource implements DataSource {
/** /**
* Sets the {@link CacheKeyFactory}. * Sets the {@link CacheKeyFactory}.
* *
* <p>The default is {@link CacheUtil#DEFAULT_CACHE_KEY_FACTORY}. * <p>The default is {@link CacheKeyFactory#DEFAULT}.
* *
* @param cacheKeyFactory The {@link CacheKeyFactory}. * @param cacheKeyFactory The {@link CacheKeyFactory}.
* @return This factory. * @return This factory.
...@@ -508,8 +508,7 @@ public final class CacheDataSource implements DataSource { ...@@ -508,8 +508,7 @@ public final class CacheDataSource implements DataSource {
@Nullable EventListener eventListener) { @Nullable EventListener eventListener) {
this.cache = cache; this.cache = cache;
this.cacheReadDataSource = cacheReadDataSource; this.cacheReadDataSource = cacheReadDataSource;
this.cacheKeyFactory = this.cacheKeyFactory = cacheKeyFactory != null ? cacheKeyFactory : CacheKeyFactory.DEFAULT;
cacheKeyFactory != null ? cacheKeyFactory : CacheUtil.DEFAULT_CACHE_KEY_FACTORY;
this.blockOnCache = (flags & FLAG_BLOCK_ON_CACHE) != 0; this.blockOnCache = (flags & FLAG_BLOCK_ON_CACHE) != 0;
this.ignoreCacheOnError = (flags & FLAG_IGNORE_CACHE_ON_ERROR) != 0; this.ignoreCacheOnError = (flags & FLAG_IGNORE_CACHE_ON_ERROR) != 0;
this.ignoreCacheForUnsetLengthRequests = this.ignoreCacheForUnsetLengthRequests =
......
...@@ -20,6 +20,10 @@ import com.google.android.exoplayer2.upstream.DataSpec; ...@@ -20,6 +20,10 @@ import com.google.android.exoplayer2.upstream.DataSpec;
/** Factory for cache keys. */ /** Factory for cache keys. */
public interface CacheKeyFactory { public interface CacheKeyFactory {
/** Default {@link CacheKeyFactory}. */
CacheKeyFactory DEFAULT =
(dataSpec) -> dataSpec.key != null ? dataSpec.key : dataSpec.uri.toString();
/** /**
* Returns a cache key for the given {@link DataSpec}. * Returns a cache key for the given {@link DataSpec}.
* *
......
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
*/ */
package com.google.android.exoplayer2.upstream.cache; package com.google.android.exoplayer2.upstream.cache;
import android.net.Uri;
import android.util.Pair; import android.util.Pair;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import androidx.annotation.WorkerThread; import androidx.annotation.WorkerThread;
...@@ -55,18 +54,9 @@ public final class CacheUtil { ...@@ -55,18 +54,9 @@ public final class CacheUtil {
/** Default buffer size to be used while caching. */ /** Default buffer size to be used while caching. */
public static final int DEFAULT_BUFFER_SIZE_BYTES = 128 * 1024; public static final int DEFAULT_BUFFER_SIZE_BYTES = 128 * 1024;
/** Default {@link CacheKeyFactory}. */ /** @deprecated Use {@link CacheKeyFactory#DEFAULT}. */
public static final CacheKeyFactory DEFAULT_CACHE_KEY_FACTORY = @Deprecated
(dataSpec) -> dataSpec.key != null ? dataSpec.key : generateKey(dataSpec.uri); public static final CacheKeyFactory DEFAULT_CACHE_KEY_FACTORY = CacheKeyFactory.DEFAULT;
/**
* Generates a cache key out of the given {@link Uri}.
*
* @param uri Uri of a content which the requested key is for.
*/
public static String generateKey(Uri uri) {
return uri.toString();
}
/** /**
* Queries the cache to obtain the request length and the number of bytes already cached for a * Queries the cache to obtain the request length and the number of bytes already cached for a
...@@ -375,7 +365,7 @@ public final class CacheUtil { ...@@ -375,7 +365,7 @@ public final class CacheUtil {
private static String buildCacheKey( private static String buildCacheKey(
DataSpec dataSpec, @Nullable CacheKeyFactory cacheKeyFactory) { DataSpec dataSpec, @Nullable CacheKeyFactory cacheKeyFactory) {
return (cacheKeyFactory != null ? cacheKeyFactory : DEFAULT_CACHE_KEY_FACTORY) return (cacheKeyFactory != null ? cacheKeyFactory : CacheKeyFactory.DEFAULT)
.buildCacheKey(dataSpec); .buildCacheKey(dataSpec);
} }
......
...@@ -75,7 +75,7 @@ public final class CacheDataSourceTest { ...@@ -75,7 +75,7 @@ public final class CacheDataSourceTest {
boundedDataSpec = buildDataSpec(/* unbounded= */ false, /* key= */ null); boundedDataSpec = buildDataSpec(/* unbounded= */ false, /* key= */ null);
unboundedDataSpecWithKey = buildDataSpec(/* unbounded= */ true, DATASPEC_KEY); unboundedDataSpecWithKey = buildDataSpec(/* unbounded= */ true, DATASPEC_KEY);
boundedDataSpecWithKey = buildDataSpec(/* unbounded= */ false, DATASPEC_KEY); boundedDataSpecWithKey = buildDataSpec(/* unbounded= */ false, DATASPEC_KEY);
defaultCacheKey = CacheUtil.DEFAULT_CACHE_KEY_FACTORY.buildCacheKey(unboundedDataSpec); defaultCacheKey = CacheKeyFactory.DEFAULT.buildCacheKey(unboundedDataSpec);
customCacheKey = "customKey." + defaultCacheKey; customCacheKey = "customKey." + defaultCacheKey;
cacheKeyFactory = dataSpec -> customCacheKey; cacheKeyFactory = dataSpec -> customCacheKey;
......
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.exoplayer2.upstream.cache;
import static com.google.android.exoplayer2.upstream.cache.CacheKeyFactory.DEFAULT;
import static com.google.common.truth.Truth.assertThat;
import android.net.Uri;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import com.google.android.exoplayer2.upstream.DataSpec;
import org.junit.Test;
import org.junit.runner.RunWith;
/** Tests {@link CacheKeyFactoryTest}. */
@RunWith(AndroidJUnit4.class)
public class CacheKeyFactoryTest {
@Test
public void default_dataSpecWithKey_returnsKey() {
Uri testUri = Uri.parse("test");
String key = "key";
DataSpec dataSpec = new DataSpec.Builder().setUri(testUri).setKey(key).build();
assertThat(DEFAULT.buildCacheKey(dataSpec)).isEqualTo(key);
}
@Test
public void default_dataSpecWithoutKey_returnsUri() {
Uri testUri = Uri.parse("test");
DataSpec dataSpec = new DataSpec.Builder().setUri(testUri).build();
assertThat(DEFAULT.buildCacheKey(dataSpec)).isEqualTo(testUri.toString());
}
}
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
*/ */
package com.google.android.exoplayer2.upstream.cache; package com.google.android.exoplayer2.upstream.cache;
import static com.google.android.exoplayer2.C.LENGTH_UNSET;
import static com.google.android.exoplayer2.testutil.CacheAsserts.assertCacheEmpty; import static com.google.android.exoplayer2.testutil.CacheAsserts.assertCacheEmpty;
import static com.google.android.exoplayer2.testutil.CacheAsserts.assertCachedData; import static com.google.android.exoplayer2.testutil.CacheAsserts.assertCachedData;
import static com.google.common.truth.Truth.assertThat; import static com.google.common.truth.Truth.assertThat;
...@@ -105,37 +104,6 @@ public final class CacheUtilTest { ...@@ -105,37 +104,6 @@ public final class CacheUtilTest {
} }
@Test @Test
public void generateKey() {
assertThat(CacheUtil.generateKey(Uri.EMPTY)).isNotNull();
Uri testUri = Uri.parse("test");
String key = CacheUtil.generateKey(testUri);
assertThat(key).isNotNull();
// Should generate the same key for the same input.
assertThat(CacheUtil.generateKey(testUri)).isEqualTo(key);
// Should generate different key for different input.
assertThat(key.equals(CacheUtil.generateKey(Uri.parse("test2")))).isFalse();
}
@Test
public void defaultCacheKeyFactory_buildCacheKey() {
Uri testUri = Uri.parse("test");
String key = "key";
// If DataSpec.key is present, returns it.
assertThat(
CacheUtil.DEFAULT_CACHE_KEY_FACTORY.buildCacheKey(
new DataSpec.Builder().setUri(testUri).setKey(key).build()))
.isEqualTo(key);
// If not generates a new one using DataSpec.uri.
assertThat(
CacheUtil.DEFAULT_CACHE_KEY_FACTORY.buildCacheKey(
new DataSpec(testUri, /* position= */ 0, /* length= */ LENGTH_UNSET)))
.isEqualTo(testUri.toString());
}
@Test
public void getCachedNoData() { public void getCachedNoData() {
Pair<Long, Long> contentLengthAndBytesCached = Pair<Long, Long> contentLengthAndBytesCached =
CacheUtil.getCached( CacheUtil.getCached(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment