Class HelloMessage
java.lang.Object
org.drasyl.handler.remote.protocol.HelloMessage
- All Implemented Interfaces:
FullReadMessage<HelloMessage>,RemoteMessage
Describes a message that is used to announce this node to peers or to join a super node. The
message's body is structured as follows:
- Time: The sender's current time in milliseconds stored in 8 bytes.
- ChildrenTime: Specifies how many seconds (8 bytes) the sender wants to join the receiving super peer. If the value is 0, the message is an announcement and not a join.
- Signature: 64 byte signature. Only present if ChildrenTime is > 0.
This is an immutable object.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intstatic final intFields inherited from interface org.drasyl.handler.remote.protocol.RemoteMessage
MAGIC_NUMBER -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionarm(io.netty.buffer.ByteBuf byteBuf, Crypto cryptoInstance, SessionPair sessionPair) Returns an armed version (ArmedProtocolMessage) of this message for sending it through untrustworthy channels.abstract longIf the value is greater than0, it indicates that this node wants to join the receiver as a child.abstract Set<InetSocketAddress>abstract DrasylAddressReturns theIdentityPublicKeyof the message recipient.abstract ImmutableByteArrayabstract longgetTime()Returns the time this message has been sent.Returns this message with incremented hop count.booleanisSigned()Returnstrueif message is signed.static HelloMessageof(int networkId, DrasylAddress recipient, IdentityPublicKey sender, ProofOfWork proofOfWork) Creates a newHelloMessage.static HelloMessageof(int networkId, DrasylAddress recipient, IdentityPublicKey sender, ProofOfWork proofOfWork, long time, long childrenTime, IdentitySecretKey secretKey, Set<InetSocketAddress> privateInetAddresses) Creates a newHelloMessage.static HelloMessageof(int networkId, DrasylAddress recipient, IdentityPublicKey sender, ProofOfWork proofOfWork, long childrenTime, IdentitySecretKey secretKey, Set<InetSocketAddress> privateInetAddresses) Creates a newHelloMessage.static HelloMessageof(int networkId, IdentityPublicKey sender, ProofOfWork proofOfWork) Creates a new multicastHelloMessage(sent byLocalNetworkDiscovery}.static HelloMessageof(HopCount hopCount, boolean isArmed, int networkId, Nonce nonce, DrasylAddress recipient, DrasylAddress sender, ProofOfWork proofOfWork, long time, long childrenTime, IdentitySecretKey secretKey, Set<InetSocketAddress> privateInetAddresses) Creates newHelloMessage.static HelloMessageof(HopCount hopCount, boolean isArmed, int networkId, Nonce nonce, DrasylAddress recipient, DrasylAddress sender, ProofOfWork proofOfWork, long time, long childrenTime, ImmutableByteArray signature, Set<InetSocketAddress> privateInetAddresses) Creates a newHelloMessage.booleanReturnstrueif message is signed and the signature is valid.protected voidwriteBodyTo(io.netty.buffer.ByteBuf out) protected voidwritePrivateHeaderTo(io.netty.buffer.ByteBuf out) protected voidwritePublicHeaderTo(io.netty.buffer.ByteBuf out) voidwriteTo(io.netty.buffer.ByteBuf out) Writes this message to the bufferout.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.drasyl.handler.remote.protocol.RemoteMessage
getArmed, getHopCount, getNetworkId, getNonce, getProofOfWork, getSender
-
Field Details
-
MIN_UNSIGNED_LENGTH
public static final int MIN_UNSIGNED_LENGTH- See Also:
-
MIN_SIGNED_LENGTH
public static final int MIN_SIGNED_LENGTH- See Also:
-
-
Constructor Details
-
HelloMessage
public HelloMessage()
-
-
Method Details
-
of
public static HelloMessage of(HopCount hopCount, boolean isArmed, int networkId, Nonce nonce, DrasylAddress recipient, DrasylAddress sender, ProofOfWork proofOfWork, long time, long childrenTime, ImmutableByteArray signature, Set<InetSocketAddress> privateInetAddresses) Creates a newHelloMessage.- Parameters:
hopCount- the hop countisArmed- if the 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 ofsendertime- the local time of the senderchildrenTime- the join timesignature- the signatureprivateInetAddresses- list of private ip addresses of the sender- Throws:
NullPointerException- ifnonce,sender,proofOfWork,recipient, orhopCountisnull
-
of
public static HelloMessage of(HopCount hopCount, boolean isArmed, int networkId, Nonce nonce, DrasylAddress recipient, DrasylAddress sender, ProofOfWork proofOfWork, long time, long childrenTime, IdentitySecretKey secretKey, Set<InetSocketAddress> privateInetAddresses) Creates newHelloMessage.- Parameters:
hopCount- the hop countisArmed- if the 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 ofsendertime- the local time of the senderchildrenTime- the join time- Throws:
NullPointerException- ifnonce,sender,proofOfWork,recipient, orhopCountisnull
-
of
public static HelloMessage of(int networkId, DrasylAddress recipient, IdentityPublicKey sender, ProofOfWork proofOfWork, long time, long childrenTime, IdentitySecretKey secretKey, Set<InetSocketAddress> privateInetAddresses) Creates a newHelloMessage.- Parameters:
networkId- the network of the joining noderecipient- the public key of the node to joinsender- the public key of the joining nodeproofOfWork- the proof of worktime- time in millis when this message was sentchildrenTime- if0greater then 0, node will join a children.secretKey- the secret key used to sign this messageprivateInetAddresses- list of private ip addresses of the sender- Throws:
NullPointerException- ifsender,proofOfWork, orrecipientisnull
-
of
public static HelloMessage of(int networkId, DrasylAddress recipient, IdentityPublicKey sender, ProofOfWork proofOfWork, long childrenTime, IdentitySecretKey secretKey, Set<InetSocketAddress> privateInetAddresses) Creates a newHelloMessage.- Parameters:
networkId- the network of the joining noderecipient- the public key of the node to joinsender- the public key of the joining nodeproofOfWork- the proof of workchildrenTime- if0greater then 0, node will join a children.secretKey- the secret key used to sign this messageprivateInetAddresses- list of private ip addresses of the sender- Throws:
NullPointerException- ifsender,proofOfWork, orrecipientisnull
-
of
public static HelloMessage of(int networkId, DrasylAddress recipient, IdentityPublicKey sender, ProofOfWork proofOfWork) Creates a newHelloMessage.- Parameters:
networkId- the network of the joining noderecipient- the public key of the node to joinsender- the public key of the joining nodeproofOfWork- the proof of work- Throws:
NullPointerException- ifsender,proofOfWork, orrecipientisnull
-
of
Creates a new multicastHelloMessage(sent byLocalNetworkDiscovery}.- Parameters:
networkId- the network of the joining nodesender- the public key of the joining nodeproofOfWork- the proof of work- Throws:
NullPointerException- ifsender, orproofOfWorkisnull
-
getRecipient
Returns theIdentityPublicKeyof the message recipient. If the message has no recipient (e.g. because it is a multicast message)nullis returned.- Returns:
- the
IdentityPublicKeyof the message recipient
-
getTime
public abstract long getTime()Returns the time this message has been sent. -
getChildrenTime
public abstract long getChildrenTime()If the value is greater than0, it indicates that this node wants to join the receiver as a child. For this, the receiver must be configured as a super node. In all other cases, the message is used to announce this node's presence to the recipient. -
getSignature
-
getPrivateInetAddresses
-
incrementHopCount
Description copied from interface:FullReadMessageReturns this message with incremented hop count.- Returns:
- this message with incremented hop count.
-
isSigned
public boolean isSigned()Returnstrueif message is signed. This message will not verifiy the signature! UseverifySignature()to check if supplied signature is valid.- Returns:
trueif message is signed
-
verifySignature
public boolean verifySignature()Returnstrueif message is signed and the signature is valid. UseisSigned()to check whether a message is signed.- Returns:
trueif message is signed and the signature is valid
-
writePrivateHeaderTo
protected void writePrivateHeaderTo(io.netty.buffer.ByteBuf out) -
writeBodyTo
protected void writeBodyTo(io.netty.buffer.ByteBuf out) -
arm
public ArmedProtocolMessage arm(io.netty.buffer.ByteBuf byteBuf, Crypto cryptoInstance, SessionPair sessionPair) throws InvalidMessageFormatException Description copied from interface:FullReadMessageReturns an armed version (ArmedProtocolMessage) of this message for sending it through untrustworthy channels.- Specified by:
armin interfaceFullReadMessage<T extends FullReadMessage<?>>- Parameters:
byteBuf- theByteBufto write throughcryptoInstance- the crypto instance that should be usedsessionPair- will be used for encryption- Returns:
- the armed version of this message
- Throws:
InvalidMessageFormatException- if arming was not possible
-
writeTo
public void writeTo(io.netty.buffer.ByteBuf out) Description copied from interface:RemoteMessageWrites this message to the bufferout.- Specified by:
writeToin interfaceRemoteMessage- Parameters:
out- writes this envelope to this buffer
-
writePublicHeaderTo
protected void writePublicHeaderTo(io.netty.buffer.ByteBuf out)
-