2 * Sone - MemoryPost.java - Copyright © 2010–2016 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.database.memory;
20 import java.util.UUID;
22 import net.pterodactylus.sone.data.Post;
23 import net.pterodactylus.sone.data.Sone;
24 import net.pterodactylus.sone.database.SoneProvider;
26 import com.google.common.base.Optional;
29 * A post is a short message that a user writes in his Sone to let other users
30 * know what is going on.
32 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
34 class MemoryPost implements Post {
36 /** The post database. */
37 private final MemoryDatabase postDatabase;
39 /** The Sone provider. */
40 private final SoneProvider soneProvider;
42 /** The GUID of the post. */
43 private final UUID id;
45 /** The ID of the owning Sone. */
46 private final String soneId;
48 /** The ID of the recipient Sone. */
49 private final String recipientId;
51 /** The time of the post (in milliseconds since Jan 1, 1970 UTC). */
52 private final long time;
54 /** The text of the post. */
55 private final String text;
67 * The ID of the Sone this post belongs to
69 * The ID of the recipient of the post
71 * The time of the post (in milliseconds since Jan 1, 1970 UTC)
73 * The text of the post
75 public MemoryPost(MemoryDatabase postDatabase, SoneProvider soneProvider, String id, String soneId, String recipientId, long time, String text) {
76 this.postDatabase = postDatabase;
77 this.soneProvider = soneProvider;
78 this.id = UUID.fromString(id);
80 this.recipientId = recipientId;
93 public String getId() {
98 public boolean isLoaded() {
106 public Sone getSone() {
107 return soneProvider.getSone(soneId).get();
114 public Optional<String> getRecipientId() {
115 return Optional.fromNullable(recipientId);
122 public Optional<Sone> getRecipient() {
123 return soneProvider.getSone(recipientId);
130 public long getTime() {
138 public String getText() {
146 public boolean isKnown() {
147 return postDatabase.isPostKnown(this);
154 public MemoryPost setKnown(boolean known) {
155 postDatabase.setPostKnown(this, known);
167 public int hashCode() {
168 return id.hashCode();
175 public boolean equals(Object object) {
176 if (!(object instanceof MemoryPost)) {
179 MemoryPost post = (MemoryPost) object;
180 return post.id.equals(id);
187 public String toString() {
188 return String.format("%s[id=%s,sone=%s,recipient=%s,time=%d,text=%s]", getClass().getName(), id, soneId, recipientId, time, text);