Skip to content

Commit 33d9d2a

Browse files
authored
Fix the way Reply Codecs work (#99)
* add api client with grpc kotlin * fix up the way reply codec is sent * fix up lint spacing
1 parent 74a3299 commit 33d9d2a

File tree

2 files changed

+42
-7
lines changed

2 files changed

+42
-7
lines changed

library/src/main/java/org/xmtp/android/library/CodecRegistry.kt

+9
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,13 @@ data class CodecRegistry(val codecs: MutableMap<String, ContentCodec<*>> = mutab
2020
}
2121
return TextCodec()
2222
}
23+
24+
fun findFromId(contentTypeString: String): ContentCodec<*> {
25+
for ((_, codec) in codecs) {
26+
if (codec.contentType.id == contentTypeString) {
27+
return codec
28+
}
29+
}
30+
return TextCodec()
31+
}
2332
}

library/src/main/java/org/xmtp/android/library/codecs/ReplyCodec.kt

+33-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package org.xmtp.android.library.codecs
22

3-
import com.google.gson.GsonBuilder
4-
import com.google.protobuf.kotlin.toByteStringUtf8
3+
import org.xmtp.android.library.Client
4+
import org.xmtp.android.library.XMTPException
55

66
val ContentTypeReply = ContentTypeIdBuilder.builderFromAuthorityId(
77
"xmtp.org",
@@ -19,16 +19,42 @@ data class Reply(
1919
data class ReplyCodec(override var contentType: ContentTypeId = ContentTypeReply) :
2020
ContentCodec<Reply> {
2121

22-
override fun encode(content: Reply): EncodedContent {
23-
val gson = GsonBuilder().create()
22+
override fun encode(reply: Reply): EncodedContent {
23+
val replyCodec = Client.codecRegistry.find(reply.contentType)
24+
2425
return EncodedContent.newBuilder().also {
2526
it.type = ContentTypeReply
26-
it.content = gson.toJson(content).toByteStringUtf8()
27+
it.putParameters("contentType", reply.contentType.id)
28+
it.putParameters("reference", reply.reference)
29+
it.content = encodeReply(replyCodec, reply.content).toByteString()
2730
}.build()
2831
}
2932

3033
override fun decode(content: EncodedContent): Reply {
31-
val gson = GsonBuilder().create()
32-
return gson.fromJson(content.content.toStringUtf8(), Reply::class.java)
34+
val contentTypeIdString =
35+
content.getParametersOrThrow("contentType") ?: throw XMTPException("Codec Not Found")
36+
val reference =
37+
content.getParametersOrThrow("reference") ?: throw XMTPException("Invalid Content")
38+
val replyEncodedContent = EncodedContent.parseFrom(content.content)
39+
val replyCodec = Client.codecRegistry.findFromId(contentTypeIdString)
40+
val replyContent = replyCodec.decode(content = replyEncodedContent)
41+
?: throw XMTPException("Invalid Content")
42+
return Reply(
43+
reference = reference,
44+
content = replyContent,
45+
contentType = replyCodec.contentType
46+
)
47+
}
48+
49+
private fun <Codec : ContentCodec<T>, T> encodeReply(
50+
codec: Codec,
51+
content: Any,
52+
): EncodedContent {
53+
val reply = content as? T
54+
if (reply != null) {
55+
return codec.encode(content = reply)
56+
} else {
57+
throw XMTPException("Invalid Content")
58+
}
3359
}
3460
}

0 commit comments

Comments
 (0)