Distributed Objects: Communication and System Support

Slides:



Advertisements
Similar presentations
Heterogeneity Applies to all of the following:
Advertisements

INTERPROCESS COMMUNICATION
INTERPROCESS COMMUNICATION
Inter Process Commonication
Chapter 2: Communications
1 Chapter 4: Interprocess Communication From Coulouris, Dollimore and Kindberg Distributed Systems: Concepts and Design Edition 3, © Addison-Wesley 2001.
2: Application Layer 1 Socket programming Socket API r introduced in BSD4.1 UNIX, 1981 r explicitly created, used, released by apps r client/server paradigm.
Socket Programming.
Internetworking (Contd) Chapter 4. Figure 3.26 ATM protocol layers.
1 Overview r Socket programming with TCP r Socket programming with UDP r Building a Web server.
OCT Information System Management 1 Organizational Communications and Distributed Object Technologies Week 5: Inter-process Communications.
CSS434 IPC1 CSS434 Interprocess Communication Textbook Ch4 Professor: Munehiro Fukuda.
CS Distributed Computing Systems Chapter 4: Interprocess Communication Chin-Chih Chang, From Coulouris, Dollimore and Kindberg.
2: Application Layer1 Socket Programming. 2: Application Layer2 Socket-programming using TCP Socket: a door between application process and end- end-transport.
OCT -- OCT Chapter 4 Coulouris Interprocess Communication.
Slides for Chapter 4: Interprocess Communication From Coulouris, Dollimore and Kindberg Distributed Systems: Concepts and Design Edition 3, © Addison-Wesley.
2: Application Layer 1 Socket Programming TCP and UDP.
1 Inter-Process Communication: Network Programming using TCP Java Sockets Rajkumar Buyya Grid Computing and Distributed Systems (GRIDS) Laboratory Dept.
Socket programming 1. getByName import java.net.*; public class GetHostName { public static void main (String args[]) { String host = "
1 Tuesday, December 16, 2008 The practical scientist is trying to solve tomorrow's problem on yesterday's computer. Computer scientists often have it the.
2: Application Layer1 Socket programming Socket API r introduced in BSD4.1 UNIX, 1981 r explicitly created, used, released by apps r client/server paradigm.
1 Tuesday, December 23, 2008 If one ox could not do the job they did not try to grow a bigger ox, but used two oxen. - Grace Murray Hopper ( )
 Socket  The combination of an IP address and a port number. (RFC 793 original TCP specification)  The name of the Berkeley-derived application programming.
-1- Georgia State UniversitySensorweb Research Laboratory CSC4220/6220 Computer Networks Dr. WenZhan Song Associate Professor, Computer Science.
Slides for Chapter 4: Interprocess Communication
Chapter 4: Interprocess Communication‏ Pages
Distributed Systems Concepts and Design Chapter 4.
Slides for Chapter 4: Interprocess Communication From Coulouris, Dollimore and Kindberg Distributed Systems: Concepts and Design Edition 4, © Addison-Wesley.
Slides for Chapter 4: Interprocess Communication
Slides for Chapter 4: Interprocess Communication From Coulouris, Dollimore and Kindberg Distributed Systems: Concepts and Design Edition 4, © Addison-Wesley.
Chapter 3: Interprocess Communication
Source: George Colouris, Jean Dollimore, Tim Kinderberg & Gordon Blair (2012). Distributed Systems: Concepts & Design (5 th Ed.). Essex: Addison-Wesley.
Tanenbaum & Van Steen, Distributed Systems: Principles and Paradigms, 2e, (c) 2007 Prentice-Hall, Inc. All rights reserved Interprocess.
From Coulouris, Dollimore, Kindberg and Blair Distributed Systems: Concepts and Design Edition 5, © Addison-Wesley 2012 Slides for Chapter 4: Interprocess.
1 Lecture 4: Interprocess Communication Haibin Zhu, PhD. Assistant Professor Department of Computer Science Nipissing University © 2002.
1 Distribuerede systemer – 12. februar 2001 Presentation based on slides by Coulouris et al, modified by Jens B Jorgensen.
Slides for Chapter 4: Interprocess Communication From Coulouris, Dollimore and Kindberg Distributed Systems: Concepts and Design Edition 4, © Addison-Wesley.
2: Application Layer1 Socket programming Socket API Explicitly created, used, released by apps Client/server paradigm Two types of transport service via.
Chapter 4: Inter-process Communications
Part 4: Network Applications Client-server interaction, example applications.
Java Programming II Java Network (I) Java Programming II.
1 CSCD 330 Network Programming Fall 2013 Some Material in these slides from J.F Kurose and K.W. Ross All material copyright Lecture 8a Application.
Distributed Systems Information System Management Distributed Systems Lecture 8 Chapter 4: Inter-process Communications.
Slides for Chapter 4: Interprocess Communication From Coulouris, Dollimore, Kindberg Distributed Systems: Concepts and Design Edition 5, © Addison-Wesley.
Distributed Computing & Embedded Systems Chapter 4: Remote Method Invocation Dr. Umair Ali Khan.
Network Programming Communication between processes Many approaches:
SOCKET PROGRAMMING Presented By : Divya Sharma.
Socket Programming Ameera Almasoud
Unicast VS Multicast.
Chapter 4: Inter-process Communications
Text extensions to slides © David E. Bakken,
Slides for Chapter 4: Interprocess Communication
Networking and Communications
Chapter 2: outline 2.1 principles of network applications
Socket programming - Java
Outline Introduction Networking Basics Understanding Ports and Sockets
سوکت (ارتباط بین کاربردها)
Text extensions to slides © David E. Bakken,
Distributed Objects: Communication and System Support
Socket Programming.
Socket Abstraction and Interprocess Communication
Inter-process Communication Models
Socket Abstraction and Interprocess Communication
Slides for Chapter 4: Interprocess Communication
Socket Abstraction and Interprocess Communication
Socket Programming 2: Application Layer.
Remote invocation (call)
Chapter 2: Application layer
Socket Programming with UDP
Review Communication via paired sockets, one local and one remote
Presentation transcript:

Distributed Objects: Communication and System Support Ch.4,5 and 6 4/19/2019 B.Ramamurthy

Middleware layers 4/19/2019 B.Ramamurthy

Sockets and ports message agreed port any port socket Internet address = 138.37.88.249 Internet address = 138.37.94.248 other ports client server 4/19/2019 B.Ramamurthy

Inter Process Communication IP address and port number. About 216 ports are available for use by user processes. UDP and TCP abstraction of the above is a socket. Socket is an endpoint of communication between processes. Socket is associated with a protocol. IPC is transmitting a message between a socket in one process to a socket in another process. Messages sent to particular IP and port# can be received by the process whose socket is associated with that IP and port#. Processes cannot share ports with other processes within the computer. Can receive messages on diff ports. 4/19/2019 B.Ramamurthy

Java API for networking java.net package supports for UDP and TCP communication. This package contains classes: DatagramPacket, DatagramSocket, SeverSocket, Socket and the associated methods. For example, DatagramSocket provides operations: send, receive, setSoTimeout, connect… 4/19/2019 B.Ramamurthy

UDP client sends a message to the server and gets a reply import java.net.*; import java.io.*; public class UDPClient{ public static void main(String args[]){ // args give message contents and server hostname try { DatagramSocket aSocket = new DatagramSocket(); byte [] m = args[0].getBytes(); InetAddress aHost = InetAddress.getByName(args[1]); int serverPort = 6789; DatagramPacket request = new DatagramPacket(m, args[0].length(), aHost, serverPort); aSocket.send(request); byte[] buffer = new byte[1000]; DatagramPacket reply = new DatagramPacket(buffer, buffer.length); aSocket.receive(reply); System.out.println("Reply: " + new String(reply.getData())); aSocket.close(); }catch (SocketException e){System.out.println("Socket: " + e.getMessage()); }catch (IOException e){System.out.println("IO: " + e.getMessage());} } 4/19/2019 B.Ramamurthy

UDP server repeatedly receives a request and sends it back to the client import java.net.*; import java.io.*; public class UDPServer{ public static void main(String args[]){ try{ DatagramSocket aSocket = new DatagramSocket(6789); byte[] buffer = new byte[1000]; while(true){ DatagramPacket request = new DatagramPacket(buffer, buffer.length); aSocket.receive(request); DatagramPacket reply = new DatagramPacket(request.getData(), request.getLength(), request.getAddress(), request.getPort()); aSocket.send(reply); } }catch (SocketException e){System.out.println("Socket: " + e.getMessage()); }catch (IOException e) {System.out.println("IO: " + e.getMessage());} 4/19/2019 B.Ramamurthy

TCP client makes connection to server, sends request and receives reply import java.net.*; import java.io.*; public class TCPClient { public static void main (String args[]) { // arguments supply message and hostname of destination try{ int serverPort = 7896; Socket s = new Socket(args[1], serverPort); DataInputStream in = new DataInputStream( s.getInputStream()); DataOutputStream out = new DataOutputStream( s.getOutputStream()); out.writeUTF(args[0]); // UTF is a string encoding see Sn 4.3 String data = in.readUTF(); System.out.println("Received: "+ data) ; s.close(); }catch (UnknownHostException e){ System.out.println("Sock:"+e.getMessage()); }catch (EOFException e){System.out.println("EOF:"+e.getMessage()); }catch (IOException e){System.out.println("IO:"+e.getMessage());} } 4/19/2019 B.Ramamurthy

TCP server makes a connection for each client and then echoes the client’s request import java.net.*; import java.io.*; public class TCPServer { public static void main (String args[]) { try{ int serverPort = 7896; ServerSocket listenSocket = new ServerSocket(serverPort); while(true) { Socket clientSocket = listenSocket.accept(); Connection c = new Connection(clientSocket); } } catch(IOException e) {System.out.println("Listen :"+e.getMessage());} // this figure continues on the next slide 4/19/2019 B.Ramamurthy

(continued) class Connection extends Thread { DataInputStream in; DataOutputStream out; Socket clientSocket; public Connection (Socket aClientSocket) { try { clientSocket = aClientSocket; in = new DataInputStream( clientSocket.getInputStream()); out =new DataOutputStream( clientSocket.getOutputStream()); this.start(); } catch(IOException e) {System.out.println("Connection:"+e.getMessage());} } public void run(){ try { // an echo server String data = in.readUTF(); out.writeUTF(data); clientSocket.close(); } catch(EOFException e) {System.out.println("EOF:"+e.getMessage()); } catch(IOException e) {System.out.println("IO:"+e.getMessage());} 4/19/2019 B.Ramamurthy

External Data Representation and Marshalling EmpNo Application1 Application2 EmpName EmpSalary IPC Format: object in CDR, Java Serialization or multimedia format Applications can be CORBA applications, Java Applications or any other kind of application. Once We get out of the system space we need to follow Rules or protocols: CDR , java serialization, ior , ror are External data representation protocol. Objects can be passed by reference (CORBA) or by value (Java) 4/19/2019 B.Ramamurthy

External Data representation …(contd.) An agreed standard for the representation of data structures and primitive values is called external data representation. Marshalling is the process of taking a collection of data items and assembling them into a form suitable for transmission in a message. Unmarshalling is the process of disassembling them on arrival to produce an equivalent collection of data items at the destination. Two binary protocols: CORBA’s Common Data Representation (CDR) and Java’s Object Serialization. Two ASCII protocols: HTML (HTTP), XML 4/19/2019 B.Ramamurthy

CORBA CDR for constructed types Re pr s n ta t i o q ue ce l g th ( u si ed ) fo ll ow b el m nt r d ri ch a ra c te rs n o ca al so h av w de rs) rr ay le s i r ( o l en h s ci f ie d b eca us is x ru ct n t he or r o la at co mp v s a re pe y t r d ec ar ni g f we e s cte d m mb er 4/19/2019 B.Ramamurthy

CORBA CDR message 0–3 4–7 8–11 12–15 16–19 20-23 24–27 5 "Smit" "h___" The flattened form represents a Struct Person { string name; string place; long year;}; struct with value: {‘Smith’, ‘London’, 1934} 0–3 4–7 8–11 12–15 16–19 20-23 24–27 5 "Smit" "h___" 6 "Lond" "on__" 1934 index in sequence of bytes 4 bytes notes on representation length of string ‘Smith’ ‘London’ unsigned long 4/19/2019 B.Ramamurthy

Indication of Java serialized form The true serialized form contains additional type markers; h0 and h1 are handles Strings and characters are written out using UTF (Universal Transfer Format) Reflection, an ability to inquire about the properties of the class makes The marshalling and unmarshalling functions quite generic, unlike CORBA Where CORBA compiler has to generate special operations for marshalling And unmarshalling. Serialized values Person 3 1934 8-byte version number int year 5 Smith java.lang.String name: 6 London h0 place: h1 Explanation class name, version number number, type and name of instance variables values of instance variables 4/19/2019 B.Ramamurthy

External Representation of a remote object reference Internet address port number time object number interface of remote object 32 bits Sample IOR: generated by Java-ORB application for a Stock Server Object. IOR:000000000000001b49444c3a53746f636b4f626a656374732f53746f636b3a312e3000000000000100000000000000400001000000000017636173746f722e6373652e42756666616c6f2e45445500009940000000000018afabcafe000000025211cb86000000080000000000000000 4/19/2019 B.Ramamurthy

Request-reply communication Server Client doOperation (wait) (continuation) Reply message getRequest execute method select object sendReply This is reactive. How about proactive? Push technology. Server keeps sending messages to potential clients. How about P2P? Peer to Peer if we have IORs and discovery protocol an we not do this? 4/19/2019 B.Ramamurthy

Operations of the request-reply protocol public byte[] doOperation (RemoteObjectRef o, int methodId, byte[] arguments) sends a request message to the remote object and returns the reply. The arguments specify the remote object, the method to be invoked and the arguments of that method. public byte[] getRequest (); acquires a client request via the server port. public void sendReply (byte[] reply, InetAddress clientHost, int clientPort); sends the reply message reply to the client at its Internet address and port. 4/19/2019 B.Ramamurthy

Request-reply message structure messageType requestId objectReference methodId arguments int (0=Request, 1= Reply) int RemoteObjectRef int or Method array of bytes 4/19/2019 B.Ramamurthy

HTTP: An Example for Request/Reply Protocol Web servers manage resources implemented in different ways: As data: text of HTML page, an image or class of an applet As a program: cgi programs and servlets that can be run on the web server. HTTP protocol supports a fixed set of methods: GET, PUT, POST, HEAD, DELETE etc see p.152. In addition to invoking methods on the resources, the protocol allows for content negotiation (EX: frame, text, printable etc.) and password authentication. 4/19/2019 B.Ramamurthy

HTTP request message GET //www.dcs.qmw.ac.uk/index.html HTTP/ 1.1 URL or pathname method HTTP version headers message body 4/19/2019 B.Ramamurthy

HTTP reply message HTTP/1.1 200 OK resource data HTTP version status code reason headers message body 4/19/2019 B.Ramamurthy

Group Communications Pairwise exchange of messages is not the best model for communications from one process to a group of processes. A multicast is an operation that sends a single message from one process to each member of a group of processes. Issues: fault-tolerance, discovery of service in a spontaneous networking environment, better performance thru’ replicated data, propagation of event notification. 4/19/2019 B.Ramamurthy

Multicast peer joins a group and sends and receives datagrams import java.net.*; import java.io.*; public class MulticastPeer{ public static void main(String args[]){ // args give message contents & destination multicast group (e.g. "228.5.6.7") try { InetAddress group = InetAddress.getByName(args[1]); MulticastSocket s = new MulticastSocket(6789); s.joinGroup(group); byte [] m = args[0].getBytes(); DatagramPacket messageOut = new DatagramPacket(m, m.length, group, 6789); s.send(messageOut); // this figure continued on the next slide 4/19/2019 B.Ramamurthy

…continued // get messages from others in group byte[] buffer = new byte[1000]; for(int i=0; i< 3; i++) { DatagramPacket messageIn = new DatagramPacket(buffer, buffer.length); s.receive(messageIn); System.out.println("Received:" + new String(messageIn.getData())); } s.leaveGroup(group); }catch (SocketException e){System.out.println("Socket: " + e.getMessage()); }catch (IOException e){System.out.println("IO: " + e.getMessage());} http://www.weblogic.com/docs51/examples/ejb/basic/statelessSession/index.html 4/19/2019 B.Ramamurthy

Sockets used for datagrams ServerAddress and ClientAddress are socket addresses Sending a message Receiving a message bind(s, ClientAddress) sendto(s, "message", ServerAddress) bind(s, ServerAddress) amount = recvfrom(s, buffer, from) s = socket(AF_INET, SOCK_DGRAM, 0) 4/19/2019 B.Ramamurthy

Sockets used for streams Requesting a connection Listening and accepting a connection s = socket(AF_INET, SOCK_STREAM,0) s = socket(AF_INET, SOCK_STREAM,0) bind(s, ServerAddress); listen(s,5); connect(s, ServerAddress) sNew = accept(s, ClientAddress); write(s, "message", length) n = read(sNew, buffer, amount) ServerAddress and ClientAddress are socket addresses 4/19/2019 B.Ramamurthy