SlideShare a Scribd company logo
1 of 29
CRaSH
TH E SH EL L FOR TH E J AVA PL ATFOR M
S E P T E M B E R 2 0 1 3
@julienviet
@defrancea
www.exoplatform.com - Copyright 2012 eXo Platform 2
JULIEN VIET
− Contact
− julien@julienviet.com
− @julienviet
− http://github.com/vietj
− Open source for 10 years
− Official mission: deliver enterprise grade portal
server
− Marseille JUG Leader
− Involved in Java Community Process
www.exoplatform.com - Copyright 2012 eXo Platform 3
WHAT IS EXO PLATFORM?
eXo Platform is an open
source social collaboration
software solution designed
for the Enterprise.
It is full featured, standard
based, extensible and has
an amazing design.
eXo Platform is featured in
Gartner's Magic Quadrant
for Horizontal Portal
Products 2012 as a User
eXperience Platform.
www.exoplatform.com - Copyright 2012 eXo Platform 4
ALAIN DEFRANCE
− Contact
− defrancea@gmail.com
− @alaindefrance
− http://github.com/defrancea
− Open source for 3 years
− Contributed to open source projects like
Crash
− Marseille JUG Leader
www.exoplatform.com - Copyright 2012 eXo Platform 5
BITTITAN
− SAAS Products
− MigrationWiz: Email migration
− SMTPLogic: SMTP gateway
− UserActivation: Easy onboarding to Office365
− Our blog
− http://blog.bittitan.com
www.exoplatform.com - Copyright 2012 eXo Platform 6
CRASH PROJECT
− Latest stable 1.2
− Work in progress 1.3
− Licensed under LGPL
− Compatibility
− Java 6+
− Groovy 1.7+
www.exoplatform.com - Copyright 2012 eXo Platform 7
KEY CONCEPTS
− Command Line Interface for JVM
− Create easily and quickly commands
− Compose commands into pipelines
− Connectors provide local or remote access
www.exoplatform.com - Copyright 2012 eXo Platform 8
MODULAR DESIGN
− Core, connectors, plugins
− Only use what you need
− Memory
− Dependencies
www.exoplatform.com - Copyright 2012 eXo Platform 9
CONNECTORS
− Defines shell interactions
− Asynchronous design
− Implemented by
− System.in / System.out
− Telnet
− SSH
− Web
− Attach
www.exoplatform.com - Copyright 2012 eXo Platform 10
PLUGIN ARCHITECTURE
− Keep core small and lightweight
− New features without impacting core
− Current plugins
− Authentication: simple, jaas, key, crowd, …
− Languages: java, groovy, ruby, …
− Services: mail, cron, …
www.exoplatform.com - Copyright 2012 eXo Platform 11
USER INTERFACE
− Interactive Real-Eval-Print-Loop
− SSH asynchronous execution
− Cron based execution (1.3)
www.exoplatform.com - Copyright 2012 eXo Platform 12
POLYGLOT
− Leverage polyglot JVM ecosystem
− Groovy
− Commands
− REPL (1.3)
− Java
− Commands (1.3)
− Ruby work in progress
www.exoplatform.com - Copyright 2012 eXo Platform 13
EXECUTION MODES
− Standalone
− Attach to a running JVM
− Embedded
− Servlet listener
− Spring
− Guice
− Grails
− VisualVM
www.exoplatform.com - Copyright 2012 eXo Platform 14
BASE COMMANDS
− Covers JVM packages
− system
− jdbc
− jndi
− jmx
− Utilities: filter, sort, egrep, sleep
www.exoplatform.com - Copyright 2012 eXo Platform 15
STANDALONE DEMO
www.exoplatform.com - Copyright 2012 eXo Platform 16
JNDI/JDBC/JPA
ATTACH
DEMO
www.exoplatform.com - Copyright 2012 eXo Platform 17
WRITING A COMMAND
public class mycommand {
@Command
@Usage(“the command”)
public void main(
@Usage(“foo option”)
@Option(names=[ “foo”]) String foo,
@Usage(“command arguments”)
@Argument List<String> args) {
…
}
}
% mycommand –foo the_option value1 value2
www.exoplatform.com - Copyright 2012 eXo Platform 18
EMBEDDED
− Trivial to embed
− Programmatic
− Spring
− Guice
− Servlet listener
− Levels
− Embed
− Virtual file system
www.exoplatform.com - Copyright 2012 eXo Platform 19
EMBEDDED BY
www.exoplatform.com - Copyright 2012 eXo Platform 20
SPRING EMDEDDED
TWITTER COMMAND
DEMO
www.exoplatform.com - Copyright 2012 eXo Platform 21
GIT LIKE COMMAND
public class git {
@Command
public void add(…) {…}
@Command
public void commit(…) {…}
…
}
% git add .
% git commit –m “feature implemented”
www.exoplatform.com - Copyright 2012 eXo Platform 22
TYPES
− String, primitive types, enums
− Converter
− properties, jmx object name …
− Completer
− java.io.File
− system property name
− enums
− …
www.exoplatform.com - Copyright 2012 eXo Platform 23
COMMAND PIPE
jmx find
ObjectName Map
jmx get sort
www.exoplatform.com - Copyright 2012 eXo Platform 24
COMMAND PIPE
public class wc {
@Command
public PipeCommand<String, Integer>) main() {
return new PipeCommand<String, Integer>() {
int count = 0;
public void provide(String s) {
count += s.split(“n”).length;
}
public void close() {
context.provide(count);
}
}
}
}
www.exoplatform.com - Copyright 2012 eXo Platform 25
JMX PIPE
DEMO
www.exoplatform.com - Copyright 2012 eXo Platform 26
MAIL/CRON
DEMO
www.exoplatform.com - Copyright 2012 eXo Platform 27
READ-EVAL-PRINT-LOOP
− Feature of 1.3
− Polyglot
www.exoplatform.com - Copyright 2012 eXo Platform 28
REPL
DEMO
www.exoplatform.com - Copyright 2012 eXo Platform 29
WRAP UP
− A multi facet, powerful and extensible tool
for all of us
− Try online : try.crashub.org
− Reach us at
− crashub.org
− @crashub
− crash-users@googlegroups.com

More Related Content

Similar to CRaSH: the shell for the Java Platform

eXo Platform Company overview Oct 2012
eXo Platform Company overview Oct 2012eXo Platform Company overview Oct 2012
eXo Platform Company overview Oct 2012Yann Aubry
 
Java application server in the cloud
Java application server in the cloudJava application server in the cloud
Java application server in the cloudadm_exoplatform
 
JDK 9: The Start of a New Future for Java
JDK 9: The Start of a New Future for JavaJDK 9: The Start of a New Future for Java
JDK 9: The Start of a New Future for JavaSimon Ritter
 
Minko - Scripting 3D apps with Lua and C++
Minko - Scripting 3D apps with Lua and C++Minko - Scripting 3D apps with Lua and C++
Minko - Scripting 3D apps with Lua and C++Minko3D
 
An OpenShift Primer for Developers to get your Code into the Cloud (PTJUG)
An OpenShift Primer for Developers to get your Code into the Cloud (PTJUG)An OpenShift Primer for Developers to get your Code into the Cloud (PTJUG)
An OpenShift Primer for Developers to get your Code into the Cloud (PTJUG)Eric D. Schabell
 
Windows 8 Metro Apps
Windows 8 Metro AppsWindows 8 Metro Apps
Windows 8 Metro AppsSam Basu
 
Next Generation Portals : How OpenSocial Standard Adds Social to the Mix?
Next Generation Portals : How OpenSocial Standard Adds Social to the Mix? Next Generation Portals : How OpenSocial Standard Adds Social to the Mix?
Next Generation Portals : How OpenSocial Standard Adds Social to the Mix? Tugdual Grall
 
Integrating Backend Systems
Integrating Backend SystemsIntegrating Backend Systems
Integrating Backend Systemsconnectwebex
 
How to develop nice portlet with Juzu framework
How to develop nice portlet with Juzu frameworkHow to develop nice portlet with Juzu framework
How to develop nice portlet with Juzu frameworkNguyễn Tuyến
 
LavaJUG-Maven 3.x, will it lives up to its promises
LavaJUG-Maven 3.x, will it lives up to its promisesLavaJUG-Maven 3.x, will it lives up to its promises
LavaJUG-Maven 3.x, will it lives up to its promisesArnaud Héritier
 
Cross-Platform Mobile Development in Visual Studio
Cross-Platform Mobile Development in Visual StudioCross-Platform Mobile Development in Visual Studio
Cross-Platform Mobile Development in Visual Studiobryan costanich
 
Import golang; struct microservice
Import golang; struct microserviceImport golang; struct microservice
Import golang; struct microserviceGiulio De Donato
 
Vincent Burckhardt - Exending Connections with OpenSocial Gadgets
Vincent Burckhardt - Exending Connections with OpenSocial GadgetsVincent Burckhardt - Exending Connections with OpenSocial Gadgets
Vincent Burckhardt - Exending Connections with OpenSocial GadgetsLetsConnect
 
Open social gadgets in ibm connections
Open social gadgets in ibm connectionsOpen social gadgets in ibm connections
Open social gadgets in ibm connectionsVincent Burckhardt
 
Open World Forum 2012 : eXo & the Cloud
Open World Forum 2012 : eXo & the CloudOpen World Forum 2012 : eXo & the Cloud
Open World Forum 2012 : eXo & the CloudTugdual Grall
 
Python on Android with Delphi FMX - The Cross Platform GUI Framework
Python on Android with Delphi FMX - The Cross Platform GUI Framework Python on Android with Delphi FMX - The Cross Platform GUI Framework
Python on Android with Delphi FMX - The Cross Platform GUI Framework Embarcadero Technologies
 

Similar to CRaSH: the shell for the Java Platform (20)

eXo Platform Company overview Oct 2012
eXo Platform Company overview Oct 2012eXo Platform Company overview Oct 2012
eXo Platform Company overview Oct 2012
 
CVMichelGallant
CVMichelGallantCVMichelGallant
CVMichelGallant
 
Java application server in the cloud
Java application server in the cloudJava application server in the cloud
Java application server in the cloud
 
JDK 9: The Start of a New Future for Java
JDK 9: The Start of a New Future for JavaJDK 9: The Start of a New Future for Java
JDK 9: The Start of a New Future for Java
 
Minko - Scripting 3D apps with Lua and C++
Minko - Scripting 3D apps with Lua and C++Minko - Scripting 3D apps with Lua and C++
Minko - Scripting 3D apps with Lua and C++
 
An OpenShift Primer for Developers to get your Code into the Cloud (PTJUG)
An OpenShift Primer for Developers to get your Code into the Cloud (PTJUG)An OpenShift Primer for Developers to get your Code into the Cloud (PTJUG)
An OpenShift Primer for Developers to get your Code into the Cloud (PTJUG)
 
Windows 8 Metro Apps
Windows 8 Metro AppsWindows 8 Metro Apps
Windows 8 Metro Apps
 
Next Generation Portals : How OpenSocial Standard Adds Social to the Mix?
Next Generation Portals : How OpenSocial Standard Adds Social to the Mix? Next Generation Portals : How OpenSocial Standard Adds Social to the Mix?
Next Generation Portals : How OpenSocial Standard Adds Social to the Mix?
 
Integrating Backend Systems
Integrating Backend SystemsIntegrating Backend Systems
Integrating Backend Systems
 
How to develop nice portlet with Juzu framework
How to develop nice portlet with Juzu frameworkHow to develop nice portlet with Juzu framework
How to develop nice portlet with Juzu framework
 
LavaJUG-Maven 3.x, will it lives up to its promises
LavaJUG-Maven 3.x, will it lives up to its promisesLavaJUG-Maven 3.x, will it lives up to its promises
LavaJUG-Maven 3.x, will it lives up to its promises
 
Cross-Platform Mobile Development in Visual Studio
Cross-Platform Mobile Development in Visual StudioCross-Platform Mobile Development in Visual Studio
Cross-Platform Mobile Development in Visual Studio
 
Import golang; struct microservice
Import golang; struct microserviceImport golang; struct microservice
Import golang; struct microservice
 
Hexagonal architecture in PHP
Hexagonal architecture in PHPHexagonal architecture in PHP
Hexagonal architecture in PHP
 
Android presentation
Android presentationAndroid presentation
Android presentation
 
Development withforce
Development withforceDevelopment withforce
Development withforce
 
Vincent Burckhardt - Exending Connections with OpenSocial Gadgets
Vincent Burckhardt - Exending Connections with OpenSocial GadgetsVincent Burckhardt - Exending Connections with OpenSocial Gadgets
Vincent Burckhardt - Exending Connections with OpenSocial Gadgets
 
Open social gadgets in ibm connections
Open social gadgets in ibm connectionsOpen social gadgets in ibm connections
Open social gadgets in ibm connections
 
Open World Forum 2012 : eXo & the Cloud
Open World Forum 2012 : eXo & the CloudOpen World Forum 2012 : eXo & the Cloud
Open World Forum 2012 : eXo & the Cloud
 
Python on Android with Delphi FMX - The Cross Platform GUI Framework
Python on Android with Delphi FMX - The Cross Platform GUI Framework Python on Android with Delphi FMX - The Cross Platform GUI Framework
Python on Android with Delphi FMX - The Cross Platform GUI Framework
 

More from jviet

Annotations pour les Geeks
Annotations pour les GeeksAnnotations pour les Geeks
Annotations pour les Geeksjviet
 
Crash
CrashCrash
Crashjviet
 
Navigation Service
Navigation ServiceNavigation Service
Navigation Servicejviet
 
GateIn Frameworks
GateIn FrameworksGateIn Frameworks
GateIn Frameworksjviet
 
Good GateIn Stuff
Good GateIn StuffGood GateIn Stuff
Good GateIn Stuffjviet
 
What's new and cool in Portlet 2.0
What's new and cool in Portlet 2.0What's new and cool in Portlet 2.0
What's new and cool in Portlet 2.0jviet
 

More from jviet (6)

Annotations pour les Geeks
Annotations pour les GeeksAnnotations pour les Geeks
Annotations pour les Geeks
 
Crash
CrashCrash
Crash
 
Navigation Service
Navigation ServiceNavigation Service
Navigation Service
 
GateIn Frameworks
GateIn FrameworksGateIn Frameworks
GateIn Frameworks
 
Good GateIn Stuff
Good GateIn StuffGood GateIn Stuff
Good GateIn Stuff
 
What's new and cool in Portlet 2.0
What's new and cool in Portlet 2.0What's new and cool in Portlet 2.0
What's new and cool in Portlet 2.0
 

Recently uploaded

Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsAndrey Dotsenko
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 

CRaSH: the shell for the Java Platform

  • 1. CRaSH TH E SH EL L FOR TH E J AVA PL ATFOR M S E P T E M B E R 2 0 1 3 @julienviet @defrancea
  • 2. www.exoplatform.com - Copyright 2012 eXo Platform 2 JULIEN VIET − Contact − julien@julienviet.com − @julienviet − http://github.com/vietj − Open source for 10 years − Official mission: deliver enterprise grade portal server − Marseille JUG Leader − Involved in Java Community Process
  • 3. www.exoplatform.com - Copyright 2012 eXo Platform 3 WHAT IS EXO PLATFORM? eXo Platform is an open source social collaboration software solution designed for the Enterprise. It is full featured, standard based, extensible and has an amazing design. eXo Platform is featured in Gartner's Magic Quadrant for Horizontal Portal Products 2012 as a User eXperience Platform.
  • 4. www.exoplatform.com - Copyright 2012 eXo Platform 4 ALAIN DEFRANCE − Contact − defrancea@gmail.com − @alaindefrance − http://github.com/defrancea − Open source for 3 years − Contributed to open source projects like Crash − Marseille JUG Leader
  • 5. www.exoplatform.com - Copyright 2012 eXo Platform 5 BITTITAN − SAAS Products − MigrationWiz: Email migration − SMTPLogic: SMTP gateway − UserActivation: Easy onboarding to Office365 − Our blog − http://blog.bittitan.com
  • 6. www.exoplatform.com - Copyright 2012 eXo Platform 6 CRASH PROJECT − Latest stable 1.2 − Work in progress 1.3 − Licensed under LGPL − Compatibility − Java 6+ − Groovy 1.7+
  • 7. www.exoplatform.com - Copyright 2012 eXo Platform 7 KEY CONCEPTS − Command Line Interface for JVM − Create easily and quickly commands − Compose commands into pipelines − Connectors provide local or remote access
  • 8. www.exoplatform.com - Copyright 2012 eXo Platform 8 MODULAR DESIGN − Core, connectors, plugins − Only use what you need − Memory − Dependencies
  • 9. www.exoplatform.com - Copyright 2012 eXo Platform 9 CONNECTORS − Defines shell interactions − Asynchronous design − Implemented by − System.in / System.out − Telnet − SSH − Web − Attach
  • 10. www.exoplatform.com - Copyright 2012 eXo Platform 10 PLUGIN ARCHITECTURE − Keep core small and lightweight − New features without impacting core − Current plugins − Authentication: simple, jaas, key, crowd, … − Languages: java, groovy, ruby, … − Services: mail, cron, …
  • 11. www.exoplatform.com - Copyright 2012 eXo Platform 11 USER INTERFACE − Interactive Real-Eval-Print-Loop − SSH asynchronous execution − Cron based execution (1.3)
  • 12. www.exoplatform.com - Copyright 2012 eXo Platform 12 POLYGLOT − Leverage polyglot JVM ecosystem − Groovy − Commands − REPL (1.3) − Java − Commands (1.3) − Ruby work in progress
  • 13. www.exoplatform.com - Copyright 2012 eXo Platform 13 EXECUTION MODES − Standalone − Attach to a running JVM − Embedded − Servlet listener − Spring − Guice − Grails − VisualVM
  • 14. www.exoplatform.com - Copyright 2012 eXo Platform 14 BASE COMMANDS − Covers JVM packages − system − jdbc − jndi − jmx − Utilities: filter, sort, egrep, sleep
  • 15. www.exoplatform.com - Copyright 2012 eXo Platform 15 STANDALONE DEMO
  • 16. www.exoplatform.com - Copyright 2012 eXo Platform 16 JNDI/JDBC/JPA ATTACH DEMO
  • 17. www.exoplatform.com - Copyright 2012 eXo Platform 17 WRITING A COMMAND public class mycommand { @Command @Usage(“the command”) public void main( @Usage(“foo option”) @Option(names=[ “foo”]) String foo, @Usage(“command arguments”) @Argument List<String> args) { … } } % mycommand –foo the_option value1 value2
  • 18. www.exoplatform.com - Copyright 2012 eXo Platform 18 EMBEDDED − Trivial to embed − Programmatic − Spring − Guice − Servlet listener − Levels − Embed − Virtual file system
  • 19. www.exoplatform.com - Copyright 2012 eXo Platform 19 EMBEDDED BY
  • 20. www.exoplatform.com - Copyright 2012 eXo Platform 20 SPRING EMDEDDED TWITTER COMMAND DEMO
  • 21. www.exoplatform.com - Copyright 2012 eXo Platform 21 GIT LIKE COMMAND public class git { @Command public void add(…) {…} @Command public void commit(…) {…} … } % git add . % git commit –m “feature implemented”
  • 22. www.exoplatform.com - Copyright 2012 eXo Platform 22 TYPES − String, primitive types, enums − Converter − properties, jmx object name … − Completer − java.io.File − system property name − enums − …
  • 23. www.exoplatform.com - Copyright 2012 eXo Platform 23 COMMAND PIPE jmx find ObjectName Map jmx get sort
  • 24. www.exoplatform.com - Copyright 2012 eXo Platform 24 COMMAND PIPE public class wc { @Command public PipeCommand<String, Integer>) main() { return new PipeCommand<String, Integer>() { int count = 0; public void provide(String s) { count += s.split(“n”).length; } public void close() { context.provide(count); } } } }
  • 25. www.exoplatform.com - Copyright 2012 eXo Platform 25 JMX PIPE DEMO
  • 26. www.exoplatform.com - Copyright 2012 eXo Platform 26 MAIL/CRON DEMO
  • 27. www.exoplatform.com - Copyright 2012 eXo Platform 27 READ-EVAL-PRINT-LOOP − Feature of 1.3 − Polyglot
  • 28. www.exoplatform.com - Copyright 2012 eXo Platform 28 REPL DEMO
  • 29. www.exoplatform.com - Copyright 2012 eXo Platform 29 WRAP UP − A multi facet, powerful and extensible tool for all of us − Try online : try.crashub.org − Reach us at − crashub.org − @crashub − crash-users@googlegroups.com