1
1
package org.xmtp.android.library.codecs
2
2
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
5
5
6
6
val ContentTypeReply = ContentTypeIdBuilder .builderFromAuthorityId(
7
7
" xmtp.org" ,
@@ -19,16 +19,42 @@ data class Reply(
19
19
data class ReplyCodec (override var contentType : ContentTypeId = ContentTypeReply ) :
20
20
ContentCodec <Reply > {
21
21
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
+
24
25
return EncodedContent .newBuilder().also {
25
26
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()
27
30
}.build()
28
31
}
29
32
30
33
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
+ }
33
59
}
34
60
}
0 commit comments