🚚 Move shells closer to the interfaces
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / database / memory / MemoryPostReply.kt
1 /*
2  * Sone - MemoryPostReply.kt - Copyright Â© 2013–2020 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 package net.pterodactylus.sone.database.memory
18
19 import com.google.common.base.Optional
20 import net.pterodactylus.sone.data.Post
21 import net.pterodactylus.sone.data.PostReply
22 import net.pterodactylus.sone.data.PostReplyShell
23 import net.pterodactylus.sone.database.PostReplyBuilder
24 import net.pterodactylus.sone.database.SoneProvider
25 import net.pterodactylus.sone.utils.asOptional
26
27 /**
28  * Memory-based [PostReply] implementation.
29  */
30 class MemoryPostReply(
31                 private val database: MemoryDatabase,
32                 private val soneProvider: SoneProvider,
33                 override val id: String,
34                 private val soneId: String,
35                 private val time: Long,
36                 private val text: String,
37                 private val postId: String) : PostReply {
38
39         override fun getSone() = soneProvider.getSone(soneId)!!
40
41         override fun getTime() = time
42
43         override fun getText() = text
44
45         override fun isKnown() = database.isPostReplyKnown(this)
46
47         override fun getPostId() = postId
48
49         override fun getPost(): Optional<Post> = database.getPost(postId).asOptional()
50
51         override fun hashCode() = id.hashCode()
52
53         override fun equals(other: Any?): Boolean {
54                 if (other !is MemoryPostReply) {
55                         return false
56                 }
57                 return other.id == id
58         }
59
60         override fun toString(): String {
61                 return "MemoryPostReply{" +
62                                 "database=" + database +
63                                 ", soneProvider=" + soneProvider +
64                                 ", id='" + id + '\'' +
65                                 ", soneId='" + soneId + '\'' +
66                                 ", time=" + time +
67                                 ", text='" + text + '\'' +
68                                 ", postId='" + postId + '\'' +
69                                 '}'
70         }
71
72 }