Accessing a database in domain objects is a code smell. Doing it in a constructor is a double smell
TL;DR: Constructors should construct (and probably initialize) objects.
Problems
Side Effects
Solutions
Decouple essential business logic from accidental persistence
On persistence classes run queries in functions other than constructors/destructors
Context
On legacy code, the database is not correctly separated from business objects.
Constructors should never have side effects.
According to the single responsibility principle, they should only build valid objects
Sample Code
Wrong
public class Person {
int childrenCount;
public Person(int id) {
childrenCount = database.sqlCall("SELECT COUNT(CHILDREN) FROM PERSON WHERE ID = " . id);
}
}
Right
public class Person {
int childrenCount;
// Create a class constructor for the Main class
public Person(int id, int childrenCount) {
childrenCount = childrenCount;
// We can assign the number in the constructor
// Accidental Database is decoupled
// We can test the object
}
}
Detection
[X] Semi-Automatic
Our linterns can find SQL patterns on constructors and warn us.
Tags
- Coupling
Conclusion
Separation of concerns is key and coupling is our main enemy when designing robust software.
More Info
Credits
Photo by Callum Hill on Unsplash
My belief is still, if you get the data structures and their invariants right, most of the code will kind of write itself.
Peter Deustch
Software Engineering Great Quotes
Maxi Contieri ・ Dec 28 '20
This article is part of the CodeSmell Series.
Top comments (0)