X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FPositiveTimestamp.java;h=35e09bd01716b889888401240d37849e46d98fe2;hb=6fe917116a65d7b62123226c4240d77ea2719783;hp=81db6083eac193e3f4ab8e970faeab84a8d91197;hpb=e6173a79ce766cef7a660f22fc8fd1220975f6ea;p=ldk-java diff --git a/src/main/java/org/ldk/structs/PositiveTimestamp.java b/src/main/java/org/ldk/structs/PositiveTimestamp.java index 81db6083..35e09bd0 100644 --- a/src/main/java/org/ldk/structs/PositiveTimestamp.java +++ b/src/main/java/org/ldk/structs/PositiveTimestamp.java @@ -4,16 +4,17 @@ import org.ldk.impl.bindings; import org.ldk.enums.*; import org.ldk.util.*; import java.util.Arrays; +import java.lang.ref.Reference; import javax.annotation.Nullable; /** - * A timestamp that refers to a date after 1 January 1970 which means its representation as UNIX - * timestamp is positive. + * A timestamp that refers to a date after 1 January 1970. * * # Invariants - * The UNIX timestamp representing the stored time has to be positive and small enough so that - * a `EpiryTime` can be added to it without an overflow. + * + * The Unix timestamp representing the stored time has to be positive and no greater than + * [`MAX_TIMESTAMP`]. */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class PositiveTimestamp extends CommonBase { @@ -31,58 +32,99 @@ public class PositiveTimestamp extends CommonBase { */ public boolean eq(PositiveTimestamp b) { boolean ret = bindings.PositiveTimestamp_eq(this.ptr, b == null ? 0 : b.ptr & ~1); + Reference.reachabilityFence(this); + Reference.reachabilityFence(b); this.ptrs_to.add(b); return ret; } + @Override public boolean equals(Object o) { + if (!(o instanceof PositiveTimestamp)) return false; + return this.eq((PositiveTimestamp)o); + } + long clone_ptr() { + long ret = bindings.PositiveTimestamp_clone_ptr(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + /** * Creates a copy of the PositiveTimestamp */ public PositiveTimestamp clone() { long ret = bindings.PositiveTimestamp_clone(this.ptr); - if (ret >= 0 && ret < 1024) { return null; } - PositiveTimestamp ret_hu_conv = new PositiveTimestamp(null, ret); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + PositiveTimestamp ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new PositiveTimestamp(null, ret); } ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } /** - * Create a new `PositiveTimestamp` from a unix timestamp in the Range - * `0...SYSTEM_TIME_MAX_UNIX_TIMESTAMP - MAX_EXPIRY_TIME`, otherwise return a - * `CreationError::TimestampOutOfBounds`. + * Creates a `PositiveTimestamp` from a Unix timestamp in the range `0..=MAX_TIMESTAMP`. + * + * Otherwise, returns a [`CreationError::TimestampOutOfBounds`]. */ public static Result_PositiveTimestampCreationErrorZ from_unix_timestamp(long unix_seconds) { long ret = bindings.PositiveTimestamp_from_unix_timestamp(unix_seconds); - if (ret >= 0 && ret < 1024) { return null; } + Reference.reachabilityFence(unix_seconds); + if (ret >= 0 && ret <= 4096) { return null; } Result_PositiveTimestampCreationErrorZ ret_hu_conv = Result_PositiveTimestampCreationErrorZ.constr_from_ptr(ret); return ret_hu_conv; } /** - * Create a new `PositiveTimestamp` from a `SystemTime` with a corresponding unix timestamp in - * the Range `0...SYSTEM_TIME_MAX_UNIX_TIMESTAMP - MAX_EXPIRY_TIME`, otherwise return a - * `CreationError::TimestampOutOfBounds`. + * Creates a `PositiveTimestamp` from a [`SystemTime`] with a corresponding Unix timestamp in + * the range `0..=MAX_TIMESTAMP`. + * + * Otherwise, returns a [`CreationError::TimestampOutOfBounds`]. */ public static Result_PositiveTimestampCreationErrorZ from_system_time(long time) { long ret = bindings.PositiveTimestamp_from_system_time(time); - if (ret >= 0 && ret < 1024) { return null; } + Reference.reachabilityFence(time); + if (ret >= 0 && ret <= 4096) { return null; } + Result_PositiveTimestampCreationErrorZ ret_hu_conv = Result_PositiveTimestampCreationErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + + /** + * Creates a `PositiveTimestamp` from a [`Duration`] since the Unix epoch in the range + * `0..=MAX_TIMESTAMP`. + * + * Otherwise, returns a [`CreationError::TimestampOutOfBounds`]. + */ + public static Result_PositiveTimestampCreationErrorZ from_duration_since_epoch(long duration) { + long ret = bindings.PositiveTimestamp_from_duration_since_epoch(duration); + Reference.reachabilityFence(duration); + if (ret >= 0 && ret <= 4096) { return null; } Result_PositiveTimestampCreationErrorZ ret_hu_conv = Result_PositiveTimestampCreationErrorZ.constr_from_ptr(ret); return ret_hu_conv; } /** - * Returns the UNIX timestamp representing the stored time + * Returns the Unix timestamp representing the stored time */ public long as_unix_timestamp() { long ret = bindings.PositiveTimestamp_as_unix_timestamp(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + /** + * Returns the duration of the stored time since the Unix epoch + */ + public long as_duration_since_epoch() { + long ret = bindings.PositiveTimestamp_as_duration_since_epoch(this.ptr); + Reference.reachabilityFence(this); return ret; } /** - * Returns a reference to the internal `SystemTime` time representation + * Returns the [`SystemTime`] representing the stored time */ public long as_time() { long ret = bindings.PositiveTimestamp_as_time(this.ptr); + Reference.reachabilityFence(this); return ret; }