SlideShare a Scribd company logo
Dmitry AlexandrovMartin Toshev
• Brief history and evolution of the platform
• OSGi
• Eclipse RCP – main components and architecture
• Deployment structure and plug-in installation flow
• Developing plug-ins
• Demos
• Q&A
• 1998 – OTI (Object Technology International – a subsidiary of IBM purchased in
1996, now known as IBM Ottawa Lab) starts developing what is now known as
Eclipse IDE
• 2001 – Eclipse IDE was outsourced in order to increase adoption and
acceleration. The Eclipse consortium and eclipse.org were established (along
with 8 other organizations)
• 2001 – Eclipse 1.0
• 2002 – Eclipse 2.0
• 2003 – Eclipse 2.1
• 2004 – Eclipse Software Foundation was created – on the 21st of June Eclipse
3.0 was shipped (codebase originated from VisualAge) with a runtime
architecture following the OSGi Service Platform specification
• 2004 (21st of June) – 3.0.[1]
• 2005 (28th of June) – 3.1
• 2006 (30th of June) – 3.2 (Calisto) – WTP donated from IBM
• 2007 (29th of June) – 3.3 (Europa)
• 2008 (25th of June) – 3.4 (Ganymede)
• 2009 (24th of June) – 3.5 (Galileo)
• 2010 (23rd of June) – 3.6 (Helios)
• 2011 (22nd of June) – 3.7 (Indigo)
• 2012 (27th of June) – 4.2 (Juno). Eclipse 4.2 is the result of the e4 incubation
• 2013 (planned 26 of June) – 4.3 (Kepler)
• 2014 (planned 25 of June) – 4.4 (Luna)
• 2012 – started development of Eclipse Orion – open-source browser-based IDE
for web development in the cloud
• The Open Services Gateway initiative framework is a module system and
service platform for the Java programming language that implements a complete
and dynamic component model, something that as of 2011 does not exist in
standalone Java/VM environments
• OSGi allows for applications or components to be installed, started, stopped,
updated and uninstalled without requiring a reboot
• The OSGi specifications have moved beyond the original focus of service
gateways, and are now used in applications ranging from mobile phones to the
open source Eclipse IDE. Other application areas include automobiles, industrial
automation, building automation, PDAs, grid computing, entertainment, fleet
management and application servers
Wikipedia
• Any framework that provides an implementation based on OSGi
provides an environment for the modularization of application into
smaller bundles – tightly coupled, dynamically loadable
collections of classes, jars and configuration files that explicitly
declared their dependencies
• OSGi logical layers and units:
bundles
services
services registry
life-cycle
modules
security
execution environment
• Every bundle contains a manifest.mf file (the bundle descriptor)
that specifies:
Bundle-Name: Defines a human-readable name for this bundle, Simply assigns a
short name to the bundle
Bundle-SymbolicName: The only required header, this entry specifies a unique
identifier for a bundle, based on the reverse domain name convention (used also by the java
packages)
Bundle-Description: A description of the bundle's functionality
Bundle-ManifestVersion: This little known header indicates the OSGi
specification to use for reading this bundle
Bundle-Version: Designates a version number to the bundle
Bundle-Activator: Indicates the class name to be invoked once a bundle is
activated
Export-Package: Expresses what Java packages contained in a bundle will be
made available to the outside world
Import-Package: Indicates what Java packages will be required from the outside
world, in order to fulfill the dependencies needed in a bundle.
• Sample manifest.mf file:
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Sample
Bundle-SymbolicName: com.sample
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: sample.Activator
Bundle-Vendor: test
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime
Bundle-
RequiredExecutionEnvironment:
JavaSE-1.7
Bundle-ActivationPolicy: lazy
• Advantages:
Reduced complexity: changes can be made without affecting other modules
Reuse: easy integration of third party components
Easy deployment – the life-cycle management of components is well-defined
Dynamic updates: Bundles can be installed, started, stopped, updated and uninstalled
without bringing down the whole system
Adaptive: The OSGi provides a dynamic service registry where bundles can register,
get and listen to services. This dynamic service model allows bundle to find out what all
services available in the system and can adapt those functionalities
Transparency: Certain parts of applications can be shutdown for bug fixing
• The Eclipse RCP (rich client platform) for developing general
purpose applications consists of:
Equinox – a standard bundling framework (OSGi implementation)
Core platform – boot Eclipse, run plug-ins
Standard Widget Toolkit (SWT) – a portable widget toolkit
JFace – viewer classes to bring model view controller programming to SWT, file
buffers, text handling, text editors
Eclipse Workbench – views, editors, perspectives, wizards, actions, commands
Eclipse plug in development
Eclipse plug in development
Eclipse plug in development
Eclipse plug in development
Eclipse plug in development
eclipse/ main installation folder
configuration/ Eclipse configuration
config.ini main configuration file
org.eclipse.equinox.simpleconfigurator/
bundles.info current set of plugins
dropins/ folder scanned for plugins
features/ features folder
p2/ p2 configuration folder
plugins/ plug-ins folder
eclipse.exe Eclipse loader
eclipse.ini Eclipse configuration file
Eclipse plug in development
Eclipse plug in development
• OSGi bundles
• Use extension points
• Provide extension points
• The Eclipse Platform
• Equinox – An OSGi R4 specification implementation used by Eclipse (a
common environment for executing plug-ins (bundles) and managing their life-
cycle)
• Various Eclipse plug-ins – The services managed by Equinox
• The Eclipse IDE - ADT, CDT, JDT, PDT and many others
Common characteristics of the workbench components:
Created statically via the use of extensions to existing extension points
(some can be created dynamically via the source code)
Most of them have a well-defined lifecycle
Most of them are represented by a particular class that must conform to
certain rules
Eclipse plug in development
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<category
id=“sample.category"
name=“sample">
</category>
<view
category=“sample.category"
class=“sample"
id=“sample.view"
name=“sample"
restorable="true">
</view>
</extension>
</plugin>
(extension point: org.eclipse.ui.views)
• Typically used to navigate a hierarchy of information, open an editor or display
properties for the active editor
• Can be grouped into categories
• Can be arranged by a perspective
• View classes must implement the IViewPart interface
• Used to supply functionality for toolbar buttons, context menu items and top-
level menu items
• Commands separate presentation from implementation, while actions don’t
• Can be enabled/disabled for a perspective or by a custom condition
• Action classes must implement the IActionDelegate interface, while command
classes must implement the IHandler interface
(extension point: org.eclipse.ui.editors)
• Primary mechanism to modify resources – text editors, multipage editors and
others
• Have an open-modify-save-close lifecycle
• Can be stacked
• Editors can be:
Text editors.
Form-based editors can layout controls in a fashion similar to a dialog or wizard.
Graphics intensive editors can be written using SWT level code.
List-oriented editors can use JFace list, tree, and table viewers to manipulate their data.
• Editor classes must implement the IEditorPart interface or extend EditorPart
• Editor input is manipulated by means of the IEditorInput interface
• The text editor framework provides a model-independent editor that supports
the following features:
presentation and user modification of text
standard text editing operations such as cut/copy/paste, find/replace
support for context and pulldown menus
visual presentation of text annotations in rulers or as squigglies in the text
automatic update of annotations as the user edits text
presentation of additional information such as line numbers
syntax highlighting
content assist
text outlining pages that show the hierarchical structure of the text
context sensitive behavior
hover support over rulers and text
key binding contexts
preference handling
• A custom text editor can be created by extending AbstractTextEditor or
TextEditor
• For source code style editors, a SourceViewer is provided. It can be customized
by extending SourceViewerConfiguration.
• Operations on text resources:
Partitioning & Syntax highlighting
Scanner
Rules
o IPredicateRule
o IRule
Detectors
Formatting
Completion
• Working with text resources – document structure:
- Partitioning
o IPredicateRule
• Working with text resources - highlighting:
Damage, repair, and reconciling (IPresentationDamager,
IPresentationRepairer, IPresentationReconciler)
Scanner
Detectors
Rules
o IRule
• Working with text resources – content assist:
IContentAssistant
IContentAssistProcessor
• Working with text resources – document readability:
IFormattingStrategy
Eclipse plug in development
Vertical ruler
Overview ruler
Text annotations
• Working with text resources – Annotations and rulers:
<extension
point="org.eclipse.core.filebuffers.annotationModelCreation">
<factory extensions="*"
class="org.eclipse.ui.texteditor.ResourceMarkerAnnotationModelFactory">
</factory>
</extension>
Text hover
Ruler hover
• Working with text resources – Hover information:
• IDE sugar
- Launch functionality
- Delegate
- Shortcut
- LaunchConfiguration
• Console
- Work with MessageConsole
(extension point: org.eclipse.ui.perspectives)
• Used for organizing/arranging views, editors and commands in the workbench
• Already existing perspectives can be enhanced as well
• Perspectives classes must implement the IPerspectiveFactory interface
• Preferences (org.eclipse.ui.preferencePages)
• Properties (org.eclipse.ui.propertyPages)
• Help pages (org.eclipse.ui.help)
In the EFS (Eclipse file system) all resources implement the
IResource interface:
files (IFile resources)
folders (IFolder resources)
projects (IProject resources)
the workspace root (IWorkspaceRoot resource)
editors_diagram.jpg
• IResourceChangeListener
• IResourceDeltaVisitor
The resource delta is structured as a tree rooted at the workspace root
Resources that have been created, deleted, or changed. If you have deleted (or added) a folder,
the resource delta will include the folder and all files contained in the folder
Resources that have been moved or renamed using the IResource.move() API
Markers that have been added, removed, or changed. Marker modification is considered to be a
workspace modification operation
Files that have been modified. Changed files are identified in the resource delta, but you do not
have access to the previous content of the file in the resource delta
ResourcesPlugin.getWorkspace().addResourceChangeListener(
listener, IResourceChangeEvent.POST_CHANGE);
• The workbench defines a number of services that can be retrieved from the
org.eclipse.ui.services.IServiceLocator:
Service Description Availability
IBindingService
Provides services related to the binding architecture (e.g., keyboard
shortcuts) within the workbench.
Globally
ICommandService
Provides services related to the command architecture within the
workbench.
Globally
ICommandImageService Provides a look-up facility for images associated with commands. Globally
IContextService
Provides services related to contexts in the Eclipse workbench, like context
activation and definitions.
Globally
IContributionService
Standard mechanisms that clients may use to order, display, and generally
work with contributions to the Workbench.
Globally
IEvaluationService
Evaluate a core expression against the workbench application context and
report updates using a Boolean property.
Globally
IFocusService Tracks focusGained and focusLost events. Globally
IHandlerService
Provides services related to activating and deactivating handlers within the
workbench.
Globally
IMenuService Provides services related to the menu architecture within the workbench. Globally
IPageService
A page service tracks the page and perspective lifecycle events within a
workbench window.
Workbench
Window
IPartService
A part service tracks the creation and activation of parts within a workbench
window.
Workbench
Window
IProgressService
The progress service is the primary interface to the workbench progress
support.
Globally
IWorkbenchSiteProgressService
The part progress service is an IProgressService that adds API for jobs that
change the state in a IWorkbenchPartSite while they are being run.
Part Site
ISaveablesLifecycleListener Listener for events fired by implementers of ISaveablesSource. Globally
ISelectionService A selection service tracks the selection within an a workbench window.
Workbench
Window
getSite().getWorkbenchWindow()
.getSelectionService().addSelectionListener(<listener>);
// <listener> must implement ISelectionListener
getSite().setSelectionProvider(<provider>);
// <provider> must implement ISelectionProvider)
Eclipse plug in development
• Plug-in – an OSGi bundle
• Feature – grouping of plug-ins and fragments
• Fragment – extend the functionality of another plug-in
• Update site – grouping of features that can be installed from a site
• The plug-in selection spy (Alt + Shift + F1) / menu spy (Alt + Shift + F2)
• Import plug-ins / fragment from the Import Wizard
• Window -> Preferences -> Plug-in Development -> Include all plug-ins from
target in Java search
• Eclipse Git repo
• Plug-in Registry/Plug-ins/Plug-in Dependencies
• Implementing help – providing useful information for a plug-in
• Internationalization – expanding the scope of our plug-in
• Building a plug-in – creating an Ant/Maven - based build script for a plug-in
• Publishing a plug-in – creating an update site for a plug-in
• SWT and JFace
• GEF and GMF
• Comparison with another platforms in terms of plug-in development
• Overview of existing plug-ins and features
• Providing extension points for a plug-in
• Eclipse Plug-ins (3rd edition) – Eric Clayberg, Dan Rubel
• Eclipse corner articles
(http://www.eclipse.org/articles/)
© 2011 Cisco and/or its affiliates. All rights reserved. 50
Thank you
• Brief history of Eclipse (up to 2006)
http://www.venukb.com/2006/07/21/history-of-eclipse/
last visited: 01.03.2013
• Wikipedia’s entry on Eclipse
http://en.wikipedia.org/wiki/Eclipse_(software)
last visited: 01.03.2013
• eclipse.org: Eclipse e4
http://eclipse.org/e4/
last visited: 01.03.2013
• EclipseCon 2009: e4 Project in Review
http://live.eclipse.org/node/737
last visited: 01.03.2013
• eclipse.org: Eclipse development process
http://www.eclipse.org/eclipse/development/
last visited: 01.03.2013
• Eclipse wiki: Development Resources
http://wiki.eclipse.org/Development_Resources
last visited: 01.03.2013
• Eclipse wiki:
http://wiki.eclipse.org/Development_Resources/Process_Guidelines/What_is_Inc
ubation
last visited: 01.03.2013
• Architecture of the Eclipse platform
https://wiki.engr.illinois.edu/download/attachments/183861826/cs427-
12.pdf?version=1&modificationDate=1317337982000
last visited: 01.03.2013
• vogella.de: Extending Eclipse –Plug-in Development Tutorial
http://www.vogella.de/articles/EclipsePlugIn/article.html
last visited: 01.03.2013
• OSGi tutorial
http://www.knopflerfish.org/tutorials/osgi_tutorial.pdf
last visited: 01.03.2013
• vogella.de: OSGi with Eclipse Equinox
http://www.vogella.de/articles/OSGi/article.html
last visited: 01.03.2013
• Wikipedia entry on OSGi
http://en.wikipedia.org/wiki/OSGi
last visited: 01.03.2013
• Wikipedia entry of Equinox
http://en.wikipedia.org/wiki/Equinox_(OSGi)
last visited: 01.03.2013
• Understanding the Eclipse p2 provisioning system
http://eclipse.dzone.com/articles/understanding-eclipse-p2-provi
last visited 01.03.2013
• Introduction to p2 (video)
http://www.fosslc.org/drupal/content/gentle-introduction-p2
last visited: 01.03.2013
• eclipse.org: project plan for Eclipse project, version Juno
http://www.eclipse.org/projects/project-
plan.php?planurl=http://www.eclipse.org/eclipse/development/plans/eclipse_proj
ect_plan_4_2.xml
last visited: 01.03.2013
• The architecture of open source applications (chapter 6: Eclipse)
http://www.aosabook.org/en/eclipse.html
last visited: 01.03.2013
• Eclipse Plug-in developers guide – Editor
http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2F
guide%2Feditors.htm&cp=2_0_13
last visited: 01.03.2013

More Related Content

PPTX
Google Cloud Platform
PDF
AWS 클라우드 기반 게임 아키텍처 사례 - AWS Summit Seoul 2017
PDF
Kubernetes dealing with storage and persistence
PDF
AWS Tutorial | AWS Certified Solutions Architect | Amazon AWS | AWS Training ...
PPTX
Cloud Computing.pptx
PPTX
PPTX
Introduction to Apache Camel
PDF
AWS Connectivity, VPC Design and Security Pro Tips
Google Cloud Platform
AWS 클라우드 기반 게임 아키텍처 사례 - AWS Summit Seoul 2017
Kubernetes dealing with storage and persistence
AWS Tutorial | AWS Certified Solutions Architect | Amazon AWS | AWS Training ...
Cloud Computing.pptx
Introduction to Apache Camel
AWS Connectivity, VPC Design and Security Pro Tips

What's hot (20)

PPTX
Messaging in the cloud - Azure Service Bus
PDF
Solid NodeJS with TypeScript, Jest & NestJS
PPTX
Azure kubernetes service (aks)
PDF
SPIFFE Meetup Tokyo #2 - Attestation Internals in SPIRE - Shingo Omura
PPTX
Introduction to Azure Functions
PDF
[온라인교육시리즈] NKS에서 Cluster & Pods Autoscaling 적용
PDF
Kubernetes architecture
PDF
Deep dive into Kubernetes Networking
PPTX
Azure kubernetes service
PDF
Advanced Terraform
PDF
Dockers and kubernetes
PDF
Api Gateway
PDF
Firestore: The Basics
PPT
presentation on Docker
ODP
Introduction to AWS IAM
PPTX
Windows Azure Platform
PPTX
Kubernetes for Beginners: An Introductory Guide
PPTX
Designing Resilient Applications on Microsoft Azure/Disaster Recovery of Appl...
PDF
AWS를 활용하여 Daily Report 만들기 : 로그 수집부터 자동화된 분석까지
PPTX
React Native
Messaging in the cloud - Azure Service Bus
Solid NodeJS with TypeScript, Jest & NestJS
Azure kubernetes service (aks)
SPIFFE Meetup Tokyo #2 - Attestation Internals in SPIRE - Shingo Omura
Introduction to Azure Functions
[온라인교육시리즈] NKS에서 Cluster & Pods Autoscaling 적용
Kubernetes architecture
Deep dive into Kubernetes Networking
Azure kubernetes service
Advanced Terraform
Dockers and kubernetes
Api Gateway
Firestore: The Basics
presentation on Docker
Introduction to AWS IAM
Windows Azure Platform
Kubernetes for Beginners: An Introductory Guide
Designing Resilient Applications on Microsoft Azure/Disaster Recovery of Appl...
AWS를 활용하여 Daily Report 만들기 : 로그 수집부터 자동화된 분석까지
React Native
Ad

Viewers also liked (20)

PPT
Eclipse Plug-in Develompent Tips And Tricks
KEY
OSGi, Eclipse and API Tooling
ODP
Eclipse Extensions Vs OSGI Services Tikal@ EclipseDemoCamps Tel Aviv
PDF
OSGi Technology, Eclipse and Convergence - Jeff McAffer, IBM
PPTX
Intro to OSGi and Eclipse Virgo
PPTX
RESTful Web Services
PPTX
Eclipse e4 Tutorial - EclipseCon 2010
PPTX
Security Аrchitecture of Тhe Java Platform
PPTX
Modularity of The Java Platform Javaday (http://javaday.org.ua/)
PPTX
Writing Stored Procedures with Oracle Database 12c
PPTX
Writing Stored Procedures in Oracle RDBMS
PPTX
Writing Java Stored Procedures in Oracle 12c
PPTX
Modular Java
PPTX
RxJS vs RxJava: Intro
PPTX
Spring RabbitMQ
PDF
KDB database (EPAM tech talks, Sofia, April, 2015)
PPTX
Security Architecture of the Java platform
PPTX
JVM++: The Graal VM
PPTX
Security Architecture of the Java Platform (BG OUG, Plovdiv, 13.06.2015)
PDF
OSGi and Eclipse RCP
Eclipse Plug-in Develompent Tips And Tricks
OSGi, Eclipse and API Tooling
Eclipse Extensions Vs OSGI Services Tikal@ EclipseDemoCamps Tel Aviv
OSGi Technology, Eclipse and Convergence - Jeff McAffer, IBM
Intro to OSGi and Eclipse Virgo
RESTful Web Services
Eclipse e4 Tutorial - EclipseCon 2010
Security Аrchitecture of Тhe Java Platform
Modularity of The Java Platform Javaday (http://javaday.org.ua/)
Writing Stored Procedures with Oracle Database 12c
Writing Stored Procedures in Oracle RDBMS
Writing Java Stored Procedures in Oracle 12c
Modular Java
RxJS vs RxJava: Intro
Spring RabbitMQ
KDB database (EPAM tech talks, Sofia, April, 2015)
Security Architecture of the Java platform
JVM++: The Graal VM
Security Architecture of the Java Platform (BG OUG, Plovdiv, 13.06.2015)
OSGi and Eclipse RCP
Ad

Similar to Eclipse plug in development (20)

PDF
Eclipse_Building_Blocks
KEY
Introduction to EclipseRT (JAX 2010)
PPT
Introduction To Eclipse RCP
PPT
Eclipse Training - Introduction
ODP
Introduction To The Eclipse Platform
PDF
Overview of Eclipse technologies
PPTX
Eclipse Overview
PDF
Eclipse & java based modeling platforms for smart phone
PPT
Eclipse IDE
PPT
Creation&imitation
PPT
Brane.Storm
PPT
ITU - MDD - Eclipse Plug-ins
PPTX
Eclipse Developement @ Progress Software
PDF
Eclipse Way
PDF
Using OSGi technology in Eclipse - BJ Hargrave, IBM, for Jeff McAffer, IBM
ODP
Whats new in Eclipse Indigo ? (@DemoCamp Grenoble 2011)
PDF
OSGi user forum dc metro v1
PDF
OSGi User Forum US DC Metro
PDF
Eclipse In Action A Guide For Java Developers 1st Edition David Gallardo
PDF
Keynote - Eclipse - Accelerating OSGi Adoption - Mike Milinkovich, Executive ...
Eclipse_Building_Blocks
Introduction to EclipseRT (JAX 2010)
Introduction To Eclipse RCP
Eclipse Training - Introduction
Introduction To The Eclipse Platform
Overview of Eclipse technologies
Eclipse Overview
Eclipse & java based modeling platforms for smart phone
Eclipse IDE
Creation&imitation
Brane.Storm
ITU - MDD - Eclipse Plug-ins
Eclipse Developement @ Progress Software
Eclipse Way
Using OSGi technology in Eclipse - BJ Hargrave, IBM, for Jeff McAffer, IBM
Whats new in Eclipse Indigo ? (@DemoCamp Grenoble 2011)
OSGi user forum dc metro v1
OSGi User Forum US DC Metro
Eclipse In Action A Guide For Java Developers 1st Edition David Gallardo
Keynote - Eclipse - Accelerating OSGi Adoption - Mike Milinkovich, Executive ...

More from Martin Toshev (15)

PPTX
Building highly scalable data pipelines with Apache Spark
PPTX
Big data processing with Apache Spark and Oracle Database
PPT
Jdk 10 sneak peek
PPT
Semantic Technology In Oracle Database 12c
PPTX
Practical security In a modular world
PPT
Java 9 Security Enhancements in Practice
PPTX
Java 9 sneak peek
PPTX
Spring RabbitMQ
PPTX
Oracle Database 12c Attack Vectors
PDF
Concurrency Utilities in Java 8
PPTX
The RabbitMQ Message Broker
PPTX
java2days 2014: Attacking JavaEE Application Servers
PPTX
Security Architecture of the Java Platform (http://www.javaday.bg event - 14....
PPTX
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
PPTX
New Features in JDK 8
Building highly scalable data pipelines with Apache Spark
Big data processing with Apache Spark and Oracle Database
Jdk 10 sneak peek
Semantic Technology In Oracle Database 12c
Practical security In a modular world
Java 9 Security Enhancements in Practice
Java 9 sneak peek
Spring RabbitMQ
Oracle Database 12c Attack Vectors
Concurrency Utilities in Java 8
The RabbitMQ Message Broker
java2days 2014: Attacking JavaEE Application Servers
Security Architecture of the Java Platform (http://www.javaday.bg event - 14....
Modularity of the Java Platform (OSGi, Jigsaw and Penrose)
New Features in JDK 8

Eclipse plug in development

  • 2. • Brief history and evolution of the platform • OSGi • Eclipse RCP – main components and architecture • Deployment structure and plug-in installation flow • Developing plug-ins • Demos • Q&A
  • 3. • 1998 – OTI (Object Technology International – a subsidiary of IBM purchased in 1996, now known as IBM Ottawa Lab) starts developing what is now known as Eclipse IDE • 2001 – Eclipse IDE was outsourced in order to increase adoption and acceleration. The Eclipse consortium and eclipse.org were established (along with 8 other organizations) • 2001 – Eclipse 1.0 • 2002 – Eclipse 2.0 • 2003 – Eclipse 2.1 • 2004 – Eclipse Software Foundation was created – on the 21st of June Eclipse 3.0 was shipped (codebase originated from VisualAge) with a runtime architecture following the OSGi Service Platform specification
  • 4. • 2004 (21st of June) – 3.0.[1] • 2005 (28th of June) – 3.1 • 2006 (30th of June) – 3.2 (Calisto) – WTP donated from IBM • 2007 (29th of June) – 3.3 (Europa) • 2008 (25th of June) – 3.4 (Ganymede) • 2009 (24th of June) – 3.5 (Galileo) • 2010 (23rd of June) – 3.6 (Helios) • 2011 (22nd of June) – 3.7 (Indigo) • 2012 (27th of June) – 4.2 (Juno). Eclipse 4.2 is the result of the e4 incubation
  • 5. • 2013 (planned 26 of June) – 4.3 (Kepler) • 2014 (planned 25 of June) – 4.4 (Luna) • 2012 – started development of Eclipse Orion – open-source browser-based IDE for web development in the cloud
  • 6. • The Open Services Gateway initiative framework is a module system and service platform for the Java programming language that implements a complete and dynamic component model, something that as of 2011 does not exist in standalone Java/VM environments • OSGi allows for applications or components to be installed, started, stopped, updated and uninstalled without requiring a reboot • The OSGi specifications have moved beyond the original focus of service gateways, and are now used in applications ranging from mobile phones to the open source Eclipse IDE. Other application areas include automobiles, industrial automation, building automation, PDAs, grid computing, entertainment, fleet management and application servers Wikipedia
  • 7. • Any framework that provides an implementation based on OSGi provides an environment for the modularization of application into smaller bundles – tightly coupled, dynamically loadable collections of classes, jars and configuration files that explicitly declared their dependencies • OSGi logical layers and units: bundles services services registry life-cycle modules security execution environment
  • 8. • Every bundle contains a manifest.mf file (the bundle descriptor) that specifies: Bundle-Name: Defines a human-readable name for this bundle, Simply assigns a short name to the bundle Bundle-SymbolicName: The only required header, this entry specifies a unique identifier for a bundle, based on the reverse domain name convention (used also by the java packages) Bundle-Description: A description of the bundle's functionality Bundle-ManifestVersion: This little known header indicates the OSGi specification to use for reading this bundle Bundle-Version: Designates a version number to the bundle Bundle-Activator: Indicates the class name to be invoked once a bundle is activated Export-Package: Expresses what Java packages contained in a bundle will be made available to the outside world Import-Package: Indicates what Java packages will be required from the outside world, in order to fulfill the dependencies needed in a bundle.
  • 9. • Sample manifest.mf file: Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Sample Bundle-SymbolicName: com.sample Bundle-Version: 1.0.0.qualifier Bundle-Activator: sample.Activator Bundle-Vendor: test Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime Bundle- RequiredExecutionEnvironment: JavaSE-1.7 Bundle-ActivationPolicy: lazy
  • 10. • Advantages: Reduced complexity: changes can be made without affecting other modules Reuse: easy integration of third party components Easy deployment – the life-cycle management of components is well-defined Dynamic updates: Bundles can be installed, started, stopped, updated and uninstalled without bringing down the whole system Adaptive: The OSGi provides a dynamic service registry where bundles can register, get and listen to services. This dynamic service model allows bundle to find out what all services available in the system and can adapt those functionalities Transparency: Certain parts of applications can be shutdown for bug fixing
  • 11. • The Eclipse RCP (rich client platform) for developing general purpose applications consists of: Equinox – a standard bundling framework (OSGi implementation) Core platform – boot Eclipse, run plug-ins Standard Widget Toolkit (SWT) – a portable widget toolkit JFace – viewer classes to bring model view controller programming to SWT, file buffers, text handling, text editors Eclipse Workbench – views, editors, perspectives, wizards, actions, commands
  • 17. eclipse/ main installation folder configuration/ Eclipse configuration config.ini main configuration file org.eclipse.equinox.simpleconfigurator/ bundles.info current set of plugins dropins/ folder scanned for plugins features/ features folder p2/ p2 configuration folder plugins/ plug-ins folder eclipse.exe Eclipse loader eclipse.ini Eclipse configuration file
  • 20. • OSGi bundles • Use extension points • Provide extension points
  • 21. • The Eclipse Platform • Equinox – An OSGi R4 specification implementation used by Eclipse (a common environment for executing plug-ins (bundles) and managing their life- cycle) • Various Eclipse plug-ins – The services managed by Equinox • The Eclipse IDE - ADT, CDT, JDT, PDT and many others
  • 22. Common characteristics of the workbench components: Created statically via the use of extensions to existing extension points (some can be created dynamically via the source code) Most of them have a well-defined lifecycle Most of them are represented by a particular class that must conform to certain rules
  • 24. <?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.4"?> <plugin> <extension point="org.eclipse.ui.views"> <category id=“sample.category" name=“sample"> </category> <view category=“sample.category" class=“sample" id=“sample.view" name=“sample" restorable="true"> </view> </extension> </plugin>
  • 25. (extension point: org.eclipse.ui.views) • Typically used to navigate a hierarchy of information, open an editor or display properties for the active editor • Can be grouped into categories • Can be arranged by a perspective • View classes must implement the IViewPart interface
  • 26. • Used to supply functionality for toolbar buttons, context menu items and top- level menu items • Commands separate presentation from implementation, while actions don’t • Can be enabled/disabled for a perspective or by a custom condition • Action classes must implement the IActionDelegate interface, while command classes must implement the IHandler interface
  • 27. (extension point: org.eclipse.ui.editors) • Primary mechanism to modify resources – text editors, multipage editors and others • Have an open-modify-save-close lifecycle • Can be stacked • Editors can be: Text editors. Form-based editors can layout controls in a fashion similar to a dialog or wizard. Graphics intensive editors can be written using SWT level code. List-oriented editors can use JFace list, tree, and table viewers to manipulate their data.
  • 28. • Editor classes must implement the IEditorPart interface or extend EditorPart • Editor input is manipulated by means of the IEditorInput interface • The text editor framework provides a model-independent editor that supports the following features: presentation and user modification of text standard text editing operations such as cut/copy/paste, find/replace support for context and pulldown menus visual presentation of text annotations in rulers or as squigglies in the text automatic update of annotations as the user edits text presentation of additional information such as line numbers syntax highlighting content assist text outlining pages that show the hierarchical structure of the text context sensitive behavior hover support over rulers and text key binding contexts preference handling
  • 29. • A custom text editor can be created by extending AbstractTextEditor or TextEditor • For source code style editors, a SourceViewer is provided. It can be customized by extending SourceViewerConfiguration. • Operations on text resources: Partitioning & Syntax highlighting Scanner Rules o IPredicateRule o IRule Detectors Formatting Completion
  • 30. • Working with text resources – document structure: - Partitioning o IPredicateRule
  • 31. • Working with text resources - highlighting: Damage, repair, and reconciling (IPresentationDamager, IPresentationRepairer, IPresentationReconciler) Scanner Detectors Rules o IRule
  • 32. • Working with text resources – content assist: IContentAssistant IContentAssistProcessor
  • 33. • Working with text resources – document readability: IFormattingStrategy
  • 35. Vertical ruler Overview ruler Text annotations • Working with text resources – Annotations and rulers: <extension point="org.eclipse.core.filebuffers.annotationModelCreation"> <factory extensions="*" class="org.eclipse.ui.texteditor.ResourceMarkerAnnotationModelFactory"> </factory> </extension>
  • 36. Text hover Ruler hover • Working with text resources – Hover information:
  • 37. • IDE sugar - Launch functionality - Delegate - Shortcut - LaunchConfiguration • Console - Work with MessageConsole
  • 38. (extension point: org.eclipse.ui.perspectives) • Used for organizing/arranging views, editors and commands in the workbench • Already existing perspectives can be enhanced as well • Perspectives classes must implement the IPerspectiveFactory interface
  • 39. • Preferences (org.eclipse.ui.preferencePages) • Properties (org.eclipse.ui.propertyPages) • Help pages (org.eclipse.ui.help)
  • 40. In the EFS (Eclipse file system) all resources implement the IResource interface: files (IFile resources) folders (IFolder resources) projects (IProject resources) the workspace root (IWorkspaceRoot resource)
  • 42. • IResourceChangeListener • IResourceDeltaVisitor The resource delta is structured as a tree rooted at the workspace root Resources that have been created, deleted, or changed. If you have deleted (or added) a folder, the resource delta will include the folder and all files contained in the folder Resources that have been moved or renamed using the IResource.move() API Markers that have been added, removed, or changed. Marker modification is considered to be a workspace modification operation Files that have been modified. Changed files are identified in the resource delta, but you do not have access to the previous content of the file in the resource delta ResourcesPlugin.getWorkspace().addResourceChangeListener( listener, IResourceChangeEvent.POST_CHANGE);
  • 43. • The workbench defines a number of services that can be retrieved from the org.eclipse.ui.services.IServiceLocator: Service Description Availability IBindingService Provides services related to the binding architecture (e.g., keyboard shortcuts) within the workbench. Globally ICommandService Provides services related to the command architecture within the workbench. Globally ICommandImageService Provides a look-up facility for images associated with commands. Globally IContextService Provides services related to contexts in the Eclipse workbench, like context activation and definitions. Globally IContributionService Standard mechanisms that clients may use to order, display, and generally work with contributions to the Workbench. Globally IEvaluationService Evaluate a core expression against the workbench application context and report updates using a Boolean property. Globally IFocusService Tracks focusGained and focusLost events. Globally IHandlerService Provides services related to activating and deactivating handlers within the workbench. Globally IMenuService Provides services related to the menu architecture within the workbench. Globally IPageService A page service tracks the page and perspective lifecycle events within a workbench window. Workbench Window IPartService A part service tracks the creation and activation of parts within a workbench window. Workbench Window IProgressService The progress service is the primary interface to the workbench progress support. Globally IWorkbenchSiteProgressService The part progress service is an IProgressService that adds API for jobs that change the state in a IWorkbenchPartSite while they are being run. Part Site ISaveablesLifecycleListener Listener for events fired by implementers of ISaveablesSource. Globally ISelectionService A selection service tracks the selection within an a workbench window. Workbench Window
  • 44. getSite().getWorkbenchWindow() .getSelectionService().addSelectionListener(<listener>); // <listener> must implement ISelectionListener getSite().setSelectionProvider(<provider>); // <provider> must implement ISelectionProvider)
  • 46. • Plug-in – an OSGi bundle • Feature – grouping of plug-ins and fragments • Fragment – extend the functionality of another plug-in • Update site – grouping of features that can be installed from a site
  • 47. • The plug-in selection spy (Alt + Shift + F1) / menu spy (Alt + Shift + F2) • Import plug-ins / fragment from the Import Wizard • Window -> Preferences -> Plug-in Development -> Include all plug-ins from target in Java search • Eclipse Git repo • Plug-in Registry/Plug-ins/Plug-in Dependencies
  • 48. • Implementing help – providing useful information for a plug-in • Internationalization – expanding the scope of our plug-in • Building a plug-in – creating an Ant/Maven - based build script for a plug-in • Publishing a plug-in – creating an update site for a plug-in • SWT and JFace • GEF and GMF • Comparison with another platforms in terms of plug-in development • Overview of existing plug-ins and features • Providing extension points for a plug-in
  • 49. • Eclipse Plug-ins (3rd edition) – Eric Clayberg, Dan Rubel • Eclipse corner articles (http://www.eclipse.org/articles/)
  • 50. © 2011 Cisco and/or its affiliates. All rights reserved. 50 Thank you
  • 51. • Brief history of Eclipse (up to 2006) http://www.venukb.com/2006/07/21/history-of-eclipse/ last visited: 01.03.2013 • Wikipedia’s entry on Eclipse http://en.wikipedia.org/wiki/Eclipse_(software) last visited: 01.03.2013 • eclipse.org: Eclipse e4 http://eclipse.org/e4/ last visited: 01.03.2013 • EclipseCon 2009: e4 Project in Review http://live.eclipse.org/node/737 last visited: 01.03.2013
  • 52. • eclipse.org: Eclipse development process http://www.eclipse.org/eclipse/development/ last visited: 01.03.2013 • Eclipse wiki: Development Resources http://wiki.eclipse.org/Development_Resources last visited: 01.03.2013 • Eclipse wiki: http://wiki.eclipse.org/Development_Resources/Process_Guidelines/What_is_Inc ubation last visited: 01.03.2013
  • 53. • Architecture of the Eclipse platform https://wiki.engr.illinois.edu/download/attachments/183861826/cs427- 12.pdf?version=1&modificationDate=1317337982000 last visited: 01.03.2013 • vogella.de: Extending Eclipse –Plug-in Development Tutorial http://www.vogella.de/articles/EclipsePlugIn/article.html last visited: 01.03.2013 • OSGi tutorial http://www.knopflerfish.org/tutorials/osgi_tutorial.pdf last visited: 01.03.2013 • vogella.de: OSGi with Eclipse Equinox http://www.vogella.de/articles/OSGi/article.html last visited: 01.03.2013
  • 54. • Wikipedia entry on OSGi http://en.wikipedia.org/wiki/OSGi last visited: 01.03.2013 • Wikipedia entry of Equinox http://en.wikipedia.org/wiki/Equinox_(OSGi) last visited: 01.03.2013 • Understanding the Eclipse p2 provisioning system http://eclipse.dzone.com/articles/understanding-eclipse-p2-provi last visited 01.03.2013 • Introduction to p2 (video) http://www.fosslc.org/drupal/content/gentle-introduction-p2 last visited: 01.03.2013
  • 55. • eclipse.org: project plan for Eclipse project, version Juno http://www.eclipse.org/projects/project- plan.php?planurl=http://www.eclipse.org/eclipse/development/plans/eclipse_proj ect_plan_4_2.xml last visited: 01.03.2013 • The architecture of open source applications (chapter 6: Eclipse) http://www.aosabook.org/en/eclipse.html last visited: 01.03.2013 • Eclipse Plug-in developers guide – Editor http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2F guide%2Feditors.htm&cp=2_0_13 last visited: 01.03.2013