Add and use memory-based post reply implementation.
[Sone.git] / src / main / java / net / pterodactylus / sone / database / memory / MemoryPost.java
1 /*
2  * Sone - PostImpl.java - Copyright © 2010–2013 David Roden
3  *
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.
8  *
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.
13  *
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/>.
16  */
17
18 package net.pterodactylus.sone.database.memory;
19
20 import java.util.UUID;
21
22 import net.pterodactylus.sone.data.Post;
23 import net.pterodactylus.sone.data.Sone;
24 import net.pterodactylus.sone.database.SoneProvider;
25
26 import com.google.common.base.Optional;
27
28 /**
29  * A post is a short message that a user writes in his Sone to let other users
30  * know what is going on.
31  *
32  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
33  */
34 class MemoryPost implements Post {
35
36         /** The post database. */
37         private final MemoryDatabase postDatabase;
38
39         /** The Sone provider. */
40         private final SoneProvider soneProvider;
41
42         /** The GUID of the post. */
43         private final UUID id;
44
45         /** The ID of the owning Sone. */
46         private final String soneId;
47
48         /** The ID of the recipient Sone. */
49         private final String recipientId;
50
51         /** The time of the post (in milliseconds since Jan 1, 1970 UTC). */
52         private final long time;
53
54         /** The text of the post. */
55         private final String text;
56
57         /**
58          * Creates a new post.
59          *
60          * @param postDatabase
61          *            The post database
62          * @param soneProvider
63          *            The Sone provider
64          * @param id
65          *            The ID of the post
66          * @param soneId
67          *            The ID of the Sone this post belongs to
68          * @param recipientId
69          *            The ID of the recipient of the post
70          * @param time
71          *            The time of the post (in milliseconds since Jan 1, 1970 UTC)
72          * @param text
73          *            The text of the post
74          */
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);
79                 this.soneId = soneId;
80                 this.recipientId = recipientId;
81                 this.time = time;
82                 this.text = text;
83         }
84
85         //
86         // ACCESSORS
87         //
88
89         /**
90          * {@inheritDoc}
91          */
92         @Override
93         public String getId() {
94                 return id.toString();
95         }
96
97         /**
98          * {@inheritDoc}
99          */
100         @Override
101         public Sone getSone() {
102                 return soneProvider.getSone(soneId).get();
103         }
104
105         /**
106          * {@inheritDocs}
107          */
108         @Override
109         public Optional<String> getRecipientId() {
110                 return Optional.fromNullable(recipientId);
111         }
112
113         /**
114          * {@inheritDoc}
115          */
116         @Override
117         public Optional<Sone> getRecipient() {
118                 return soneProvider.getSone(recipientId);
119         }
120
121         /**
122          * {@inheritDoc}
123          */
124         @Override
125         public long getTime() {
126                 return time;
127         }
128
129         /**
130          * {@inheritDoc}
131          */
132         @Override
133         public String getText() {
134                 return text;
135         }
136
137         /**
138          * {@inheritDoc}
139          */
140         @Override
141         public boolean isKnown() {
142                 return postDatabase.isPostKnown(this);
143         }
144
145         /**
146          * {@inheritDoc}
147          */
148         @Override
149         public MemoryPost setKnown(boolean known) {
150                 postDatabase.setPostKnown(this, known);
151                 return this;
152         }
153
154         //
155         // OBJECT METHODS
156         //
157
158         /**
159          * {@inheritDoc}
160          */
161         @Override
162         public int hashCode() {
163                 return id.hashCode();
164         }
165
166         /**
167          * {@inheritDoc}
168          */
169         @Override
170         public boolean equals(Object object) {
171                 if (!(object instanceof MemoryPost)) {
172                         return false;
173                 }
174                 MemoryPost post = (MemoryPost) object;
175                 return post.id.equals(id);
176         }
177
178         /**
179          * {@inheritDoc}
180          */
181         @Override
182         public String toString() {
183                 return String.format("%s[id=%s,sone=%s,recipient=%s,time=%d,text=%s]", getClass().getName(), id, soneId, recipientId, time, text);
184         }
185
186 }