![JAR search and dependency download from the Maven repository](/logo.png)
io.nem.symbol.catapult.builders.SecretProofTransactionBodyBuilder Maven / Gradle / Ivy
/**
*** Copyright (c) 2016-present,
*** Jaguar0625, gimre, BloodyRookie, Tech Bureau, Corp. All rights reserved.
***
*** This file is part of Catapult.
***
*** Catapult is free software: you can redistribute it and/or modify
*** it under the terms of the GNU Lesser General Public License as published by
*** the Free Software Foundation, either version 3 of the License, or
*** (at your option) any later version.
***
*** Catapult is distributed in the hope that it will be useful,
*** but WITHOUT ANY WARRANTY; without even the implied warranty of
*** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
*** GNU Lesser General Public License for more details.
***
*** You should have received a copy of the GNU Lesser General Public License
*** along with Catapult. If not, see .
**/
package io.nem.symbol.catapult.builders;
import java.io.DataInputStream;
import java.nio.ByteBuffer;
import java.util.EnumSet;
import java.util.List;
/**
* Binary layout for a secret proof transaction
**/
public class SecretProofTransactionBodyBuilder implements Serializer {
/** Secret. **/
private final Hash256Dto secret;
/** Hash algorithm. **/
private final LockHashAlgorithmDto hashAlgorithm;
/** Locked mosaic recipient address. **/
private final UnresolvedAddressDto recipientAddress;
/** Proof data. **/
private final ByteBuffer proof;
/**
* Constructor - Creates an object from stream.
*
* @param stream Byte stream to use to serialize the object.
*/
protected SecretProofTransactionBodyBuilder(DataInputStream stream) {
try {
this.secret = Hash256Dto.loadFromBinary(stream);
final short proofSize = Short.reverseBytes(stream.readShort());
this.hashAlgorithm = LockHashAlgorithmDto.loadFromBinary(stream);
this.recipientAddress = UnresolvedAddressDto.loadFromBinary(stream);
this.proof = GeneratorUtils.readByteBuffer(stream, proofSize);
} catch (Exception e) {
throw GeneratorUtils.getExceptionToPropagate(e);
}
}
/**
* Creates an instance of SecretProofTransactionBodyBuilder from a stream.
*
* @param stream Byte stream to use to serialize the object.
* @return Instance of SecretProofTransactionBodyBuilder.
*/
public static SecretProofTransactionBodyBuilder loadFromBinary(DataInputStream stream) {
return new SecretProofTransactionBodyBuilder(stream);
}
/**
* Constructor.
*
* @param secret Secret.
* @param hashAlgorithm Hash algorithm.
* @param recipientAddress Locked mosaic recipient address.
* @param proof Proof data.
*/
protected SecretProofTransactionBodyBuilder(Hash256Dto secret, LockHashAlgorithmDto hashAlgorithm, UnresolvedAddressDto recipientAddress, ByteBuffer proof) {
GeneratorUtils.notNull(secret, "secret is null");
GeneratorUtils.notNull(hashAlgorithm, "hashAlgorithm is null");
GeneratorUtils.notNull(recipientAddress, "recipientAddress is null");
GeneratorUtils.notNull(proof, "proof is null");
this.secret = secret;
this.hashAlgorithm = hashAlgorithm;
this.recipientAddress = recipientAddress;
this.proof = proof;
}
/**
* Creates an instance of SecretProofTransactionBodyBuilder.
*
* @param secret Secret.
* @param hashAlgorithm Hash algorithm.
* @param recipientAddress Locked mosaic recipient address.
* @param proof Proof data.
* @return Instance of SecretProofTransactionBodyBuilder.
*/
public static SecretProofTransactionBodyBuilder create(Hash256Dto secret, LockHashAlgorithmDto hashAlgorithm, UnresolvedAddressDto recipientAddress, ByteBuffer proof) {
return new SecretProofTransactionBodyBuilder(secret, hashAlgorithm, recipientAddress, proof);
}
/**
* Gets secret.
*
* @return Secret.
*/
public Hash256Dto getSecret() {
return this.secret;
}
/**
* Gets hash algorithm.
*
* @return Hash algorithm.
*/
public LockHashAlgorithmDto getHashAlgorithm() {
return this.hashAlgorithm;
}
/**
* Gets locked mosaic recipient address.
*
* @return Locked mosaic recipient address.
*/
public UnresolvedAddressDto getRecipientAddress() {
return this.recipientAddress;
}
/**
* Gets proof data.
*
* @return Proof data.
*/
public ByteBuffer getProof() {
return this.proof;
}
/**
* Gets the size of the object.
*
* @return Size in bytes.
*/
public int getSize() {
int size = 0;
size += this.secret.getSize();
size += 2; // proofSize
size += this.hashAlgorithm.getSize();
size += this.recipientAddress.getSize();
size += this.proof.array().length;
return size;
}
/**
* Serializes an object to bytes.
*
* @return Serialized bytes.
*/
public byte[] serialize() {
return GeneratorUtils.serialize((dataOutputStream) -> {
GeneratorUtils.writeEntity(dataOutputStream, this.secret);
dataOutputStream.writeShort(Short.reverseBytes((short) GeneratorUtils.getSize(this.getProof())));
GeneratorUtils.writeEntity(dataOutputStream, this.hashAlgorithm);
GeneratorUtils.writeEntity(dataOutputStream, this.recipientAddress);
dataOutputStream.write(this.proof.array(), 0, this.proof.array().length);
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy