Skip to content

Instantly share code, notes, and snippets.

@brunkb
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunkb/dd874c14be8baf32d256 to your computer and use it in GitHub Desktop.
Save brunkb/dd874c14be8baf32d256 to your computer and use it in GitHub Desktop.
Solving Tricky Problems With the Help of Groovy Closures
class InventorySystem {
boolean open(String token) {
// open a socket connection to some back-end mainframe system
println "opening connection to mainframe, token: ${token}"
true
}
BigDecimal pricingLookup(String clientId, String itemUuid)
{
// call the back end system to get the price of an item for a particular client
// send back a mock price as the result:
100.00
}
boolean close() {
// close the socket connection
println "closing connection to mainframe"
}
}
class AuthenticationProvider {
String authenticateUser(String username, String password) {
"validToken"
}
}
class InventoryApiConnectionFactory {
// these properties would ordinarily be injected
def authenticationProvider = new AuthenticationProvider()
String username = "username"
String password = "password"
def logError(String msg) { println msg } // simulated logger
def withInventoryConnection(Closure c) {
def authenticatedUserToken = authenticationProvider.authenticateUser(username, password)
def connection = new InventorySystem()
def isOpen = connection.open(authenticatedUserToken)
try {
if(isOpen) {
c.call(connection)
}
} catch (any) {
logError("Something went wrong: ${any.message}".toString())
throw any
} finally {
connection.close()
}
}
}
class PricingService {
// would be injected
InventoryApiConnectionFactory fac = new InventoryApiConnectionFactory()
def priceLookup(String clientId, String itemUUID) {
fac.withInventoryConnection { connection ->
connection.pricingLookup(clientId, itemUUID)
}
}
}
PricingService ps = new PricingService()
println ps.priceLookup("client1", "item-11-22-33")
@brunkb
Copy link
Author

brunkb commented Jan 6, 2015

InventoryApiConnectionFactory.withInventoryConnection takes a closure as an argument and manages the full lifecycle of the legacy mainframe connection while executing any method exposed by InventorySystem, in this case, pricingLookup. Generally, there would be a corpus of methods to choose from that execute against the back-end system that someone wrote an API for.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment