Skip to content

Commit 55fa39b

Browse files
authoredJul 19, 2017
Added Serialization DSL description
1 parent 0b0e6b3 commit 55fa39b

File tree

1 file changed

+116
-0
lines changed

1 file changed

+116
-0
lines changed
 

‎README.md

+116
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,119 @@ store.project(registeredUsers).thenApply { println("$it.name is active.") }
6262

6363
// prints Raimo is active
6464
```
65+
66+
## Serialization DSL
67+
68+
### Default behaviour
69+
By default the constructor parameters of an event are assumed to be payload, meta information is empty and type is set to the full qualified name (FQN) of the underlying Java type.
70+
```Kotlin
71+
data class ColorChangedEvent(val timeStamp: Long, val oldColor: Color, val newColor: Color): DomainEvent {
72+
73+
private val serialized by lazy {
74+
serialization(this)
75+
}
76+
77+
override fun serialize(): SerializedDomainEvent = serialized
78+
79+
// companion object left out
80+
}
81+
82+
data class Color(val red: Byte, val green: Byte, val blue: Byte, val alpha: Byte)
83+
84+
val now = val now = LocalDateTime.now().toInstant(ZoneOffset.UTC).toEpochMilli()
85+
val colorChanged = ColorChangedEvent(now, Color(120,120,120,100), Color(120,120,120,50))
86+
val result = colorChanged.serialize()
87+
```
88+
89+
The type of `result` is `de.gtrefs.eventstore.ColorChangedEvent`, property `meta` is empty and property `payload` is a map with three entries:
90+
91+
```Kotlin
92+
result.payload == mapOf(
93+
"timeStamp" to now,
94+
"oldColor" to Color(120,120,120,100),
95+
"newColor" to Color(120,120,120,50)
96+
)
97+
```
98+
99+
### Instance access through `it`
100+
Within the `meta` and `payload` directives, the instance which should be translated is accessible throught `it`.
101+
```Kotlin
102+
val serialization = serialize<ColorChangedEvent> {
103+
payload {
104+
"oldColor" with it.oldColor
105+
"newColor" with it.newColor
106+
}
107+
}
108+
```
109+
110+
### Exclution and explicit parameters
111+
112+
Manipulating the translation is possible in two mutual exclusive ways. First, parameters can be excluded from the translation. Second, key-value-pairs can be defined explicitly.
113+
```Kotlin
114+
// Excluding parameter timeStamp from the payload
115+
val serialization = serialize<ColorChangedEvent>{
116+
payload {
117+
without("timeStamp")
118+
}
119+
}
120+
121+
val serialized = serialization(colorChanged)
122+
123+
serialized.payload.keys == setOf("oldColor", "newColor")
124+
```
125+
Parameter `timeStamp` is removed from the translation. It is not in `meta` nor in `payload`. Property `payload` just contains `oldColor` and `newColor`.
126+
127+
A more imperative approach is to explicitly declare which key-value-pairs should be stored in the properties `meta` and `payload`.
128+
```Kotlin
129+
val serialization = serialize<ColorChangedEvent> {
130+
meta {
131+
"timeStamp" with it.timeStamp
132+
}
133+
payload {
134+
exclude("timeStamp")
135+
}
136+
}
137+
```
138+
In this case `meta` contains `timeStamp` and `payload` contains the `oldColor` and `newColor`. The `with` directive is used to declare the new pair.
139+
140+
**Note**: Being explicit has a higher precedence than exclusion. This means, if there are explicitly declared key-value-pairs, these pairs are used for serialization and `without` is ignored.
141+
``` Kotlin
142+
val serialization = serialize<ColorChangedEvent> {
143+
payload {
144+
without("timeStamp")
145+
"time" with it.timeStamp
146+
}
147+
}
148+
149+
val serialized = serialization(colorChanged)
150+
151+
serialized.payload == mapOf("time" to now)
152+
```
153+
It is a `IllegalArgumentException` to exclude and explicitly declare values with the same key and vice versa.
154+
```Kotlin
155+
it("explicit parameters cannot be excluded"){
156+
val serialization = serialize<ColorChangedEvent>{
157+
payload {
158+
"timeStamp" with it.timeStamp
159+
without("timeStamp")
160+
}
161+
}
162+
163+
assertFailsWith<IllegalArgumentException> {
164+
serialization(colorChanged)
165+
}
166+
}
167+
168+
it("excluded parameters cannot be added"){
169+
val serialization = serialize<ColorChangedEvent>{
170+
payload {
171+
without("timeStamp")
172+
"timeStamp" with it.timeStamp
173+
}
174+
}
175+
176+
assertFailsWith<IllegalArgumentException> {
177+
serialization(colorChanged)
178+
}
179+
}
180+
```

0 commit comments

Comments
 (0)
Please sign in to comment.