Skip to content

Commit 31d61d7

Browse files
authored
Support adding Expose Annotation for Gson by new Extension (#366)
* Create 3.7.2 branch * Add Gson Expose annotation support * Add Gson Expose annotation support
1 parent f1f50ec commit 31d61d7

File tree

6 files changed

+96
-16
lines changed

6 files changed

+96
-16
lines changed

build.gradle.kts

+1-12
Original file line numberDiff line numberDiff line change
@@ -77,18 +77,7 @@ changelog {
7777
excludeLabels = listOf("duplicate", "invalid", "question", "wontfix")
7878
sinceTag = "V3.0.0"
7979
skipTags = listOf(
80-
"v3.2.0-EAP",
81-
"3.3.0-EAP",
82-
"3.3.0-EAP-2",
83-
"3.4.0-EAP",
84-
"3.4.0-EAP-2",
85-
"3.5.0-EAP",
86-
"3.5.1-EAP",
87-
"3.6.0-EAP",
88-
"3.6.0-EAP-2",
89-
"3.7.0-EAP",
90-
"3.7.0-EAP-2",
91-
"3.7.0-EAP-3"
80+
9281
)
9382
useMilestoneAsTag = true
9483
timezone = DEFAULT_TIMEZONE

src/main/kotlin/extensions/Extension.kt

+12-1
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,30 @@ abstract class Extension : IImportClassDeclarationInterceptor, IKotlinClassInter
4545
return originClassImportDeclaration
4646
}
4747

48+
@Deprecated("Please use val testHelper")
49+
@JvmName("getTestHelperForJVM")
4850
fun getTestHelper() = TestHelper(this)
4951

52+
val testHelper = TestHelper(this)
5053
/**
5154
* Test helper for test config settings
5255
*/
5356
class TestHelper(private val extension: Extension) {
5457

5558
fun setConfig(key: String, value: String) {
56-
extension.setConfig(key,value)
59+
extension.setConfig(key, value)
5760
}
5861

5962
fun getConfig(key: String): String {
6063
return extension.getConfig(key)
6164
}
6265
}
66+
67+
/**
68+
* val configKey = "xxConfig"
69+
*
70+
* val configBooleanValue = configKey.booleanConfig()
71+
*/
72+
protected val String.booleanConfigValue: Boolean
73+
get() = getConfig(this).toBoolean()
6374
}

src/main/kotlin/extensions/ExtensionsCollector.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ object ExtensionsCollector {
3535
CamelCaseSupport,
3636
BuildFromJsonObjectSupport,
3737
NeedNonNullableClassesSupport,
38-
InternalModifierSupport
38+
InternalModifierSupport,
39+
AddGsonExposeAnnotation,
3940
)
4041
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
package extensions.wu.seal
2+
3+
import com.google.gson.annotations.Expose
4+
import extensions.Extension
5+
import wu.seal.jsontokotlin.model.classscodestruct.Annotation
6+
import wu.seal.jsontokotlin.model.classscodestruct.DataClass
7+
import wu.seal.jsontokotlin.model.classscodestruct.KotlinClass
8+
import wu.seal.jsontokotlin.ui.addSelectListener
9+
import wu.seal.jsontokotlin.ui.jCheckBox
10+
import wu.seal.jsontokotlin.ui.jHorizontalLinearLayout
11+
import javax.swing.JPanel
12+
13+
object AddGsonExposeAnnotation : Extension() {
14+
15+
@Expose
16+
val config_key = "wu.seal.add_gson_expose_annotation"
17+
18+
override fun createUI(): JPanel {
19+
return jHorizontalLinearLayout {
20+
jCheckBox("Add Gson Expose Annotation", config_key.booleanConfigValue) {
21+
addSelectListener { setConfig(config_key, it.toString()) }
22+
}
23+
fillSpace()
24+
}
25+
}
26+
27+
override fun intercept(kotlinClass: KotlinClass): KotlinClass {
28+
return if (config_key.booleanConfigValue) {
29+
if (kotlinClass is DataClass) {
30+
val newProperties = kotlinClass.properties.map {
31+
val newAnnotations = it.annotations + Annotation.fromAnnotationString("@Expose")
32+
it.copy(annotations = newAnnotations)
33+
}
34+
kotlinClass.copy(properties = newProperties)
35+
} else kotlinClass
36+
} else kotlinClass
37+
}
38+
39+
override fun intercept(originClassImportDeclaration: String): String {
40+
return if (config_key.booleanConfigValue) {
41+
originClassImportDeclaration.append("import com.google.gson.annotations.Expose")
42+
} else originClassImportDeclaration
43+
}
44+
}

src/main/kotlin/wu/seal/jsontokotlin/ui/UIDSLV2.kt

+6-2
Original file line numberDiff line numberDiff line change
@@ -172,18 +172,22 @@ fun Any.jTextInput(
172172
fun Any.jCheckBox(
173173
text: String,
174174
initValue: Boolean = false,
175-
actionListener: (isSelected: Boolean) -> Unit,
175+
selectListener: (isSelected: Boolean) -> Unit = {},
176176
init: JBCheckBox.() -> Unit = {}
177177
): JCheckBox {
178178
val jCheckBox = JBCheckBox(text, initValue)
179179
jCheckBox.addActionListener {
180-
actionListener.invoke(jCheckBox.isSelected)
180+
selectListener.invoke(jCheckBox.isSelected)
181181
}
182182
jCheckBox.init()
183183
checkAddView(this, jCheckBox)
184184
return jCheckBox
185185
}
186186

187+
fun JCheckBox.addSelectListener(selectListener: (isSelected: Boolean) -> Unit) = addActionListener {
188+
selectListener.invoke(isSelected)
189+
}
190+
187191

188192
/**
189193
* generate a scrollable component
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package extensions.wu.seal
2+
3+
import com.winterbe.expekt.should
4+
import org.junit.Test
5+
6+
import org.junit.Assert.*
7+
import wu.seal.jsontokotlin.generateKotlinClass
8+
import wu.seal.jsontokotlin.utils.BaseTest
9+
10+
class AddGsonExposeAnnotationTest : BaseTest() {
11+
private val json = """{"a":1}"""
12+
13+
val expected = """
14+
data class Test(
15+
@Expose
16+
val a: Int // 1
17+
)
18+
""".trimIndent()
19+
@Test
20+
fun intercept() {
21+
AddGsonExposeAnnotation.testHelper.setConfig(AddGsonExposeAnnotation.config_key, true.toString())
22+
val result = json.generateKotlinClass().applyInterceptor(AddGsonExposeAnnotation).getCode()
23+
result.should.be.equal(expected)
24+
}
25+
26+
@Test
27+
fun testIntercept() {
28+
AddGsonExposeAnnotation.testHelper.setConfig(AddGsonExposeAnnotation.config_key, true.toString())
29+
AddGsonExposeAnnotation.intercept("").should.equal("\nimport com.google.gson.annotations.Expose")
30+
}
31+
}

0 commit comments

Comments
 (0)