X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FReply.java;h=2dacfbee93b4085dcd42f2400fc5fc9ea22d8ccd;hb=38cb6c5ec82298ee351d0eb15ddd8331db273af2;hp=62aadeaf8bedf0f97a8a2a6c7d698ae9a94a76b2;hpb=ed360e7532ffc1c1f2cc77fb41fed7cc0557dd77;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 62aadea..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,33 +30,70 @@ import java.util.UUID; */ public class Reply { + /** 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. * + * @param sone + * The sone that posted the reply * @param post * The post to reply to * @param text * The text of the reply */ - public Reply(Post post, String text) { - this(post, System.currentTimeMillis(), text); + public Reply(Sone sone, Post post, String text) { + this(sone, post, System.currentTimeMillis(), text); } /** * Creates a new reply- * + * @param sone + * The sone that posted the reply * @param post * The post to reply to * @param time @@ -61,13 +101,15 @@ public class Reply { * @param text * The text of the reply */ - public Reply(Post post, long time, String text) { - this(UUID.randomUUID(), post, time, text); + public Reply(Sone sone, Post post, long time, String text) { + this(UUID.randomUUID().toString(), sone, post, time, text); } /** * Creates a new reply- * + * @param sone + * The sone that posted the reply * @param id * The ID of the reply * @param post @@ -77,8 +119,9 @@ public class Reply { * @param text * The text of the reply */ - public Reply(UUID id, Post post, long time, String text) { - this.id = id; + public Reply(String id, Sone sone, Post post, long time, String text) { + this.id = UUID.fromString(id); + this.sone = sone; this.post = post; this.time = time; this.text = text; @@ -98,6 +141,27 @@ public class Reply { } /** + * Returns the Sone that posted this reply. + * + * @return The Sone that posted this reply + */ + public Sone getSone() { + return sone; + } + + /** + * Sets the Sone that posted this reply. + * + * @param sone + * The Sone that posted this reply + * @return This reply (for method chaining) + */ + public Reply setSone(Sone sone) { + this.sone = sone; + return this; + } + + /** * Returns the post this reply refers to. * * @return The post this reply refers to @@ -107,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) @@ -116,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 @@ -124,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 // @@ -133,7 +233,7 @@ public class Reply { */ @Override public int hashCode() { - return post.hashCode() ^ id.hashCode(); + return id.hashCode(); } /** @@ -144,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 + "]"; } }