Package io.deephaven.util.channel
Class LocalFSChannelProvider
java.lang.Object
io.deephaven.util.channel.LocalFSChannelProvider
- All Implemented Interfaces:
SeekableChannelsProvider,SafeCloseable,AutoCloseable
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()getInputStream(SeekableByteChannel channel) Creates anInputStreamfrom the current position ofchannel; closing the resulting input stream does not close thechannel.getReadChannel(@Nullable SeekableChannelContext channelContext, @NotNull URI uri) getWriteChannel(@NotNull Path filePath, boolean append) booleanisCompatibleWith(@Nullable SeekableChannelContext channelContext) Check if the given context is compatible with this provider.Returns a stream of URIs, the elements of which are the entries in the directory.Create a newSeekableChannelContextobject for creating read channels via this provider.Returns a stream of URIs, the elements of which are all the files in the file tree rooted at the given starting directory.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.deephaven.util.channel.SeekableChannelsProvider
getReadChannel, getWriteChannel, makeSingleUseContext
-
Constructor Details
-
LocalFSChannelProvider
public LocalFSChannelProvider()
-
-
Method Details
-
makeContext
Description copied from interface:SeekableChannelsProviderCreate a newSeekableChannelContextobject for creating read channels via this provider.- Specified by:
makeContextin interfaceSeekableChannelsProvider
-
isCompatibleWith
Description copied from interface:SeekableChannelsProviderCheck if the given context is compatible with this provider. Useful to test if we can use providedcontextobject for creating channels with this provider.- Specified by:
isCompatibleWithin interfaceSeekableChannelsProvider
-
getReadChannel
public SeekableByteChannel getReadChannel(@Nullable @Nullable SeekableChannelContext channelContext, @NotNull @NotNull URI uri) throws IOException - Specified by:
getReadChannelin interfaceSeekableChannelsProvider- Throws:
IOException
-
getInputStream
Description copied from interface:SeekableChannelsProviderCreates anInputStreamfrom the current position ofchannel; closing the resulting input stream does not close thechannel. TheInputStreamwill be buffered; either explicitly in the case where the implementation uses an unbufferedSeekableChannelsProvider.getReadChannel(SeekableChannelContext, URI), or implicitly when the implementation uses a bufferedSeekableChannelsProvider.getReadChannel(SeekableChannelContext, URI).channelmust have been created bythisprovider. The caller can't assume the position ofchannelafter consuming theInputStream. For use-cases that require the channel's position to be incremented the exact amount theInputStreamhas been consumed, useSeekableChannelsProvider.channelPositionInputStream(SeekableChannelsProvider, SeekableByteChannel).- Specified by:
getInputStreamin interfaceSeekableChannelsProvider- Parameters:
channel- the channel- Returns:
- the input stream
-
getWriteChannel
public SeekableByteChannel getWriteChannel(@NotNull @NotNull Path filePath, boolean append) throws IOException - Specified by:
getWriteChannelin interfaceSeekableChannelsProvider- Throws:
IOException
-
list
Description copied from interface:SeekableChannelsProviderReturns a stream of URIs, the elements of which are the entries in the directory. The listing is non-recursive. The URIs supplied by the stream will not have any unnecessary slashes or path separators. Also, the URIs will be file URIs (not ending with "/") irrespective of whether the URI corresponds to a file or a directory. The caller should manage file vs. directory handling in the processor. The caller is also responsible for closing the stream, preferably using a try-with-resources block.- Specified by:
listin interfaceSeekableChannelsProvider- Parameters:
directory- the URI of the directory to list- Returns:
- The
StreamofURIs - Throws:
IOException
-
walk
Description copied from interface:SeekableChannelsProviderReturns a stream of URIs, the elements of which are all the files in the file tree rooted at the given starting directory. The URIs supplied by the stream will not have any unnecessary slashes or path separators. Also, the URIs will be file URIs (not ending with "/") irrespective of whether the URI corresponds to a file or a directory. The caller should manage file vs. directory handling in the processor. The caller is also responsible for closing the stream, preferably using a try-with-resources block.- Specified by:
walkin interfaceSeekableChannelsProvider- Parameters:
directory- the URI of the directory to walk- Returns:
- The
StreamofURIs - Throws:
IOException
-
close
public void close()- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceSafeCloseable
-