ucar.nc2.dataset.spi.NetcdfFileProvider Maven / Gradle / Ivy
The newest version!
package ucar.nc2.dataset.spi;
import java.io.IOException;
import ucar.nc2.NetcdfFile;
import ucar.nc2.dataset.DatasetUrl;
/**
* A Service Provider of NetcdfFile. Typically used by remote protocols (dods, cdmremote)
* or anything not reading from a RandomAccessFile.
*/
public interface NetcdfFileProvider {
/** The leading protocol string (without a trailing ":"). */
String getProtocol();
/** Determine if this Provider owns this DatasetUrl. */
boolean isOwnerOf(DatasetUrl durl);
/** Determine if this Provider owns this location. */
default boolean isOwnerOf(String location) {
return location.startsWith(getProtocol() + ":");
}
/** Open a location that this Provider is the owner of. */
NetcdfFile open(String location, ucar.nc2.util.CancelTask cancelTask) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy