net.i2p.router.tunnel
public class FragmentedMessage extends Object
Constructor and Description |
---|
FragmentedMessage(I2PAppContext ctx) |
Modifier and Type | Method and Description |
---|---|
void |
failed() |
int |
getCompleteSize() |
(package private) SimpleTimer.TimedEvent |
getExpireEvent()
used in the fragment handler so we can cancel the expire event on success
|
int |
getFragmentCount() |
long |
getLifetime()
how long has this fragmented message been alive?
|
long |
getMessageId() |
boolean |
getReleased() |
long |
getReleasedAfter() |
Hash |
getTargetRouter() |
TunnelId |
getTargetTunnel() |
boolean |
isComplete()
have we received all of the fragments?
|
boolean |
receive(long messageId,
byte[] payload,
int offset,
int length,
boolean isLast,
Hash toRouter,
TunnelId toTunnel)
Receive the first fragment and related metadata.
|
boolean |
receive(long messageId,
int fragmentNum,
byte[] payload,
int offset,
int length,
boolean isLast)
Receive a followup fragment, though one of these may arrive at the endpoint
prior to the fragment # 0.
|
(package private) void |
setExpireEvent(SimpleTimer.TimedEvent evt) |
byte[] |
toByteArray() |
String |
toString()
public InputStream getInputStream() { return new FragmentInputStream(); }
private class FragmentInputStream extends InputStream {
private int _fragment;
private int _offset;
public FragmentInputStream() {
_fragment = 0;
_offset = 0;
}
public int read() throws IOException {
while (true) {
ByteArray ba = _fragments[_fragment];
if (ba == null) return -1;
if (_offset >= ba.getValid()) {
_fragment++;
_offset = 0;
} else {
byte rv = ba.getData()[ba.getOffset()+_offset];
_offset++;
return rv;
}
}
}
}
|
void |
writeComplete(byte[] target,
int offset) |
void |
writeComplete(OutputStream out) |
public FragmentedMessage(I2PAppContext ctx)
public boolean receive(long messageId, int fragmentNum, byte[] payload, int offset, int length, boolean isLast)
messageId
- what messageId is this fragment a part offragmentNum
- sequence number within the message (must be greater than 1)payload
- data for the fragmentoffset
- index into the payload where the fragment data starts (past headers/etc)length
- how much past the offset should we snag?isLast
- is this the last fragment in the message?public boolean receive(long messageId, byte[] payload, int offset, int length, boolean isLast, Hash toRouter, TunnelId toTunnel)
messageId
- what messageId is this fragment a part ofpayload
- data for the fragmentoffset
- index into the payload where the fragment data starts (past headers/etc)length
- how much past the offset should we snag?isLast
- is this the last fragment in the message?toRouter
- what router is this destined for (may be null)toTunnel
- what tunnel is this destined for (may be null)public long getMessageId()
public Hash getTargetRouter()
public TunnelId getTargetTunnel()
public int getFragmentCount()
SimpleTimer.TimedEvent getExpireEvent()
void setExpireEvent(SimpleTimer.TimedEvent evt)
public boolean isComplete()
public int getCompleteSize()
public long getLifetime()
public boolean getReleased()
public void writeComplete(OutputStream out) throws IOException
IOException
public void writeComplete(byte[] target, int offset)
public byte[] toByteArray()
public long getReleasedAfter()
public void failed()
public String toString()