일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 테마 아이콘
- searchview
- recyclerview
- Error:Execution failed for task ':app:mergeDebugResources'
- binding adapter
- espresso
- ui test
- 구분선
- adapter
- viewholder
- 스와이프
- high order function
- 코틀린
- Fragment에서 Activity의 함수 사용하기
- LayoutManger
- 코딜리티
- Android
- ActivityTestRule
- 뷰변경 감지
- fragment
- 안드로이드개발레벨업교과서
- 리사이클러뷰
- 고차함수
- 안드로이드13
- IntentTestRule
- 생명주기
- 안드로이드스튜디오
- 재사용
- 안드로이드
- Fragment 수동 추가
Archives
- Today
- Total
룬아님의 취중코딩
여러 유형의 Response type을 Gson를 이용하여 Sealed Class로 받기 본문
"attach" : {
"type" : "image"
"imageUrl" : "string"
}
"attach" : {
"type" : "video"
"videoUrl" : "string"
"size" : 0
}
이런 형태의 Json으로 type에 따라 다른 parameter가 내려올 때
data class Attach(
val type: AttachType,
val imageUrl: String?,
val videoUrl: Stirng?,
val size: Int?
}
이런 방법으로 전부 nullable을 이용하여 받아오는 방법이 있을 것이다.
다만 사용하지 않는 파라미터까지 모두 가지고 있는 객체와 이후 받아야 하는 파라미터가 더 많아 진다면 더 복잡하고 거대하여 어떤 역할을 하는지 알아보기도 힘들게 될 것이다.
그래서 Gson의 JsonDeserializer와 Kotlin reflection을 이용하여 type을 판단하여 적절한 class로 변환해주는 방법을 이용해 보았다.
sealed class Attach {
data class Video(
val videoUrl: String,
val size: Int
) : Attach()
data class Image(
val imageUrl: String
) : Attach()
}
우선 type에 따라 class를 만들고
private object AttachDeserializer : JsonDeserializer<Attach> {
override fun deserialize(json: JsonElement, typeOfT: Type, context: JsonDeserializationContext): Attach {
val type = json.asJsonObject.get("type").asString
val item = Attach::class.sealedSubclasses.find {
it.simpleName == type.split('_').joinToString("", transform = String::capitalize)
}
return context.deserialize(json, item?.java)
}
}
받아온 type을 Camel case 형태로 바꾸어 Attach의 sealedSubclasses와 같은 네이밍인지 판다하여 같다면 해당 객체로 deserialize해주는 JsonDeserializer을 구현하였다.
@JsonAdapter(AttachDeserializer::class)
sealed class Attach {
JsonAdapter 어노테이션을 이용하여 해당 JsonDeserializer와 연결을 해주면 데이터를 가져올 때 알아서 해당 객체를 deserialize하여 가져오게 된다.
type을 이용하여 단순히 클래스 네임과 비교하는 부분과 코틀린 리플랙션을 사용하는 부분에서 더 나은 방법이 있을지 고민중이며 더 좋은 아이디어나 방법이 있다면 공유 부탁드립니다.
반응형
'개발 > 안드로이드 개발' 카테고리의 다른 글
Hilt 사용시에 Context 이슈 (0) | 2023.05.03 |
---|---|
Android12 Splash Screen 로고 지우기 (0) | 2023.04.28 |
IllegalStateException : Detected inconsistent adapter updates. (0) | 2023.04.10 |
Android 13 Notification permission 분기 (0) | 2023.03.29 |
(Compose) Text의 자간이 넓어 보일 때 (0) | 2023.03.24 |
Comments