X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FReply.java;h=15d8287859886be37230018772c7498ae259fdbd;hp=62aadeaf8bedf0f97a8a2a6c7d698ae9a94a76b2;hb=c9e306ac8e3ada846e87a0cc256a20fc148f381c;hpb=ed360e7532ffc1c1f2cc77fb41fed7cc0557dd77 diff --git a/src/main/java/net/pterodactylus/sone/data/Reply.java b/src/main/java/net/pterodactylus/sone/data/Reply.java index 62aadea..15d8287 100644 --- a/src/main/java/net/pterodactylus/sone/data/Reply.java +++ b/src/main/java/net/pterodactylus/sone/data/Reply.java @@ -1,5 +1,5 @@ /* - * Sone - Reply.java - Copyright © 2010 David Roden + * Sone - Reply.java - Copyright © 2011 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,93 +17,133 @@ 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}. + * Abstract base class for all replies. * + * @param + * The type of the reply * @author David ‘Bombe’ Roden */ -public class Reply { +public abstract class Reply> { + + /** Comparator that sorts replies ascending by time. */ + public static final Comparator> TIME_COMPARATOR = new Comparator>() { + + /** + * {@inheritDoc} + */ + @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_REPLY_FILTER = new Filter>() { + + /** + * {@inheritDoc} + */ + @Override + public boolean filterObject(Reply reply) { + return reply.getTime() <= System.currentTimeMillis(); + } + + }; /** The ID of the reply. */ - private final UUID id; + private final String id; - /** The Post this reply refers to. */ - private final Post post; + /** The Sone that created this reply. */ + private volatile Sone sone; /** 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; + + /** Whether the reply is known. */ + private volatile boolean known; /** - * Creates a new reply. + * Creates a new reply with the given ID. * - * @param post - * The post to reply to - * @param text - * The text of the reply + * @param id + * The ID of the reply */ - public Reply(Post post, String text) { - this(post, System.currentTimeMillis(), text); + protected Reply(String id) { + this(id, null, 0, null); } /** - * Creates a new reply- + * Creates a new reply with a new random ID. * - * @param post - * The post to reply to + * @param sone + * The Sone of the reply * @param time * The time of the reply * @param text * The text of the reply */ - public Reply(Post post, long time, String text) { - this(UUID.randomUUID(), post, time, text); + protected Reply(Sone sone, long time, String text) { + this(UUID.randomUUID().toString(), sone, time, text); } /** - * Creates a new reply- + * Creates a new reply. * * @param id * The ID of the reply - * @param post - * The post to reply to + * @param sone + * The Sone of the reply * @param time * The time of the reply * @param text * The text of the reply */ - public Reply(UUID id, Post post, long time, String text) { + protected Reply(String id, Sone sone, long time, String text) { this.id = id; - this.post = post; + this.sone = sone; this.time = time; this.text = text; } - // - // ACCESSORS - // - /** * Returns the ID of the reply. * * @return The ID of the reply */ public String getId() { - return id.toString(); + return id; } /** - * Returns the post this reply refers to. + * Returns the Sone that posted this reply. * - * @return The post this reply refers to + * @return The Sone that posted this reply */ - public Post getPost() { - return post; + 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) + */ + @SuppressWarnings("unchecked") + public T setSone(Sone sone) { + this.sone = sone; + return (T) this; } /** @@ -116,6 +156,19 @@ 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) + */ + @SuppressWarnings("unchecked") + public T setTime(long time) { + this.time = time; + return (T) this; + } + + /** * Returns the text of the reply. * * @return The text of the reply @@ -124,6 +177,41 @@ public class Reply { return text; } + /** + * Sets the text of this reply. + * + * @param text + * The text of this reply + * @return This reply (for method chaining) + */ + @SuppressWarnings("unchecked") + public T setText(String text) { + this.text = text; + return (T) this; + } + + /** + * Returns whether this reply is known. + * + * @return {@code true} if this reply is known, {@code false} otherwise + */ + public boolean isKnown() { + return known; + } + + /** + * Sets whether this reply is known. + * + * @param known + * {@code true} if this reply is known, {@code false} otherwise + * @return This reply + */ + @SuppressWarnings("unchecked") + public T setKnown(boolean known) { + this.known = known; + return (T) this; + } + // // OBJECT METHODS // @@ -133,7 +221,7 @@ public class Reply { */ @Override public int hashCode() { - return post.hashCode() ^ id.hashCode(); + return id.hashCode(); } /** @@ -141,10 +229,19 @@ public class Reply { */ @Override public boolean equals(Object object) { - if (!(object instanceof 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 + ",time=" + time + ",text=" + text + "]"; } }