Kotlin Code Smell 7 - Long Chains Of Collaborations
Decoupling Collaborations: Ensuring Code Stability through Reduced Chains and Better Encapsulation

I've started to work as a software engineer at 2014, however, I started to write code at high-school.
My first language was Assembly, but still, I fall in love with the possibilities to make the computer to do as you wish, shortly after that I started to write in C.
Later on I studied a practical engineering in electricity, and during this time discovered that I preferred much more writing code than design electrical components.
As a result of this understanding I decided to switch and study bachelor degree in computer science in Reichman university, where the focus was of the Java language.
Today I'm working at SumUp using Kotlin, SpringBoot & Micronaut, Cassandra and Kafka
TL;DR: Long chains of collaborations generate coupling and ripple effect, where any change in the chain breaks the code.
Problems
Coupling
Break encapsulation
Solutions
Create intermediate methods.
Consider the Law of Demeter.
Create higher-level messages.
Sample Code
Wrong
class Dog(val feet: Array<Foot>) {
}
class Foot {
fun move(): Unit = TODO()
}
fun main() {
val feet = arrayOf(Foot(), Foot(), Foot(), Foot())
val dog = Dog(feet)
for(foot in dog.feet) {
foot.move()
}
}
Right
// We're copying the reference of the array, so in theory, it can still
// be changed from outside, which is yet another code smell. A better
// approach would be to create a copy of the array inside the class
// instead of holding the reference.
class Dog(private val feet: Array<Foot>) {
fun walk() {
for(foot in feet) {
foot.move()
}
}
}
class Foot {
fun move(): Unit = TODO()
}
fun main() {
val feet = arrayOf(Foot(), Foot(), Foot(), Foot())
val dog = Dog(feet)
dog.walk()
}
Conclusion
Avoid successive message calls. Try to hide the intermediate collaborations and create new protocols. This way, not only will you protect your code from breaking in the future, but you will also maintain good encapsulation of your class.




