13 def dynamicMethods = [[regex:"hasPermission(.*)", method:this.&hasPermission], 14 [regex:"create(.*)Permission", method:this.&createPermission]]
En este caso estamos convirtiendo el método hasPermission() y createPermission() en un closure y pasandoselo a un mapa, el metodo puede ser llamado como se muestra en la línea 21.
17 def methodMissing(String name, args) { 18 | def method = dynamicMethods.find { name =~ it.regex} 19 | if(method) { 20 | | def match = name =~ method.regex 21 | | return method.method(match[0][1], * args) 22 | } else 23 | | throw new MissingMethodException(name, DemoDynamic , args) 24 } 25 26 }
Ocupando una expresión regular y methodMissing podemos mandar a llamar dinámicamente el método que vive en el mapa.
32 assert demo.hasPermissionHgmiguel("write") 33 assert !demo.hasPermissionOtros("write")
Dejo un Gist como ejemplo de lo que quiero explicar:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DemoDynamic { | |
Map<String, List<String>> permissions = [:] | |
Boolean hasPermission(String name, String permission){ | |
permission in permissions?."$name" | |
} | |
Map createPermission(String name, List<String> permissions) { | |
this.permissions?."$name" = permissions | |
this.permissions | |
} | |
def dynamicMethods = [[regex:"hasPermission(.*)", method:this.&hasPermission], | |
[regex:"create(.*)Permission", method:this.&createPermission]] | |
def methodMissing(String name, args) { | |
def method = dynamicMethods.find { name =~ it.regex} | |
if(method) { | |
def match = name =~ method.regex | |
return method.method(match[0][1], * args) | |
} else | |
throw new MissingMethodException(name, DemoDynamic , args) | |
} | |
} | |
demo = new DemoDynamic() | |
demo.createHgmiguelPermission(["write","read"]) | |
demo.createOtrosPermission(["read"]) | |
assert demo.hasPermissionHgmiguel("write") | |
assert !demo.hasPermissionOtros("write") |
No hay comentarios.:
Publicar un comentario