Top Banner
CORBA concepts & CORBA architecture MOKSHADA NAYAK
25
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: CORBA

CORBA concepts & CORBA architecture

MOKSHADA NAYAK

Page 2: CORBA

INTRODUCTION

Page 3: CORBA

• CORBA is an abbreviation for Common Object Request Broker Architecture

• Object Management Group, (OMG) formed in 1989

• The Common Object Request Broker Architecture (CORBA) is a standard defined by the Object Management Group (OMG) that enables software components written in multiple computer languages and running on multiple computers to work together (i.e., it supports multiple platforms).

Page 4: CORBA

Focus on integration of systems and applications across heterogeneous platforms

Thus CORBA allows applications and their objects to communicate with each other no matter where they are and or who designed them!!

Page 5: CORBA

• CORBA is just a specification for creating and using distributed objects

• CORBA is not a programming language.

• CORBA is a standard (not a product!)

• Allows objects to transparently make requests and receive responses

Page 6: CORBA

6

Components Of CORBA

The main components of CORBA’s RMI framework are:1.An interface definition language known

as IDL.2.An architecture.3.The General Inter-ORB protocol (GIOP)

defines • specifies formats for the messages

in a request-reply protocol. • including messages for enquiring

about the location of an object, for cancelling requests and for reporting errors. •

Page 7: CORBA

4.The Internet Inter-ORB protocol (IIOP) defines a standard form for remote object references. • IIOP is GIOP implemented in

TCP/IP

• CORBA services - generic services useful in distributed applications e.g. Naming Service, Event Service.

Page 8: CORBA

CORBA Architecture

• The CORBA architecture is based on the object model.

• A CORBA-based system is a collection of objects that isolates the requestors of services (clients) from the providers of services(servers) by a well-defined encapsulating interface.

• CORBA is composed of five major components: ORB, IDL, dynamic invocation interface(DII), interface repositories (IR), and object adapters (OA).

Page 9: CORBA

9

CORBA Architecture

client server

proxy

or dynamic invocation

implementation repository object

adapter

ORBORB

skeleton

or dynamic skeleton

client program

interface repository

Request

Replycorecore for A

Servant A

• The CORBA architecture is designed to allow clients to invoke methods in CORBA objects clients and objects can be implemented in a variety of programming languages it has the following additional components

• object adapter, implementation repository and interface repository

ORB coreThe role of the ORB core is similar to that of the communication module In addition, an ORB core provides an interface that includes the following:- operations enabling it to be started and stopped; - operations to convert between remote object references and strings; - operations to provide argument lists for requests using dynamic invocation.

Dynamic invocation interface In some applications (e.g. browsers), a client without the appropriate proxy class may need to invoke a method in a remote object.CORBA does not allow classes for proxies to be downloaded at run time as in Java RMI. The dynamic invocation interface is CORBA’s alternative. (we will discuss it later with the Interface Repository)

Object adapter–an object adapter bridges the gap between

CORBA objects with IDL interfaces and the programming language interfaces of the

corresponding servant classes. – it does the work of the remote reference and

despatcher modules

Skeletons– skeleton classes (for OO languages) are

generated in the language of the server by an IDL compiler.

– remote method invocations are dispatched via the appropriate skeleton to a particular servant,

– the skeleton unmarshals the arguments in request messages and marshals exceptions and results in reply messages.

Client stubs/proxies– these are in the client language. – an IDL compiler for the client language uses an IDL

interface to generate one of the following: for object-oriented languages the class of a proxy for procedural languages a set of stub procedures.

– as before, the client stubs/proxies marshal the arguments in invocation requests and unmarshal exceptions and results in replies.

Implementation repositoryactivates registered servers on demand and locates

running servers uses the object adapter name to register and activate

servers.

Interface repository the interface repository provides information about registered IDL interfaces to clients and servers that require it.

Page 10: CORBA

10

CORBA RMI

• CORBA RMI is a multi-language RMI system.

• The term CORBA object is used to refer to remote objects. a CORBA object implements an IDL

interface, has a remote object reference and its methods can be invoked remotely.

Page 11: CORBA

• A CORBA object can be implemented by a language without classes. the class concept does not exist in

CORBA.therefore classes cannot be defined

in CORBA IDL, which means that instances of classes cannot be passed as arguments

Page 12: CORBA

Object Request Broker (ORB)

• For objects to communicate across the network, they need a communication infrastructure named Object Request Broker (ORB).

• Both client and object implementation are isolated from the ORB by an IDL interface.

Page 13: CORBA

• Clients see only the object’s interface, never the implementation.

• To communicate, the request does not pass directly from client to object implementation,instead every request is passed to the client’s local ORB, which manages it.

Page 14: CORBA

Object Request Broker (ORB)

Page 15: CORBA

CORBA Objects

• It is important to note that CORBA objects differ from typical programming objects in three ways:

• CORBA objects can run on any platform.

• CORBA objects can be located anywhere on the network.

• CORBA objects can be written in any language that has IDL mapping.

Page 16: CORBA

CORBA works with interfaces• All CORBA Objects are encapsulated

• Objects are accessible through interface only.

• Separation of interfaces and implementation enables multiple implementations for one interface

Page 17: CORBA

Interface description language(IDL)• IDL is a specification language used

to describe a software component's interface

• IDLs describe an interface in a language-neutral way, enabling communication between software components that do not share a language.

• for ex., between components written in C++ and components written in Java

Page 18: CORBA

Interface description language(IDL)• IDLs are commonly used in remote

procedure call software.

• In these cases the machines at either end of the "link" may be using different operating systems and computer languages.

• IDLs offer a bridge between the two different systems.

Page 19: CORBA

IDL Compiler

Page 20: CORBA

1.Naming Service -It is a binder that provides methods including

a) rebind for servers to register the remote object references of CORBA objects by name (e.g. rebind (path, Object) b) resolve for clients to look them up by name.these methods belong to an interface called NamingContext2.Transaction service and concurrency control service-TS provides flat or nested transactions -CCS provides locking of CORBA objects3.Persistent object service:-for storing the state of CORBA objects in a passive form and retrieving it

CORBA Services

Page 21: CORBA

21•

4)Event Service and Notification Service:-in ES suppliers and consumers communicate via an event channel-NS extends this to allow filtering and typed events5)Security service:-authentication of principals and access control of CORBA objects with policies-auditing by servers, facilities for non-repudiation6)Trading service: -allows CORBA objects to be located by attribute

Page 22: CORBA

Advantages of CORBA

• Object Location Transparency:- The client does not need to know where an object

is physically located. An object can either be linked into the client, run in a different process on the same machine, or run in a server on the other side of the planet.

• Server Transparency:- The client is, as far as the programming model is

concerned, ignorant of the existence of servers. The client does not know (and cannot find out) which server hosts a particular object, and does not care whether the server is running at the time the client invokes a request.

Page 23: CORBA

Advantages of CORBA• Language Transparency :- Client and server can be written in different

languages. A server can be implemented in a different language without clients being aware of this.

• Implementation Transparency :- The client is unaware of how objects are

implemented. A server can use ordinary flat files as its persistent store today and use an OO database tomorrow, without clients ever noticing a difference (other than performance).

Page 24: CORBA

Advantages of CORBA

• Architecture Transparency :- The architectures are hidden from both clients and

servers. A client can communicate with a server with different alignment restrictions.

• Operating System Transparency:- Client and server are unaffected by each other's

operating system. In addition, source code does not change if you need to port the source from one operating system to another

Page 25: CORBA

Advantages of CORBA

• Protocol Transparency :-

Clients and servers do not care about the data link and transport layer. They can communicate via token ring, Ethernet, wireless links, ATM (Asynchronous Transfer Mode), or any number of other networking technologies.