X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FReply.java;h=2dacfbee93b4085dcd42f2400fc5fc9ea22d8ccd;hb=73be50df4f7b7761fe7f286f2fdb73a142c14926;hp=cfc6d91b7c6acccaa72274b3b6fdcdc2f0b0daaf;hpb=8d298562a71682e0bbcdc311e741e00f85490a7d;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/data/Reply.java b/src/main/java/net/pterodactylus/sone/data/Reply.java index cfc6d91..2dacfbe 100644 --- a/src/main/java/net/pterodactylus/sone/data/Reply.java +++ b/src/main/java/net/pterodactylus/sone/data/Reply.java @@ -17,8 +17,11 @@ package net.pterodactylus.sone.data; +import java.util.Comparator; import java.util.UUID; +import net.pterodactylus.util.filter.Filter; + /** * A reply is like a {@link Post} but can never be posted on its own, it always * refers to another {@link Post}. @@ -27,20 +30,50 @@ import java.util.UUID; */ public class Reply { - /** The Sone that posted this reply. */ - private final Sone sone; + /** Comparator that sorts replies ascending by time. */ + public static final Comparator TIME_COMPARATOR = new Comparator() { + + @Override + public int compare(Reply leftReply, Reply rightReply) { + return (int) Math.max(Integer.MIN_VALUE, Math.min(Integer.MAX_VALUE, leftReply.getTime() - rightReply.getTime())); + } + + }; + + /** Filter for replies with timestamps from the future. */ + public static final Filter FUTURE_REPLIES_FILTER = new Filter() { + + @Override + public boolean filterObject(Reply reply) { + return reply.getTime() <= System.currentTimeMillis(); + } + + }; /** The ID of the reply. */ private final UUID id; + /** The Sone that posted this reply. */ + private volatile Sone sone; + /** The Post this reply refers to. */ - private final Post post; + private volatile Post post; /** The time of the reply. */ - private final long time; + private volatile long time; /** The text of the reply. */ - private final String text; + private volatile String text; + + /** + * Creates a new reply. + * + * @param id + * The ID of the reply + */ + public Reply(String id) { + this(id, null, null, 0, null); + } /** * Creates a new reply. @@ -69,7 +102,7 @@ public class Reply { * The text of the reply */ public Reply(Sone sone, Post post, long time, String text) { - this(sone, UUID.randomUUID(), post, time, text); + this(UUID.randomUUID().toString(), sone, post, time, text); } /** @@ -86,9 +119,9 @@ public class Reply { * @param text * The text of the reply */ - public Reply(Sone sone, UUID id, Post post, long time, String text) { + public Reply(String id, Sone sone, Post post, long time, String text) { + this.id = UUID.fromString(id); this.sone = sone; - this.id = id; this.post = post; this.time = time; this.text = text; @@ -99,6 +132,15 @@ public class Reply { // /** + * Returns the ID of the reply. + * + * @return The ID of the reply + */ + public String getId() { + return id.toString(); + } + + /** * Returns the Sone that posted this reply. * * @return The Sone that posted this reply @@ -108,12 +150,15 @@ public class Reply { } /** - * Returns the ID of the reply. + * Sets the Sone that posted this reply. * - * @return The ID of the reply + * @param sone + * The Sone that posted this reply + * @return This reply (for method chaining) */ - public String getId() { - return id.toString(); + public Reply setSone(Sone sone) { + this.sone = sone; + return this; } /** @@ -126,6 +171,18 @@ public class Reply { } /** + * Sets the post this reply refers to. + * + * @param post + * The post this reply refers to + * @return This reply (for method chaining) + */ + public Reply setPost(Post post) { + this.post = post; + return this; + } + + /** * Returns the time of the reply. * * @return The time of the reply (in milliseconds since Jan 1, 1970 UTC) @@ -135,6 +192,18 @@ public class Reply { } /** + * Sets the time of this reply. + * + * @param time + * The time of this reply (in milliseconds since Jan 1, 1970 UTC) + * @return This reply (for method chaining) + */ + public Reply setTime(long time) { + this.time = time; + return this; + } + + /** * Returns the text of the reply. * * @return The text of the reply @@ -143,6 +212,18 @@ public class Reply { return text; } + /** + * Sets the text of this reply. + * + * @param text + * The text of this reply + * @return This reply (for method chaining) + */ + public Reply setText(String text) { + this.text = text; + return this; + } + // // OBJECT METHODS // @@ -152,7 +233,7 @@ public class Reply { */ @Override public int hashCode() { - return post.hashCode() ^ id.hashCode(); + return id.hashCode(); } /** @@ -163,7 +244,16 @@ public class Reply { if (!(object instanceof Reply)) { return false; } - return ((Reply) object).post.equals(post) && ((Reply) object).id.equals(id); + Reply reply = (Reply) object; + return reply.id.equals(id); + } + + /** + * {@inheritDoc} + */ + @Override + public String toString() { + return getClass().getName() + "[id=" + id + ",sone=" + sone + ",post=" + post + ",time=" + time + ",text=" + text + "]"; } }