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

io.ray.api.id.ObjectId Maven / Gradle / Ivy

There is a newer version: 2.36.0
Show newest version
package io.ray.api.id;

import java.io.Serializable;
import java.nio.ByteBuffer;
import java.util.Arrays;
import java.util.Random;

/** Represents the id of a Ray object. */
public class ObjectId extends BaseId implements Serializable {

  public static final int LENGTH = 28;

  /** Create an ObjectId from a ByteBuffer. */
  public static ObjectId fromByteBuffer(ByteBuffer bb) {
    return new ObjectId(byteBuffer2Bytes(bb));
  }

  /** Generate an ObjectId with random value. */
  public static ObjectId fromRandom() {
    // This is tightly coupled with ObjectID definition in C++. If that changes,
    // this must be changed as well.
    // The following logic should be kept consistent with `ObjectID::FromRandom` in
    // C++.
    byte[] b = new byte[LENGTH];
    new Random().nextBytes(b);
    Arrays.fill(b, TaskId.LENGTH, LENGTH, (byte) 0);
    return new ObjectId(b);
  }

  public ObjectId(byte[] id) {
    super(id);
  }

  @Override
  public int size() {
    return LENGTH;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy