Ice 3.6 Slice API Reference
|
The interface that provides access to files. More...
Defined in <IcePatch2/FileServer.ice>
interface FileServer { ... }
Operations | |
idempotent Ice::ByteSeq | getChecksum () |
Return the master checksum for all partitions. More... | |
idempotent ByteSeqSeq | getChecksumSeq () |
Return the checksums for all partitions. More... | |
idempotent Ice::ByteSeq | getFileCompressed (string path, int pos, int num) throws FileAccessException, FileSizeRangeException |
Read the specified file. More... | |
idempotent FileInfoSeq | getFileInfoSeq (int partition) throws PartitionOutOfRangeException, FileSizeRangeException |
Return file information for the specified partition. More... | |
idempotent Ice::ByteSeq | getLargeFileCompressed (string path, long pos, int num) throws FileAccessException |
Read the specified file. More... | |
idempotent LargeFileInfoSeq | getLargeFileInfoSeq (int partition) throws PartitionOutOfRangeException |
Returns file information for the specified partition. More... | |
The interface that provides access to files.
idempotent Ice::ByteSeq getChecksum | ( | ) |
Return the master checksum for all partitions.
If this checksum is the same as for a previous run, the entire file set is up-to-date.
idempotent ByteSeqSeq getChecksumSeq | ( | ) |
Return the checksums for all partitions.
idempotent Ice::ByteSeq getFileCompressed | ( | string | path, |
int | pos, | ||
int | num | ||
) | throws FileAccessException, FileSizeRangeException |
Read the specified file.
This operation may only return fewer bytes than requested in case there was an end-of-file condition.
This operation is deprecated and only present for compatibility with old Ice clients (older than version 3.6).
path | The pathname (relative to the data directory) for the file to be read. |
pos | The file offset at which to begin reading. |
num | The number of bytes to be read. |
FileAccessException | If an error occurred while trying to read the file. |
FileSizeRangeException | If a file is larger than 2.1GB. |
idempotent FileInfoSeq getFileInfoSeq | ( | int | partition | ) | throws PartitionOutOfRangeException, FileSizeRangeException |
Return file information for the specified partition.
This operation is deprecated and only present for compatibility with old Ice clients (older than version 3.6).
partition | The partition number in the range 0-255. |
PartitionOutOfRangeException | If the partition number is out of range. |
FileSizeRangeException | If a file is larger than 2.1GB. |
idempotent Ice::ByteSeq getLargeFileCompressed | ( | string | path, |
long | pos, | ||
int | num | ||
) | throws FileAccessException |
Read the specified file.
This operation may only return fewer bytes than requested in case there was an end-of-file condition.
path | The pathname (relative to the data directory) for the file to be read. |
pos | The file offset at which to begin reading. |
num | The number of bytes to be read. |
FileAccessException | If an error occurred while trying to read the file. |
idempotent LargeFileInfoSeq getLargeFileInfoSeq | ( | int | partition | ) | throws PartitionOutOfRangeException |
Returns file information for the specified partition.
partition | The partition number in the range 0-255. |
PartitionOutOfRangeException | If the partition number is out of range. |