bt.torrent.data.BlockRead Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bt-core Show documentation
Show all versions of bt-core Show documentation
BitTorrent Client Library (Core)
package bt.torrent.data;
import bt.net.Peer;
import java.util.Optional;
/**
* Read block command.
*
* If {@link #isRejected()} returns true,
* this means that the request was not accepted by the data worker.
* If {@link #getError()} is not empty,
* this means that an exception happened during the request processing.
* Subsequently, {@link #getBlock()} will return {@link Optional#empty()} in both cases.
*
* @since 1.0
*/
public class BlockRead {
/**
* @since 1.0
*/
static BlockRead complete(Peer peer, int pieceIndex, int offset, byte[] block) {
return new BlockRead(peer, null, false, pieceIndex, offset, block);
}
/**
* @since 1.0
*/
static BlockRead rejected(Peer peer, int pieceIndex, int offset) {
return new BlockRead(peer, null, true, pieceIndex, offset, null);
}
/**
* @since 1.0
*/
static BlockRead exceptional(Peer peer, Throwable error, int pieceIndex, int offset) {
return new BlockRead(peer, error, false, pieceIndex, offset, null);
}
private Peer peer;
private int pieceIndex;
private int offset;
private Optional block;
private boolean rejected;
private Optional error;
private BlockRead(Peer peer, Throwable error, boolean rejected, int pieceIndex, int offset, byte[] block) {
this.peer = peer;
this.error = Optional.ofNullable(error);
this.rejected = rejected;
this.pieceIndex = pieceIndex;
this.offset = offset;
this.block = Optional.ofNullable(block);
}
/**
* @return Requesting peer
* @since 1.0
*/
public Peer getPeer() {
return peer;
}
/**
* @return true if the request was not accepted by the data worker
* @since 1.0
*/
public boolean isRejected() {
return rejected;
}
/**
* @return Index of the piece being requested
* @since 1.0
*/
public int getPieceIndex() {
return pieceIndex;
}
/**
* @return Offset in a piece to read the block from
* @since 1.0
*/
public int getOffset() {
return offset;
}
/**
* @return Block of data or {@link Optional#empty()},
* if {@link #isRejected()} returns true or if {@link #getError()} is not empty
* @since 1.0
*/
public Optional getBlock() {
return block;
}
/**
* @return {@link Optional#empty()} if processing of the request completed normally,
* or exception otherwise.
* @since 1.0
*/
public Optional getError() {
return error;
}
}