
org.robolectric.shadows.util.DataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric.shadows.util;
import java.io.FileDescriptor;
import java.util.Map;
import android.content.Context;
import android.net.Uri;
/**
* Opaque class for uniquely identifying a media data source,
* as used by {@link org.robolectric.shadows.ShadowMediaPlayer}
* and {@link org.robolectric.shadows.ShadowMediaMetadataRetriever}.
*
* @author Fr Jeremy Krieg
*/
public class DataSource {
private String dataSource;
private DataSource(String dataSource) {
this.dataSource = dataSource;
}
public static DataSource toDataSource(String path) {
return new DataSource(path);
}
public static DataSource toDataSource(Context context, Uri uri) {
return toDataSource(uri.toString());
}
public static DataSource toDataSource(Context context, Uri uri, Map headers) {
return toDataSource(context, uri);
}
public static DataSource toDataSource(String uri, Map headers) {
return toDataSource(uri);
}
public static DataSource toDataSource(FileDescriptor fd) {
return toDataSource(fd, 0, 0);
}
public static DataSource toDataSource(FileDescriptor fd, long offset, long length) {
return toDataSource(fd.toString() + offset);
}
@Override
public int hashCode() {
return ((dataSource == null) ? 0 : dataSource.hashCode());
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || !(obj instanceof DataSource)) {
return false;
}
final DataSource other = (DataSource) obj;
if (dataSource == null) {
if (other.dataSource != null) {
return false;
}
} else if (!dataSource.equals(other.dataSource)) {
return false;
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy