com.hedera.hashgraph.sdk.NodeAddressBook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
/*-
*
* Hedera Java SDK
*
* Copyright (C) 2020 - 2024 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.hedera.hashgraph.sdk;
import com.google.common.base.MoreObjects;
import com.google.protobuf.ByteString;
import com.google.protobuf.InvalidProtocolBufferException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* A list of nodes and their metadata.
*
* See Hedera Documentation
*/
public class NodeAddressBook {
List nodeAddresses = Collections.emptyList();
/**
* Constructor.
*/
NodeAddressBook() {
}
/**
* Extract the of node addresses.
*
* @return list of node addresses
*/
public List getNodeAddresses() {
return cloneNodeAddresses(nodeAddresses);
}
/**
* Assign the list of node addresses.
*
* @param nodeAddresses list of node addresses
* @return {@code this}
*/
public NodeAddressBook setNodeAddresses(List nodeAddresses) {
this.nodeAddresses = cloneNodeAddresses(nodeAddresses);
return this;
}
static List cloneNodeAddresses(List addresses) {
List cloneAddresses = new ArrayList<>(addresses.size());
for (var address : addresses) {
cloneAddresses.add(address.clone());
}
return cloneAddresses;
}
/**
* Create a node address book from a protobuf.
*
* @param book the protobuf
* @return the new node address book
*/
static NodeAddressBook fromProtobuf(com.hedera.hashgraph.sdk.proto.NodeAddressBook book) {
var addresses = new ArrayList(book.getNodeAddressCount());
for (var address : book.getNodeAddressList()) {
addresses.add(NodeAddress.fromProtobuf(address));
}
return new NodeAddressBook().setNodeAddresses(addresses);
}
/**
* Create a node address book from a byte string.
*
* @param bytes the byte string
* @return the new node address book
* @throws InvalidProtocolBufferException when there is an issue with the protobuf
*/
public static NodeAddressBook fromBytes(ByteString bytes) throws InvalidProtocolBufferException {
return fromProtobuf(com.hedera.hashgraph.sdk.proto.NodeAddressBook.parseFrom(bytes));
}
/**
* Create the protobuf.
*
* @return the protobuf representation
*/
com.hedera.hashgraph.sdk.proto.NodeAddressBook toProtobuf() {
var builder = com.hedera.hashgraph.sdk.proto.NodeAddressBook.newBuilder();
for (var nodeAdress : nodeAddresses) {
builder.addNodeAddress(nodeAdress.toProtobuf());
}
return builder.build();
}
/**
* Create the byte string.
*
* @return the byte string representation
*/
public ByteString toBytes() {
return toProtobuf().toByteString();
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("nodeAddresses", nodeAddresses)
.toString();
}
}