Move memory post reply builder to its own file.
[Sone.git] / src / main / java / net / pterodactylus / sone / database / memory / MemoryPostReplyBuilder.java
diff --git a/src/main/java/net/pterodactylus/sone/database/memory/MemoryPostReplyBuilder.java b/src/main/java/net/pterodactylus/sone/database/memory/MemoryPostReplyBuilder.java
new file mode 100644 (file)
index 0000000..32ab1e0
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+ * Sone - MemoryPostReplyBuilder.java - Copyright © 2013 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
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.sone.database.memory;
+
+import java.util.UUID;
+
+import net.pterodactylus.sone.data.PostReply;
+import net.pterodactylus.sone.data.impl.AbstractPostReplyBuilder;
+import net.pterodactylus.sone.database.PostReplyBuilder;
+import net.pterodactylus.sone.database.SoneProvider;
+
+/**
+ * {@link PostReplyBuilder} implementation that creates {@link MemoryPostReply}
+ * objects.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+class MemoryPostReplyBuilder extends AbstractPostReplyBuilder {
+
+       /** The database. */
+       private final MemoryDatabase database;
+
+       /** The Sone provider. */
+       private final SoneProvider soneProvider;
+
+       /**
+        * Creates a new {@link MemoryPostReply} builder.
+        *
+        * @param database
+        *            The database
+        * @param soneProvider
+        *            The Sone provider
+        */
+       public MemoryPostReplyBuilder(MemoryDatabase database, SoneProvider soneProvider) {
+               this.database = database;
+               this.soneProvider = soneProvider;
+       }
+
+       /**
+        * {@inheritDocs}
+        */
+       @Override
+       public PostReply build() throws IllegalStateException {
+               validate();
+
+               PostReply postReply = new MemoryPostReply(database, soneProvider, randomId ? UUID.randomUUID().toString() : id, senderId, currentTime ? System.currentTimeMillis() : time, text, postId);
+               postReply.setKnown(database.isPostReplyKnown(postReply));
+               return postReply;
+       }
+
+}