CORBA Component Model Tutorial
108 pages
English

CORBA Component Model Tutorial

-

Le téléchargement nécessite un accès à la bibliothèque YouScribe
Tout savoir sur nos offres
108 pages
English
Le téléchargement nécessite un accès à la bibliothèque YouScribe
Tout savoir sur nos offres

Description

CORBA Component Model Tutorial, Wednesday, April 24th, 2002
Yokohama OMG Meeting
CORBA Component Model
Tutorial
OMG CCM Implementers Group,
MARS PTC & Telecom DTC
OMG Meeting, Yokohama, Japan,
April 24th, 2002
OMG TC Document ccm/2002-04-01
Wednesday, April 24th, 2002 CORBA Component Model Tutorial 1
Tutorial Team
n Speakers
n Philippe Merle - LIFL/INRIA - Philippe.Merle@lifl.fr
n Sylvain Leblanc - LIFL - Sylvain.Leblanc@lifl.fr
n Mathieu Vadet - Thalès/LIFL - Mathieu.Vadet@lifl.fr
n Frank Pilhofer - Alcatel/FPX - fp@fpx.de
n Tom Ritter - Fraunhofer Fokus - ritter@fokus.gmd.de
n Harald Böhme - Humboldt University
- boehme@informatik.hu-berlin.de
n Contributors
n J. Scott Evans - CPI - evans@cpi.com
n Diego Sevilla Ruiz - dsevilla@ditec.um.es
n Raphaël Marvie - LIFL – Raphael.Marvie@lifl.fr
Wednesday, April 24th, 2002 CORBA Component Model Tutorial 2
(c) Philippe Merle LIFL - INRIA 2002 1 CORBA Component Model Tutorial, Wednesday, April 24th, 2002
Yokohama OMG Meeting
Tutorial Objectives
n A guided tour of the CORBA Component Model
n How to design, implement, package, deploy, execute,
and use CORBA components
n Putting the CCM to work
n Illustrated with a concrete example
n Well-known Dining Philosophers
n Demonstrated on various OS, ORB, CCM platforms, and
programming languages (C++, Java, OMG IDLscript)
Wednesday, April 24th, 2002 CORBA Component Model Tutorial 3
Agenda
n What is the CORBA Component Model?
n Defining CORBA components
n Programming CORBA component ...

Sujets

Informations

Publié par
Nombre de lectures 56
Langue English
Poids de l'ouvrage 1 Mo

Extrait

CORBA Component Model Tutorial, Wednesday, April 24th, 2002 Yokohama OMG Meeting CORBA Component Model Tutorial OMG CCM Implementers Group, MARS PTC & Telecom DTC OMG Meeting, Yokohama, Japan, April 24th, 2002 OMG TC Document ccm/2002-04-01 Wednesday, April 24th, 2002 CORBA Component Model Tutorial 1 Tutorial Team n Speakers n Philippe Merle - LIFL/INRIA - Philippe.Merle@lifl.fr n Sylvain Leblanc - LIFL - Sylvain.Leblanc@lifl.fr n Mathieu Vadet - Thalès/LIFL - Mathieu.Vadet@lifl.fr n Frank Pilhofer - Alcatel/FPX - fp@fpx.de n Tom Ritter - Fraunhofer Fokus - ritter@fokus.gmd.de n Harald Böhme - Humboldt University - boehme@informatik.hu-berlin.de n Contributors n J. Scott Evans - CPI - evans@cpi.com n Diego Sevilla Ruiz - dsevilla@ditec.um.es n Raphaël Marvie - LIFL – Raphael.Marvie@lifl.fr Wednesday, April 24th, 2002 CORBA Component Model Tutorial 2 (c) Philippe Merle LIFL - INRIA 2002 1 CORBA Component Model Tutorial, Wednesday, April 24th, 2002 Yokohama OMG Meeting Tutorial Objectives n A guided tour of the CORBA Component Model n How to design, implement, package, deploy, execute, and use CORBA components n Putting the CCM to work n Illustrated with a concrete example n Well-known Dining Philosophers n Demonstrated on various OS, ORB, CCM platforms, and programming languages (C++, Java, OMG IDLscript) Wednesday, April 24th, 2002 CORBA Component Model Tutorial 3 Agenda n What is the CORBA Component Model? n Defining CORBA components n Programming CORBA component clients n Implementing CORBA components n Putting CORBA containers to work n Packaging CORBA components n Deploying CORBA component applications n Summary Wednesday, April 24th, 2002 CORBA Component Model Tutorial 4 (c) Philippe Merle LIFL - INRIA 2002 2 CORBA Component Model Tutorial, Wednesday, April 24th, 2002 Yokohama OMG Meeting What is the CORBA Component Model? n From CORBA 2.x to the CCM n Comparison with EJB, COM, and .NET n CCM Technologies n Typical Use Case Wednesday, April 24th, 2002 CORBA Component Model Tutorial 5 Why Software Components? n Time to market n Improved application productivity n Reduced complexity n Reuse of existing code n Programming by assembly (manufacturing) rather than development (engineering) n Reduced skills requirements n Focus expertise on domain problems n Improving software quality n Key benefit with client side & server side development Wednesday, April 24th, 2002 CORBA Component Model Tutorial 6 (c) Philippe Merle LIFL - INRIA 2002 3 CORBA Component Model Tutorial, Wednesday, April 24th, 2002 Yokohama OMG Meeting From CORBA 2 . . . n A distributed object-oriented model n Heterogeneity: OMG Interface Definition Language (OMG IDL) n Portability: Standardized language mappings n Interoperability: GIOP / IIOP n Various invocation models: SII, DII, and AMI n Middleware: ORB, POA, etc. minimum, real-time, and fault-tolerance profiles n No standard packaging and deployment facilities !!! n Explicit programming of non functional properties !!! n lifecycle, (de)activation, naming, trading, notification, persistence, transactions, security, real-time, fault-tolerance, ... n No vision of software architecture Wednesday, April 24th, 2002 CORBA Component Model Tutorial 7 . . . to the CORBA Component Model n A distributed component-oriented model n An architecture for defining components and their interactions n From client-side (GUI) to server-side (business) components n A packaging technology for deploying binary multi-lingual executables n A container framework for injecting lifecycle, (de)activation, security, transactions, persistence, and events n Interoperability with Enterprise Java Beans (EJB) n The Industry’s First Multi-Language Component Standard n Multi-languages, multi-OSs, multi-ORBs, multi-vendors, etc. n Versus the Java-centric EJB component model n Versus the MS-centric .NET component model Wednesday, April 24th, 2002 CORBA Component Model Tutorial 8 (c) Philippe Merle LIFL - INRIA 2002 4 CORBA Component Model Tutorial, Wednesday, April 24th, 2002 Yokohama OMG Meeting CCM Compared to EJB, COM and .NET n Like SUN Microsystems’s Enterprise Java Beans (EJB) n CORBA components created and managed by homes n Run in containers managing system services transparently n Hosted by application component servers n Like Microsoft’s Component Object Model (COM) n Have several input and output interfaces n Both synchronous operations and asynchronous events n Navigation and introspection capabilities n Like Microsoft’s .NET Framework n Could be written in different programming languages n Could be packaged in order to be distributed Wednesday, April 24th, 2002 CORBA Component Model Tutorial 9 But with CCM n A CCM application is “really” distributed n Could be deployed and run on several distributed nodes simultaneously n A CORBA component could be segmented into several classes Wednesday, April 24th, 2002 CORBA Component Model Tutorial 10 (c) Philippe Merle LIFL - INRIA 2002 5 CORBA Component Model Tutorial, Wednesday, April 24th, 2002 Yokohama OMG Meeting What is the CCM Specification? n Abstract Component Model n Extensions to IDL and the object model n Component Implementation Framework n Component Implementation Definition Language (CIDL) n Component Container Programming Model n Component implementer and client view n Integration with Security, Persistence, Transactions, and Events Wednesday, April 24th, 2002 CORBA Component Model Tutorial 11 What is the CCM Specification? n Packaging and deployment facilities n Interoperability with EJB 1.1 n Component Metadata & Metamodel n Interface Repository and MOF extensions Wednesday, April 24th, 2002 CORBA Component Model Tutorial 12 (c) Philippe Merle LIFL - INRIA 2002 6 CORBA Component Model Tutorial, Wednesday, April 24th, 2002 Yokohama OMG Meeting Relations between OMG Definition Languages OMG IDL n OMG IDL 2.x 2.x n Object-oriented collaboration n i.e. data types, interfaces, and value types extends n OMG IDL 3.0 extends n Component-oriented collaboration OMG IDL 3.0n i.e. component types, homes, and event types n OMG PSDL extends n Persistent state definition OMG PSDLn i.e. [abstract] storage types and homes n OMG CIDL extends n Component implementation description OMG n i.e. compositions and segments CIDL Wednesday, April 24th, 2002 CORBA Component Model Tutorial 13 CCM User Roles n Component designers n Component clients n Composition designers (~ component implementation designers) n Component implementers n Component packagers n Component deployers n Component end-users Wednesday, April 24th, 2002 CORBA Component Model Tutorial 14 (c) Philippe Merle LIFL - INRIA 2002 7 CORBA Component Model Tutorial, Wednesday, April 24th, 2002 Yokohama OMG Meeting Component Designers n Define component and home types via OMG IDL 3.0 extensions n Output n OMG IDL 3.0 files n Client-side OMG IDL mapping n Client-side stubs n Interface Repository entries Wednesday, April 24th, 2002 CORBA Component Model Tutorial 15 Component Clients n View components and homes via the client-side OMG IDL mapping n Use client-side stubs n Could navigate and introspect components via the generic CCMObject and CCMHome interfaces Wednesday, April 24th, 2002 CORBA Component Model Tutorial 16 (c) Philippe Merle LIFL - INRIA 2002 8 CORBA Component Model Tutorial, Wednesday, April 24th, 2002 Yokohama OMG Meeting Composition Designers n Specify platform and language independent features required to facilitate code generation n Component Implementation Definition Language (CIDL) n Persistence State Definition Language (PSDL) n Output n Local server-side OMG IDL mapping n Component skeletons n Component metadata as XML descriptors Wednesday, April 24th, 2002 CORBA Component Model Tutorial 17 Component Implementers n Implement business logic operations n Defined by local server-side OMG IDL interfaces n Could inherit from generated CIDL skeletons n Could overload local container callback interfaces n Could invoke local container interfaces n Output n Component binaries n XML component descriptors enriched Wednesday, April 24th, 2002 CORBA Component Model Tutorial 18 (c) Philippe Merle LIFL - INRIA 2002 9 CORBA Component Model Tutorial, Wednesday, April 24th, 2002 Yokohama OMG Meeting From CORBA Component Design to Packaging OMG IDL, ComponentLocal implementsPSDL & Executorserver-sideComponent ComponentCIDL CodeOMG IDL Designer Implementer OMG IDL Programming PSDL & CIDL Language Compiler Tools Stubs, Skeletons XML Client-side Component Binaryrefers to describes ComponentOMG IDL Descriptor ComponentComponent PackagerClient Wednesday, April 24th, 2002 CORBA Component Model Tutorial 19 Component Packagers n Produce component packages containing n Component binaries n Software & component XML descriptors n Default property XML descriptors n Probably done using an interactive visual tool n Output - component archive file (zip file) n If “no further assembly required”, skip to deployment Wednesday, April 24th, 2002 CORBA Component Model Tutorial 20 (c) Philippe Merle LIFL - INRIA 2002 10
  • Univers Univers
  • Ebooks Ebooks
  • Livres audio Livres audio
  • Presse Presse
  • Podcasts Podcasts
  • BD BD
  • Documents Documents