0f2969a9a1234fa17504a5e10d274bfeede999d2
[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.database.SoneProvider
23 import net.pterodactylus.sone.utils.asOptional
24
25 /**
26  * Memory-based [PostReply] implementation.
27  */
28 class MemoryPostReply(
29                 private val database: MemoryDatabase,
30                 private val soneProvider: SoneProvider,
31                 override val id: String,
32                 private val soneId: String,
33                 private val time: Long,
34                 private val text: String,
35                 private val postId: String) : PostReply {
36
37         override fun getSone() = soneProvider.getSone(soneId)!!
38
39         override fun getTime() = time
40
41         override fun getText() = text
42
43         override fun isKnown() = database.isPostReplyKnown(this)
44
45         override fun getPostId() = postId
46
47         override fun getPost(): Optional<Post> = database.getPost(postId).asOptional()
48
49         override fun hashCode() = id.hashCode()
50
51         override fun equals(other: Any?): Boolean {
52                 if (other !is MemoryPostReply) {
53                         return false
54                 }
55                 return other.id == id
56         }
57
58         override fun toString(): String {
59                 return "MemoryPostReply{" +
60                                 "database=" + database +
61                                 ", soneProvider=" + soneProvider +
62                                 ", id='" + id + '\'' +
63                                 ", soneId='" + soneId + '\'' +
64                                 ", time=" + time +
65                                 ", text='" + text + '\'' +
66                                 ", postId='" + postId + '\'' +
67                                 '}'
68         }
69
70 }