Presentation is loading. Please wait.

Presentation is loading. Please wait.

Actor Languages Maher –Motivation –Actor –Actor system Bill –Communication mechanism –Structure of Actor languages –Act’s syntax and examples –Actor-based.

Similar presentations


Presentation on theme: "Actor Languages Maher –Motivation –Actor –Actor system Bill –Communication mechanism –Structure of Actor languages –Act’s syntax and examples –Actor-based."— Presentation transcript:

1

2 Actor Languages Maher –Motivation –Actor –Actor system Bill –Communication mechanism –Structure of Actor languages –Act’s syntax and examples –Actor-based languages Jack –SALSA –Mobile Agent –Conclusion

3 Actor Languages Maher Shinouda mshinoud@uwaterloo.ca

4 Objectives Motivation Brief history What are actors Characteristics of actor-based languages Actor communication Events in actor languages Actor system Actor’s behavior Simple Example Actors VS Linda

5 Motivation Develop language for concurrency “Parallel Execution of actions”. Concurrency in distributed systems exhibits: –Divergence –Deadlock –Mutual Exclusion

6 Brief History A number of individuals have contributed to the development of the actor model. Actor model was first described by Carl Hewitt (70’s) –The model was object-oriented: every object was a computationally active entity capable of receiving and reacting to messages. The Objects were called Actors. Gul Agha, later develop the actor model and develop a mathematical theory of actors. Actor languages can all trace its ancestor either directly or indirectly to Lisp.

7 What are Actors Actors are independent concurrent objects that interact by sending asynchronous messages; each actor has its mail address and a behavior. An actor can do the following: Send communication to other actors. Create new actors. Define a new behaviour for itself, which may be the same or different to its previous behaviour.

8 Three actions an actor may perform

9 What are Actors Anatomy of Actor

10 Characteristics of Actor-based language Encapsulation All procedures and declarative information are encapsulated into a single entity “Actor”. Actors share the main characteristics of objects in Simula and Smalltalk. Actors considered to be Autonomous objects.

11 Characteristics of Actor-based language (Cont.) Inheritance In OOP, Each object is related to a class and further more the class may be an object belonging to meta- class. The notion of class is not integral to the actor model. Inheritance in actors provide a conceptual organization of the system which is dynamically reconfigurable.

12 Characteristics of Actor-based language (Cont.) Delegation Sub-computation can be passed on by an actor to another actor which continue the processing. Delegation promote modularity of the code. Concurrency Actor language allow actors to specify a replacement which has 2 implications: –Capture history-sensitive information. –Allow for concurrent execution of expressions that don’t involve data dependency.

13 Actor Communication Actor communicate using message passing only. All communication is asynchronous. Each Actor has mail address with mail queue. An actor may know the mail address because: –It has always know the address. –It received the address within a communication from another actor. –It created the address as part of creating another actor.

14 Actor communication (cont.) A message (Task) is represented as 3 tuples: 1- A tag which distinguish it from other tasks in the system. 2- A target which is the mail address to which the communication is to be delivered. 3- A communication which contain information which made available to the actor at the target.

15 Actor Actor = Component An actor is a special type of object that: Communicates with other actors by sending and receiving data via the mail address. No shared state between actors. An actor may be described by specifying: Its mail address with sufficiently large mail queue. Behavior, which is a function of the communication accepted.

16 Event What is event? An event cause a communication to be sent; or represent the processing of the communication. Arrival order of events is nondeterministic. Actor computation may be represented by event diagram.

17 Event Diagram

18 Actor System Group of actors within it and the set of tasks to be carried out. Two types of special actors needed: A receptionist: An actor which may receive communication from outside the system. An external actor: Is one which is not in the system but its address is known to one or more actors within the system, allowing them to send communication. A C B

19 The basic constructs A program in an actor language consists of: behavior definitions: which simply associate a behavior schema with an identifier. new expressions: which create actors. Send commands: which create tasks.

20 The basic constructs (cont.) A receptionist declaration: which lists actors that may receive communications from the outside. An external declaration: which lists actors that are not part of the system but to whom communications may be sent from the system.

21 Actor’s behavior The behavior of actor consists of three kind of actions: Create actors with specified behavior. ::= new ({expr{, expr}*}) Send message asynchronously to specified actor. ::= send to Become a new actor, assuming a new behavior to respond to the next message. become

22 Actor System (cont.) Two important facts about mail system in the actor system: Mail arrives in random, non deterministic order (asynchronous). Ensures concurrent execution. The mail delivery is guaranteed. The system guarantee to execute all tasks eventually.

23 Simple Example actor AdderAndMutlipy (Double k) Double A, Double B ==> Double C: action [a], [b] ==> [c] with Double c: c:=k*(a+b): endaction endactor

24 Another Example actor AdderAndMutlipy2[T] (T k) T A, T B ==> T C: action [a], [b] ==> [k*(a+b)]: endaction action [a], [] ==> [k*a]: endaction action [], [b] ==> [k*b]: endaction endactor

25 Actors VS Linda Provide point-to-point communication and object- style encapsulation. The locality property in actor: there is no way for an actor to contact other actors whose name hasn’t received in a previous communication. Actors are components. Provide pattern directed invocation Decoupled in both space and time: Information may be available so that any one can potentially access it. Linda doesn’t include the notion of component directly; nevertheless, the Tuple Space that it defines can be viewed as a generic connection component.

26 Manifold Inter-process communication in MANIFOLD is asynchronous, using broadcast of events and a dynamic data-flow.

27 Actor Languages Communication mechanisms Structure of Actor Languages Kernel language Act Actor-based languages Lehui (Bill) Nie @ UW

28 Communication mechanisms Actors are active objects which communicate by message passing Asynchronous buffered communication –It's hard to imagine a reasonable system built on asynchronous, unbuffered communication. Too much would get lost.

29 Communication mechanisms Communication is asynchronous, without any guaranteed arrival order. –Message order: if actor A sends a sequence of communications to actor B, then B may not receive them in the same order that A sent them. –It is possible for A to tag each message with a sequence number, so that B may rearrange messages into the correct order.

30 Communication mechanisms Shared variables are not allowed in the actor model. –Shared variables means that they provide data transfer without any coordination mechanism or concurrency control. Variables sharing further complicates distribution and synchronization. –Latency and timing issues make it awkward to use shared variables in an asynchronous environment.

31 The Structure of Actor Languages

32 Control structure: recursive factorial computation When actor factorial receives 3 and mail address c, it creates a new actor m, and sends itself the request to evaluate the factorial of 2 When actor m receives a result, m multiplies 3 and the result and send to c There is nothing inherently concurrent in the recursive algorithm to evaluate a factorial.

33 Comparison Sequential language –Using a stack of activations. –No mechanism for distributing the work of computing a factorial or concurrently processing more than one request. Actor-based language –Creating actors which waits for the appropriate communications. They are free to concurrently process the next communication. –Delegating most of the processing to a large number of actors. –Given a network of processors, an actor-based language could process a large number of requests much faster by simply distributing the actors it creates among these processors.

34 Join continuations: tree product Divide and conquer concurrency can often be naturally expressed by using a functional form which evaluates its arguments concurrently. Join continuation is used to synchronize the evaluation of the different arguments.

35 Tree product event diagram

36 Language Act Act is a sufficient kernel for Act3 Syntax – ::= * ( *) – ::= (define (id {(with identifier )}*) *) – ::= (Is-communication do *)

37 Language Act – ::= | | | – ::= (let ( *) do *) – ::= (if (then do *) (else do *)) – ::= (send ) – ::= (become )

38 Example: Factorial c

39 Actor-based languages nameoriginsnotes PLASMA (1975) -The first actor language. Planner-like System Modeled on Actors. Originally called Planner-73, and implemented in MacLisp. Lisp-like syntax, but with several kinds of parentheses and brackets. "A PLASMA Primer", B. Smith et al, AI Lab Working Paper 92, MIT Oct 1975. "Viewing Control Structures as Patterns of Passing Messages", C. Hewitt, AI Lab Memo 410, MIT 1976. Act 1 (1981) LispDescendant of PLASMA. "Concurrent Object Oriented Programming in Act1", H. Lieberman in Object Oriented Concurrent Programming, A. Yonezawa et al eds, MIT Press 1987. Written in LISP by Henry Liberman Act 3 (1985) (1987) LispProvides support for automatic generation of customers and for delegation and inheritance. "Linguistic Support of Receptionists for Shared Resources", Carl Hewitt et al in Seminar on Concurrency, S.D. Brookes et al eds, LNCS 197, Springer 1985, pp. 330-359.

40 Actor-based languages nameoriginsnotes ABCL/1 (1987, 1990) Common LISP an extension of Common LISP An Object-Based Concurrent Language. Yonezawa, U Tokyo 1986. Language for the ABCL concurrent (MIMD) system. Asynchronous message passing to objects. Implementations in KCL and Symbolics LISP available from the author. "ABCL: An Object-Oriented Concurrent System", A. Yonezawa ed, MIT Press 1990. ftp://camille.is.s.u-tokyo.ac.jp/pub/ info: email:matsu@is.s.u-tokyo.ac.jp ABCL/c+ (1988) CConcurrent object-oriented language, an extension of ABCL/1 based on C. "An Implementation of An Operating System Kernel using Concurrent Object Oriented Language ABCL/c+", N. Doi et al in ECOOP 88, S. Gjessing et al eds, LNCS 322, Springer 1988. Concurrent Aggregates (CA) (1990) -Concurrent object-oriented language based on the Actor model plus RPC. Pure object oriented, single inheritance, with first class selectors, continuations and messages. "Concurrent Aggregates: Supporting Modularity in Massively Parallel Programs", Andrew A. Chien. Compiler for CM5 and workstations.

41 Actor-Based Concurrent Language (ABCL) Message sending order from one object to another is preserved in ABCL. Three types of message passing mechanisms –Past Non-blocking messages without a reply –Now Blocking messages with sender waiting for a reply –Future Non-blocking messages with a reply expected in the future

42 Concurrent Aggregates (CA) Extends the Actor model with inheritance and aggregates An aggregate is a group of actors of the same kind. All constituent actors share the same name. A message sent to the aggregates is processed by one and only one constituent but which constituent receives the message is left unspecified (i.e., one-to-one-of-many type of communication). Unlike the Actor model, every message send in CA expects a reply by default.

43 Rosette The most commercially successful actor-based language up to now Used as a language for the interpreter of the extensible services switch in the Carnot project at Microelectronics and Computer Technology Corporation (MCC) Continues to be used to provide heterogeneous interoperability for middleware in intranet and enterprise integration software With Rosette, the object-oriented programming model and the concurrent execution model are combined to simplify the development of autonomous, distributed agents.

44 Active Object Passive object oriented language –Separation of state (procedure and data) and thread manipulating that state Active object oriented language –Encapsulation of state and thread –More appropriate for implementing concurrent and distributed systems

45 Actor Languages SALSA Mobile Agents What are Aglets? Conclusions Questions? Jack Chi@UW

46 Execution environment

47 Execution environment (cont.) The execution environment Application running on the Internet, or on limited- resource devices, need to adapt to changes in their execution environment at run-time. eg. db2 get dbm cfg db2 get db cfg

48 Problem Current languages and systems fall short of enabling developers to migrate and reconfigure application sub-components at program-execution time. Concurrent execution environment.

49 SALSA Simple Actor Language, System and Architecture Features: –Simplifies programming dynamically reconfigurable. Open application by providing universal name, active objects and migration. –Token-passing continuations, join continuations and first-class continuations.

50 Requirements Internet and mobile computing place new demands on applications, which require them to be open and dynamically reconfigurable. Java is popular today. However, higher-level programming languages are required, in order for applications to be reconfigured, migrate to other platforms, and decomposed and re-composed arbitrarily.

51 SALSA SALSA program can be easily preprocessed to Java and preserve Java’s useful object- oriented concepts.

52 A HelloWorld program in SALSA Module helloworld Behavior HelloWorld { void act(String arguments[]){ standardOutput <- print(“Hello “) @ standardOutput <- print(“World”); }

53 A HelloWorld program in SALSA (cont.) An arrow (<-) indicates message sending to an actor. The at-sign (@) indicates a token-passing continuation. SALSA programs are grouped into related behaviors, which are called modules. A module can contain several interfaces and behaviors.

54 A HelloWorld program in SALSA (cont.) A behavior can extend another behavior (Single inheritance) Every behavior extends a top-level UniversalActor behavior. A SALSA behavior can implement zero or more interfaces (multiple interface inheritance)

55 Creating a HelloWorld actor HelloWorld helloworld = new HelloWorld();

56 SALSA programs preprocessing SALSA Source code Program.salsa Program.java SALSA actor library Program.class JVM >>salsac Program.salsa >>javac Program.java >>java Program

57 Continuations In order to coordinate multiple actors, we introduce 3 types of continuations: Token-passing continuations Join continuations First-class continuations

58 Token-passing continuations Each message sent to an actor is equivalent to a method invocation in Java. A token is essentially the return value of the previous method invocation. An example a1<-m1(args)@a2<-m2(token)@a3<-m3(token)

59 Join continuations A customer actor will receive an array with the tokens returned by multiple actors, once they have all finished processing their messages. join(a1<-m1,a2<-m2) @ (… other statements);

60 First class continuations First-class continuations enable actors to delegate computation to a third party, independently of the context in which message processing is taking places.

61 Problem of Threads Communication Link

62 Internet computing/World Wide Computer

63 A WWC is a set of Virtual Machines, or Theaters. A theater is associated with a UAL (Universal Actor Location) eg. rmsp://wwc.aa.com/agent An actor is bound to a UAN (Universal Actor Name) eg. uan://wwc.travel.com/agent RMSP stands for “remote message sending protocol” Actors of WWC is similar to the mobile agents in many aspects.

64 Mobile Agent

65 Mobile Agent (cont.) A mobile agent is a program that can migrate from machine to machine in a heterogeneous network. The program chooses when and where to migrate. It can suspend its execution at an arbitrary point, transport to another machine and resume execution on the new machine.

66 Mobile Agent vs Stationary agent Mobile network agents are programs that can be dispatched from one computer and transported to a remote computer for execution.

67 7 good reasons to use mobile agents They reduce network load They overcome network latency They encapsulate protocols They execute asynchronously and autonomously. They adapt dynamically. They are naturally heterogeneous. They are robust and fault-tolerant.

68 Java Mobile Agent Why Java Mobile Agent? –Wide acceptance and popularity of Java technology. –Object serialized mechanism and security model enforced by the JVM. –Platform independence. Write once, run anywhere.

69 Aglets Aglets are Java objects that can move from one host on the Internet to another. That is, an aglet that executes on one host can suddenly halt execution, dispatch itself to a remote host, and resume execution there. When the aglet moves, it takes along its program code as well as its data.

70 http://aglets.sourceforge.net/ Developed at IBM Tokyo Research Laboratory Aglets has become an open source project Current release is version 2.0.2 Can work with new Java 2 security model. Has been tested with JDK 1.3.1 Easy installation with ant (Java build tool) only 2 environment variables required.

71 Tahiti Server

72 Package structure com.ibm.aglet com.ibm.aglet.event com.ibm.aglet.security com.ibm.aglet.system com.ibm.aglet.util com.ibm.aglets com.ibm.aglets.security com.ibm.aglets.tahiti com.ibm.agletx.patterns com.ibm.agletx.util com.ibm.atp com.ibm.atp.auth com.ibm.awb.launcher com.ibm.awb.misc com.ibm.awb.weakref

73 Package structure (cont.) com.ibm.maf com.ibm.maf.atp com.ibm.maf.rmi com.ibm.net.protocol.atp com.ibm.net.protocol.rmi org.aglets.log org.aglets.log.console org.aglets.log.log4j org.aglets.log.quiet

74 An Aglet class package auction; import com.ibm.aglet.*; import com.ibm.agletx.patterns.*; import java.util.*; import java.awt.*; import java.io.*; import java.net.*; public class MyAglet extends Aglet { public void run() {} }

75 Aglets’ communications Aglet/App ProxyAglet Message Reply Message Reply

76 Hosting of Incoming Aglets JVM Security Layer Aglet Host Computer Aglet Server Aglet Network traffic

77 Aglets versus applets Both are mobile code. A container is required before the code migration. Life cycles are managed by a container. Security is enfored by security manager. Aglets carry their own states but applets usually do not.

78 Application - Auction Market Place s

79 Interactions between Auctioneers & Bidders Create auctioneers for certain number of auction market places. Created 4 auctionners and move to their market places. 10 bidders created to join bids in each market place. Bidders post bids (thru sending messages to auctioneers) and/or move to the next market place. Auctioneers notify the winners (sending messages back to bidders).

80 Demo

81 Conclusion We think of components as composed of a collection of autonomous entities called actors. They are objects:encapsulates methods, interface, data They are autonomous:encapsulates a thread of control They interact with each others and the environment by sending messages. The ease with which actors can migrate makes them a natural model for mobile agents.

82 Questions?


Download ppt "Actor Languages Maher –Motivation –Actor –Actor system Bill –Communication mechanism –Structure of Actor languages –Act’s syntax and examples –Actor-based."

Similar presentations


Ads by Google