Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Plugging the users in - extend your application with pluggable Groovy DSL

Plugging the users in - extend your application with pluggable Groovy DSL

t is often beneficial to allow users extend your software with their own logic. With the rise of dynamic languages on the JVM it is also much more easier to do than ever before. In this session we will share our experience in creating Groovy authored user plugins interface.

After a brief introduction to domain specific languages (DSLs), their relevance to user plugins and how they can be easily implemented in Groovy, we’ll look at more user-friendly, but developer-challenging type of DSLs, which support plugins written both in Groovy or Java.

Good public API design is another very important aspect - while the APIs have to be broad enough to allow interesting functionality, internals should stay close to allow changes and further development. Exposing APIs to the world come with great responsibility - once ublished they can’t be changed without a price, so it is important keep backwards compatibility in mind.

Another very important aspect is security - you let strangers into your chambers, and you better be ready. Leveraging security mechanisms is essential to establish proper sandboxing and protect your application from malicious or faulty plugins.

Finally, we will cover another very important and nontrivial aspect of user plugins exposure - the classpath isolation when your plugins require dependencies. We will compare different solutions like establishing classpath hierarchies, OSGi, JBoss modules and the long-awaited Project Jigsaw.

Baruch Sadogursky

September 12, 2013
Tweet

More Decks by Baruch Sadogursky

Other Decks in Technology

Transcript

  1. © 2013 SpringOne 2GX. All rights reserved. Do not distribute

    without permission. Plugging the users in extend your application with pluggable Groovy DSL
  2. – scheduled tasks – Custom security realms – Change resolution

    rules – Manipulate downloaded content – Listeners on storage events
  3. – Custom security realms – Change resolution rules – Manipulate

    downloaded content – Listeners on storage events – searches
  4. – Change resolution rules – Manipulate downloaded content – Listeners

    on storage events – searches – New rest commands
  5. – Manipulate downloaded content – Listeners on storage events –

    searches – New rest commands – Custom promotions
  6. – Listeners on storage events – searches – New rest

    commands – Custom promotions – Deploy and query artifacts and metadata
  7. <3

  8. Parse groovy scripts Create closure objects Cast to SAM Find

    SAMs in classpath SAMs map Cast to Closure Execute
  9. Public API Design –Papi is contract –Maintain backwards compatibility at

    all costs – Breaking API might crash the server! _____________
  10. Public API Design –Papi is contract –Maintain backwards compatibility at

    all costs – Breaking API might crash the server! – Start small _____________
  11. Public API Design –Maintain backwards compatibility at all costs –

    Breaking API might crash the server! – Start small – Listen to users _____________
  12. Public API Design compatibility at all costs – Breaking API

    might crash the server! – Start small – Listen to users – Fluent API is your friend _____________
  13. Public API Design – Breaking API might crash the server!

    – Start small – Listen to users – Fluent API is your friend – Strong Java Types, compatibility _____________
  14. The conflict – Need to access Artifactory jars (PAPI) –

    Need to be isolated from Artifactory jars (3rd party) __________
  15. We’ll do it ourselves! 1. Pull up what’s common 2.

    isolate the rest ________________
  16. We’ll do it ourselves! 1. Pull up what’s common 2.

    isolate the rest ________________