Class UnarmedProtocolMessage
java.lang.Object
org.drasyl.handler.remote.protocol.UnarmedProtocolMessage
- All Implemented Interfaces:
io.netty.util.ReferenceCounted
,AutoCloseable
,PartialReadMessage
,RemoteMessage
@UnstableApi
public abstract class UnarmedProtocolMessage
extends Object
implements PartialReadMessage
Describes an unencrypted protocol message whose only public header has been read so far.
read()
can be used to read the message's remainder.
-
Field Summary
Fields inherited from interface org.drasyl.handler.remote.protocol.RemoteMessage
MAGIC_NUMBER, MAGIC_NUMBER_LEN
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionarm
(io.netty.buffer.ByteBufAllocator alloc, Crypto cryptoInstance, SessionPair sessionPair) Returns an armed version (ArmedProtocolMessage
) of this message.armAndRelease
(io.netty.buffer.ByteBufAllocator alloc, Crypto cryptoInstance, SessionPair sessionPair) Returns an armed version (ArmedProtocolMessage
) of this message and then releases this message.Returns a read-only version of this message.void
close()
CallsReferenceCounted.release()
.io.netty.buffer.ByteBuf
encodeMessage
(io.netty.buffer.ByteBufAllocator alloc) Writes this message to a buffer created byalloc
.int
abstract DrasylAddress
Returns a copy of this message with incrementedRemoteMessage.getHopCount()
.boolean
Returnstrue
if and only if this message is read-only.static UnarmedProtocolMessage
of
(HopCount hopCount, boolean isArmed, int networkId, Nonce nonce, DrasylAddress recipient, DrasylAddress sender, ProofOfWork proofOfWork, io.netty.buffer.ByteBuf bytes) Creates an unarmed message.read()
Read the remainder of this message and returns the resultedFullReadMessage
.int
refCnt()
boolean
release()
boolean
release
(int decrement) retain()
retain
(int increment) touch()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.drasyl.handler.remote.protocol.PartialReadMessage
getBytes
Methods inherited from interface org.drasyl.handler.remote.protocol.RemoteMessage
getArmed, getHopCount, getNetworkId, getNonce, getProofOfWork, getSender
-
Constructor Details
-
UnarmedProtocolMessage
public UnarmedProtocolMessage()
-
-
Method Details
-
getRecipient
- Specified by:
getRecipient
in interfaceRemoteMessage
-
close
public void close()Description copied from interface:PartialReadMessage
CallsReferenceCounted.release()
.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfacePartialReadMessage
-
refCnt
public int refCnt()- Specified by:
refCnt
in interfaceio.netty.util.ReferenceCounted
-
retain
- Specified by:
retain
in interfaceio.netty.util.ReferenceCounted
-
retain
- Specified by:
retain
in interfaceio.netty.util.ReferenceCounted
-
touch
- Specified by:
touch
in interfaceio.netty.util.ReferenceCounted
-
touch
- Specified by:
touch
in interfaceio.netty.util.ReferenceCounted
-
release
public boolean release()- Specified by:
release
in interfaceio.netty.util.ReferenceCounted
-
release
public boolean release(int decrement) - Specified by:
release
in interfaceio.netty.util.ReferenceCounted
-
incrementHopCount
Returns a copy of this message with incrementedRemoteMessage.getHopCount()
.ReferenceCounted.release()
ownership ofgetBytes()
is transferred to thisPartialReadMessage
.- Specified by:
incrementHopCount
in interfaceRemoteMessage
- Returns:
- message with incremented hop count
-
encodeMessage
public io.netty.buffer.ByteBuf encodeMessage(io.netty.buffer.ByteBufAllocator alloc) Description copied from interface:RemoteMessage
Writes this message to a buffer created byalloc
.- Specified by:
encodeMessage
in interfaceRemoteMessage
- Returns:
- the buffer written to
-
getLength
public int getLength()- Specified by:
getLength
in interfaceRemoteMessage
-
read
Read the remainder of this message and returns the resultedFullReadMessage
.getBytes()
will be consumed and released by this method.- Returns:
- the fully read message
- Throws:
InvalidMessageFormatException
- if message could not be read
-
arm
public ArmedProtocolMessage arm(io.netty.buffer.ByteBufAllocator alloc, Crypto cryptoInstance, SessionPair sessionPair) throws InvalidMessageFormatException Returns an armed version (ArmedProtocolMessage
) of this message.- Parameters:
alloc
-cryptoInstance
- the crypto instance that should be usedsessionPair
- will be used for encryption- Returns:
- the armed version (
ArmedProtocolMessage
) of this message - Throws:
InvalidMessageFormatException
- if arming was not possible
-
armAndRelease
public ArmedProtocolMessage armAndRelease(io.netty.buffer.ByteBufAllocator alloc, Crypto cryptoInstance, SessionPair sessionPair) throws InvalidMessageFormatException Returns an armed version (ArmedProtocolMessage
) of this message and then releases this message.- Parameters:
alloc
-cryptoInstance
- the crypto instance that should be usedsessionPair
- will be used for encryption- Returns:
- the armed version (
ArmedProtocolMessage
) of this message - Throws:
InvalidMessageFormatException
- if arming was not possible
-
isReadOnly
public boolean isReadOnly()Returnstrue
if and only if this message is read-only. -
asReadOnly
Returns a read-only version of this message. -
of
public static UnarmedProtocolMessage of(HopCount hopCount, boolean isArmed, int networkId, Nonce nonce, DrasylAddress recipient, DrasylAddress sender, ProofOfWork proofOfWork, io.netty.buffer.ByteBuf bytes) Creates an unarmed message.ReferenceCounted.release()
ownership ofbytes
is transferred to thisPartialReadMessage
.Modifying the content of
bytes
or the returned message's buffer affects each other's content while they maintain separate indexes and marks.- Parameters:
hopCount
- the hop countisArmed
- if this message is armed or notnetworkId
- the network idnonce
- the noncerecipient
- the public key of the recipientsender
- the public key of the senderproofOfWork
- the proof of work ofsender
bytes
- message's remainder as bytes (may be armed).ReferenceCounted.release()
ownership is transferred to thisPartialReadMessage
.- Returns:
- an
PartialReadMessage
- Throws:
NullPointerException
- ifnonce
,sender
,proofOfWork
, orrecipient
isnull
-