Chapitre Méta-programming à l’exécution Les DSL en Groovy {{ resumeCollapse ? '-' : '+' }} Résumé Cette leçon présente les bases de fonctionnement d'un DSL en Groovy Dernière modification : Dec 08 , 2024 {{ !slideMode ? "Passer en mode diapositive" : "Passer en mode lecture" }} Les DSL en Groovy Created by Sylvain Leroy ## DSL : Domain specific language ou langage dédié Langage (de programmation) créé pour répondre à un besoin métier. ```language-groovy // equivalent to: turn(left).then(right) turn left then right // equivalent to: take(2.pills).of(chloroquinine).after(6.hours) take 2.pills of chloroquinine after 6.hours // equivalent to: paint(wall).with(red, green).and(yellow) paint wall with red, green and yellow // with named parameters too // equivalent to: check(that: margarita).tastes(good) check that: margarita tastes good // with closures as parameters // equivalent to: given({}).when({}).then({}) given { } when { } then { } ``` ### Pourquoi étudier le sujet ? Les scripts Gradle qui sont écrits en Groovy sont un DSL. C'est à dire que l'utilisateur de Gradle écrit des scripts dans un langage spécialisé pour l'écritrure de scripts de builds reposant sur Groovy. ```language-gradle group 'com.acme' dependencies { implementation 'com.acme:example:1.0' } ``` ## Syntaxe Gradle et DSL Groovy | Block | Description | |--------------------|--------------------------------------------------------------------| | `allprojects { }` | Configures this project and each of its sub-projects. | | `artifacts { }` | Configures the published artifacts for this project. | | `buildscript { }` | Configures the build script classpath for this project. | | `configurations { }` | Configures the dependency configurations for this project. | | `dependencies { }` | Configures the dependencies for this project. | | `repositories { }` | Configures the repositories for this project. | | `sourceSets { }` | Configures the source sets of this project. | | `subprojects { }` | Configures the sub-projects of this project. | | `publishing { }` | Configures the PublishingExtension added by the publishing plugin. | ``` ## Magie Groovy ```language-gradle dependencies { // Method call without closure configurationName dependencyNotation } dependencies { // Method call with closure (equivalent) configurationName(dependencyNotation){ configStatement1 configStatement2 } } ``` ## Méthodes appelées ```language-java // Configures the dependencies for this project. void dependencies(Closure configureClosure) /** Adds a dependency to the given configuration. Parameters: configurationName - The name of the configuration. dependencyNotation - The dependency notation, in one of the notations described above. Returns: The dependency. */ @Nullable Dependency add(String configurationName, Object dependencyNotation) { } ``` ## DSL Groovy utilisant des Maps ```language-groovy // Création d'une closure affiche = { println it } racine_carre = { Math.sqrt(it) } def svp(action) { [la: { what -> [de: { n -> action(what(n)) }] }] } // Syntaxe équivalente à svp(affiche).la(racine_carre).de(100) svp affiche la racine_carre de 100 // ==> 10.0 ``` ## Extension des types primitifs avec de nouveaux comportements ```language-groovy use(TimeCategory) { println 1.minute.from.now println 10.hours.ago def someDate = new Date() println someDate - 3.months } ``` # Fin de la leçon Les DSL en Groovy Created by Sylvain Leroy ## DSL : Domain specific language ou langage dédié Langage (de programmation) créé pour répondre à un besoin métier. ```language-groovy // equivalent to: turn(left).then(right) turn left then right // equivalent to: take(2.pills).of(chloroquinine).after(6.hours) take 2.pills of chloroquinine after 6.hours // equivalent to: paint(wall).with(red, green).and(yellow) paint wall with red, green and yellow // with named parameters too // equivalent to: check(that: margarita).tastes(good) check that: margarita tastes good // with closures as parameters // equivalent to: given({}).when({}).then({}) given { } when { } then { } ``` ### Pourquoi étudier le sujet ? Les scripts Gradle qui sont écrits en Groovy sont un DSL. C'est à dire que l'utilisateur de Gradle écrit des scripts dans un langage spécialisé pour l'écritrure de scripts de builds reposant sur Groovy. ```language-gradle group 'com.acme' dependencies { implementation 'com.acme:example:1.0' } ``` ## Syntaxe Gradle et DSL Groovy | Block | Description | |--------------------|--------------------------------------------------------------------| | `allprojects { }` | Configures this project and each of its sub-projects. | | `artifacts { }` | Configures the published artifacts for this project. | | `buildscript { }` | Configures the build script classpath for this project. | | `configurations { }` | Configures the dependency configurations for this project. | | `dependencies { }` | Configures the dependencies for this project. | | `repositories { }` | Configures the repositories for this project. | | `sourceSets { }` | Configures the source sets of this project. | | `subprojects { }` | Configures the sub-projects of this project. | | `publishing { }` | Configures the PublishingExtension added by the publishing plugin. | ``` ## Magie Groovy ```language-gradle dependencies { // Method call without closure configurationName dependencyNotation } dependencies { // Method call with closure (equivalent) configurationName(dependencyNotation){ configStatement1 configStatement2 } } ``` ## Méthodes appelées ```language-java // Configures the dependencies for this project. void dependencies(Closure configureClosure) /** Adds a dependency to the given configuration. Parameters: configurationName - The name of the configuration. dependencyNotation - The dependency notation, in one of the notations described above. Returns: The dependency. */ @Nullable Dependency add(String configurationName, Object dependencyNotation) { } ``` ## DSL Groovy utilisant des Maps ```language-groovy // Création d'une closure affiche = { println it } racine_carre = { Math.sqrt(it) } def svp(action) { [la: { what -> [de: { n -> action(what(n)) }] }] } // Syntaxe équivalente à svp(affiche).la(racine_carre).de(100) svp affiche la racine_carre de 100 // ==> 10.0 ``` ## Extension des types primitifs avec de nouveaux comportements ```language-groovy use(TimeCategory) { println 1.minute.from.now println 10.hours.ago def someDate = new Date() println someDate - 3.months } ``` # Fin de la leçon Slideshow Aperçu Retour au chapitre Prochaine leçon Please enable JavaScript to view the comments powered by Disqus.