All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.proximax.sdk.model.mosaic.MosaicId Maven / Gradle / Ivy

Go to download

The ProximaX Sirius Chain Java SDK is a Java library for interacting with the Sirius Blockchain.

The newest version!
/*
 * Copyright 2018 NEM
 *
 * 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 io.proximax.sdk.model.mosaic;

import java.math.BigInteger;
import java.util.Objects;
import java.util.Optional;

import io.proximax.sdk.model.transaction.IdGenerator;
import io.proximax.sdk.model.transaction.UInt64Id;
import io.proximax.sdk.utils.dto.UInt64Utils;

/**
 * The mosaic id structure describes mosaic id
 */
public class MosaicId implements UInt64Id {
   private static final Optional FULL_NAME = Optional.empty();

   private final BigInteger id;
   private final Optional nonce;

   /**
    * Create mosaic from the random nonce and public key of the owner
    * 
    * @param nonce random integer
    * @param ownerPublicKeyHex hexadecimal representation of owner's public key
    */
   public MosaicId(MosaicNonce nonce, String ownerPublicKeyHex) {
      this.id = IdGenerator.generateMosaicId(nonce.getNonceAsInt(), ownerPublicKeyHex);
      this.nonce = Optional.of(nonce);
   }

   /**
    * Create mosaic ID from the hex-encoded value
    * 
    * @param hex hexadecimal string representing the ID
    */
   public MosaicId(String hex) {
      if (!hex.matches("^[0-9A-Fa-f]{16}$")) {
         throw new IllegalIdentifierException("invalid hex string " + hex);
      }
      this.id = new BigInteger(hex, 16);
      this.nonce = Optional.empty();
   }

   /**
    * Create MosaicId from BigInteger id
    *
    * @param id id of the mosaic
    */
   public MosaicId(BigInteger id) {
      this.id = id;
      this.nonce = Optional.empty();
   }

   /**
    * @return the id
    */
   public BigInteger getId() {
      return id;
   }

   /**
    * @return the nonce
    */
   public Optional getNonce() {
      return nonce;
   }

   @Override
   public long getIdAsLong() {
      return id.longValue();
   }

   @Override
   public String getIdAsHex() {
      return UInt64Utils.bigIntegerToHex(id);
   }
   
   @Override
   public Optional getFullName() {
      return FULL_NAME;
   }
   
   @Override
   public int hashCode() {
      return Objects.hash(id);
   }

   @Override
   public boolean equals(Object obj) {
      if (this == obj)
         return true;
      if (obj == null)
         return false;
      if (getClass() != obj.getClass())
         return false;
      MosaicId other = (MosaicId) obj;
      return Objects.equals(id, other.id);
   }

   @Override
   public String toString() {
      return "MosaicId [id=" + id + ", nonce=" + nonce + "]";
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy